Watches the network for broadcasts from Advertiser objects, and keeps a list of all the currently active instances. More...
#include <juce_NetworkServiceDiscovery.h>


Public Member Functions | |
| AvailableServiceList (const String &serviceTypeUID, int broadcastPort) | |
| Creates an AvailableServiceList that will bind to the given port number and watch the network for Advertisers broadcasting the given service type. | |
| ~AvailableServiceList () override | |
| Destructor. | |
| std::vector< Service > | getServices () const |
| Returns a list of the currently known services. | |
Public Attributes | |
| std::function< void()> | onChange |
| A lambda that can be set to receive a callback when the list changes. | |
Private Types | |
| enum class | Priority { highest = 2 , high = 1 , normal = 0 , low = -1 , background = -2 } |
| The different runtime priorities of non-realtime threads. More... | |
| using | ThreadID = void * |
| A value type used for thread IDs. | |
Private Member Functions | |
| void | addListener (Listener *) |
| Add a listener to this thread which will receive a callback when signalThreadShouldExit was called on this thread. | |
| void | cancelPendingUpdate () noexcept |
| This will stop any pending updates from happening. | |
| void | closeThreadHandle () |
| bool | createNativeThread (Priority) |
| Priority | getPriority () const |
| Returns the current priority of this thread. | |
| ThreadID | getThreadId () const noexcept |
| Returns the ID of this thread. | |
| const String & | getThreadName () const noexcept |
| Returns the name of the thread. | |
| void | handleAsyncUpdate () override |
| Called back to do whatever your class needs to do. | |
| void | handleMessage (const Service &) |
| void | handleMessage (const XmlElement &) |
| void | handleUpdateNowIfNeeded () |
| If an update has been triggered and is pending, this will invoke it synchronously. | |
| bool | isRealtime () const |
| Returns true if this Thread represents a realtime thread. | |
| bool | isThreadRunning () const |
| Returns true if the thread is currently active. | |
| bool | isUpdatePending () const noexcept |
| Returns true if there's an update callback in the pipeline. | |
| void | killThread () |
| void | notify () const |
| Wakes up the thread. | |
| void | removeListener (Listener *) |
| Removes a listener added with addListener. | |
| void | removeTimedOutServices () |
| void | run () override |
| Must be implemented to perform the thread's actual code. | |
| void | setAffinityMask (uint32 affinityMask) |
| Sets the affinity mask for the thread. | |
| bool | setPriority (Priority newPriority) |
| Attempts to set the priority for this thread. | |
| void | signalThreadShouldExit () |
| Sets a flag to tell the thread it should stop. | |
| bool | startRealtimeThread (const RealtimeOptions &options) |
| Starts the thread with realtime performance characteristics on platforms that support it. | |
| bool | startThread () |
| Attempts to start a new thread with default ('Priority::normal') priority. | |
| bool | startThread (Priority newPriority) |
| Attempts to start a new thread with a given priority. | |
| bool | startThreadInternal (Priority) |
| bool | stopThread (int timeOutMilliseconds) |
| Attempts to stop the thread running. | |
| void | threadEntryPoint () |
| bool | threadShouldExit () const |
| Checks whether the thread has been told to stop running. | |
| void | triggerAsyncUpdate () |
| Causes the callback to be triggered at a later time. | |
| bool | wait (double timeOutMilliseconds) const |
| Suspends the execution of this thread until either the specified timeout period has elapsed, or another thread calls the notify() method to wake it up. | |
| bool | waitForThreadToExit (int timeOutMilliseconds) const |
| Waits for the thread to stop. | |
Static Private Member Functions | |
| static bool | currentThreadShouldExit () |
| Checks whether the current thread has been told to stop running. | |
| static Thread * | getCurrentThread () |
| Finds the thread object that is currently running. | |
| static ThreadID | getCurrentThreadId () |
| Returns an id that identifies the caller thread. | |
| static void | initialiseJUCE (void *jniEnv, void *jContext) |
| Initialises the JUCE subsystem for projects not created by the Projucer. | |
| static bool | launch (Priority priority, std::function< void()> functionToRun) |
| Invokes a lambda or function on its own thread with a custom priority. | |
| static bool | launch (std::function< void()> functionToRun) |
| Invokes a lambda or function on its own thread with the default priority. | |
| static void | setCurrentThreadAffinityMask (uint32 affinityMask) |
| Changes the affinity mask for the caller thread. | |
| static void | setCurrentThreadName (const String &newThreadName) |
| Changes the name of the caller thread. | |
| static void | sleep (int milliseconds) |
| Suspends the execution of the current thread until the specified timeout period has elapsed (note that this may not be exact). | |
| static void | yield () |
| Yields the current thread's CPU time-slot and allows a new thread to run. | |
Private Attributes | |
| ReferenceCountedObjectPtr< AsyncUpdaterMessage > | activeMessage |
| uint32 | affinityMask = 0 |
| WaitableEvent | defaultEvent |
| bool | deleteOnThreadEnd = false |
| ThreadSafeListenerList< Listener > | listeners |
| CriticalSection | listLock |
| std::atomic< Priority > | priority |
| std::optional< RealtimeOptions > | realtimeOptions = {} |
| std::vector< Service > | services |
| String | serviceTypeUID |
| std::atomic< bool > | shouldExit { false } |
| DatagramSocket | socket { true } |
| CriticalSection | startStopLock |
| WaitableEvent | startSuspensionEvent |
| std::atomic< void * > | threadHandle { nullptr } |
| std::atomic< ThreadID > | threadId { nullptr } |
| const String | threadName |
| size_t | threadStackSize |
Static Private Attributes | |
| static constexpr size_t | osDefaultStackSize { 0 } |
Watches the network for broadcasts from Advertiser objects, and keeps a list of all the currently active instances.
Just create an instance of AvailableServiceList and it will start listening - you can register a callback with its onChange member to find out when services appear/disappear, and you can call getServices() to find out the current list.
@tags{Events}
|
inherited |
A value type used for thread IDs.
|
stronginherited |
The different runtime priorities of non-realtime threads.
| juce::NetworkServiceDiscovery::AvailableServiceList::AvailableServiceList | ( | const String & | serviceTypeUID, |
| int | broadcastPort | ||
| ) |
Creates an AvailableServiceList that will bind to the given port number and watch the network for Advertisers broadcasting the given service type.
This will only detect broadcasts from an Advertiser object with a matching serviceTypeUID value, and where the broadcastPort matches.
|
override |
Destructor.
|
inherited |
Add a listener to this thread which will receive a callback when signalThreadShouldExit was called on this thread.
|
noexceptinherited |
This will stop any pending updates from happening.
If called after triggerAsyncUpdate() and before the handleAsyncUpdate() callback happens, this will cancel the handleAsyncUpdate() callback.
Note that this method simply cancels the next callback - if a callback is already in progress on a different thread, this won't block until the callback finishes, so there's no guarantee that the callback isn't still running when the method returns.
Referenced by juce::detail::ConcreteScopedContentSharerImpl::~ConcreteScopedContentSharerImpl(), juce::detail::ConcreteScopedMessageBoxImpl::~ConcreteScopedMessageBoxImpl(), juce::OpenGLContext::NativeContext::~NativeContext(), juce::detail::ConcreteScopedContentSharerImpl::close(), juce::detail::ConcreteScopedMessageBoxImpl::close(), and juce::detail::MouseInputSourceImpl::setPointerState().
|
privateinherited |
References juce::Thread::threadHandle, and juce::Thread::threadId.
|
staticinherited |
Checks whether the current thread has been told to stop running.
On the message thread, this will always return false, otherwise it will return threadShouldExit() called on the current thread.
|
staticinherited |
Finds the thread object that is currently running.
Note that the main UI thread (or other non-JUCE threads) don't have a Thread object associated with them, so this will return nullptr.
|
staticinherited |
Returns an id that identifies the caller thread.
To find the ID of a particular thread object, use getThreadId().
Referenced by juce::ThreadLocalValue< Type >::get(), and juce::ThreadLocalValue< Type >::releaseCurrentThreadStorage().
|
protectedinherited |
Returns the current priority of this thread.
This can only be called from the target thread. Doing so from another thread will cause an assert.
| std::vector< Service > juce::NetworkServiceDiscovery::AvailableServiceList::getServices | ( | ) | const |
Returns a list of the currently known services.
|
noexceptinherited |
Returns the ID of this thread.
That means the ID of this thread object - not of the thread that's calling the method. This can change when the thread is started and stopped, and will be invalid if the thread's not actually running.
|
inlinenoexceptinherited |
Returns the name of the thread.
This is the name that gets set in the constructor.
|
overrideprivatevirtual |
Called back to do whatever your class needs to do.
This method is called by the message thread at the next convenient time after the triggerAsyncUpdate() method has been called.
Implements juce::AsyncUpdater.
|
private |
|
private |
|
inherited |
If an update has been triggered and is pending, this will invoke it synchronously.
Use this as a kind of "flush" operation - if an update is pending, the handleAsyncUpdate() method will be called immediately; if no update is pending, then nothing will be done.
Because this may invoke the callback, this method must only be called on the main event thread.
|
staticinherited |
Initialises the JUCE subsystem for projects not created by the Projucer.
On Android, JUCE needs to be initialised once before it is used. The Projucer will automatically generate the necessary java code to do this. However, if you are using JUCE without the Projucer or are creating a library made with JUCE intended for use in non-JUCE apks, then you must call this method manually once on apk startup.
You can call this method from C++ or directly from java by calling the following java method:
Note that the above java method is only available in Android Studio projects created by the Projucer. If you need to call this from another type of project then you need to add the following java file to your project:
| jniEnv | this is a pointer to JNI's JNIEnv variable. Any callback from Java into C++ will have this passed in as it's first parameter. |
| jContext | this is a jobject referring to your app/service/receiver/ provider's Context. JUCE needs this for many of it's internal functions. |
|
inherited |
Returns true if this Thread represents a realtime thread.
|
inherited |
Returns true if the thread is currently active.
Referenced by juce::detail::MessageThread::isRunning().
|
noexceptinherited |
Returns true if there's an update callback in the pipeline.
|
privateinherited |
|
staticinherited |
Invokes a lambda or function on its own thread with a custom priority.
This will spin up a Thread object which calls the function and then exits. Bear in mind that starting and stopping a thread can be a fairly heavyweight operation, so you might prefer to use a ThreadPool if you're kicking off a lot of short background tasks.
Also note that using an anonymous thread makes it very difficult to interrupt the function when you need to stop it, e.g. when your app quits. So it's up to you to deal with situations where the function may fail to stop in time.
| priority | The priority the thread is started with. |
| functionToRun | The lambda to be called from the new Thread. |
|
staticinherited |
Invokes a lambda or function on its own thread with the default priority.
This will spin up a Thread object which calls the function and then exits. Bear in mind that starting and stopping a thread can be a fairly heavyweight operation, so you might prefer to use a ThreadPool if you're kicking off a lot of short background tasks.
Also note that using an anonymous thread makes it very difficult to interrupt the function when you need to stop it, e.g. when your app quits. So it's up to you to deal with situations where the function may fail to stop in time.
| functionToRun | The lambda to be called from the new Thread. |
|
inherited |
|
inherited |
Removes a listener added with addListener.
|
private |
|
overrideprivatevirtual |
Must be implemented to perform the thread's actual code.
Remember that the thread must regularly check the threadShouldExit() method whilst running, and if this returns true it should return from the run() method as soon as possible to avoid being forcibly killed.
Implements juce::Thread.
|
inherited |
Sets the affinity mask for the thread.
This will only have an effect next time the thread is started - i.e. if the thread is already running when called, it'll have no effect.
|
staticinherited |
Changes the affinity mask for the caller thread.
This will change the affinity mask for the thread that calls this static method.
References juce::Thread::affinityMask, jassertfalse, JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE, and JUCE_END_IGNORE_WARNINGS_GCC_LIKE.
|
staticinherited |
Changes the name of the caller thread.
Different OSes may place different length or content limits on this name.
References JUCE_AUTORELEASEPOOL.
Attempts to set the priority for this thread.
Returns true if the new priority was set successfully, false if not.
This can only be called from the target thread. Doing so from another thread will cause an assert.
| newPriority | The new priority to be applied to the thread. Note: This has no effect on Linux platforms, subsequent calls to 'getPriority' will return this value. |
|
inherited |
Sets a flag to tell the thread it should stop.
Calling this means that the threadShouldExit() method will then return true. The thread should be regularly checking this to see whether it should exit.
If your thread makes use of wait(), you might want to call notify() after calling this method, to interrupt any waits that might be in progress, and allow it to reach a point where it can exit.
Referenced by juce::detail::MessageThread::stop().
|
staticinherited |
Suspends the execution of the current thread until the specified timeout period has elapsed (note that this may not be exact).
The timeout period must not be negative and whilst sleeping the thread cannot be woken up so it should only be used for short periods of time and when other methods such as using a WaitableEvent or CriticalSection are not possible.
Referenced by juce::OpenGLContext::NativeContext::getNativeWindowFromSurfaceHolder(), juce::detail::MessageThread::run(), and juce::OpenGLContext::NativeContext::swapBuffers().
|
inherited |
Starts the thread with realtime performance characteristics on platforms that support it.
You cannot change the options of a running realtime thread, nor switch a non-realtime thread to a realtime thread. To make these changes you must first stop the thread and then restart with different options.
| options | Realtime options the thread should be created with. |
|
inherited |
Attempts to start a new thread with default ('Priority::normal') priority.
This will cause the thread's run() method to be called by a new thread. If this thread is already running, startThread() won't do anything.
If a thread cannot be created with the requested priority, this will return false and Thread::run() will not be called. An exception to this is the Android platform, which always starts a thread and attempts to upgrade the thread after creation.
Referenced by juce::detail::MessageThread::start().
Attempts to start a new thread with a given priority.
This will cause the thread's run() method to be called by a new thread. If this thread is already running, startThread() won't do anything.
If a thread cannot be created with the requested priority, this will return false and Thread::run() will not be called. An exception to this is the Android platform, which always starts a thread and attempts to upgrade the thread after creation.
| newPriority | Priority the thread should be assigned. This parameter is ignored on Linux. |
|
inherited |
Attempts to stop the thread running.
This method will cause the threadShouldExit() method to return true and call notify() in case the thread is currently waiting.
Hopefully the thread will then respond to this by exiting cleanly, and the stopThread method will wait for a given time-period for this to happen.
If the thread is stuck and fails to respond after the timeout, it gets forcibly killed, which is a very bad thing to happen, as it could still be holding locks, etc. which are needed by other parts of your program.
| timeOutMilliseconds | The number of milliseconds to wait for the thread to finish before killing it by force. A negative value in here will wait forever. |
Referenced by juce::detail::MessageThread::stop().
|
privateinherited |
|
inherited |
Checks whether the thread has been told to stop running.
Threads need to check this regularly, and if it returns true, they should return from their run() method at the first possible opportunity.
Referenced by juce::detail::MessageThread::run().
|
inherited |
Causes the callback to be triggered at a later time.
This method returns immediately, after which a callback to the handleAsyncUpdate() method will be made by the message thread as soon as possible.
If an update callback is already pending but hasn't happened yet, calling this method will have no effect.
It's thread-safe to call this method from any thread, BUT beware of calling it from a real-time (e.g. audio) thread, because it involves posting a message to the system queue, which means it may block (and in general will do on most OSes).
Referenced by juce::detail::TemporaryFilesDecorator::runAsync(), juce::OpenGLContext::NativeContext::swapBuffers(), and juce::detail::MouseInputSourceImpl::triggerFakeMove().
|
inherited |
Suspends the execution of this thread until either the specified timeout period has elapsed, or another thread calls the notify() method to wake it up.
A negative timeout value means that the method will wait indefinitely.
|
inherited |
Waits for the thread to stop.
This will wait until isThreadRunning() is false or until a timeout expires.
| timeOutMilliseconds | the time to wait, in milliseconds. If this value is less than zero, it will wait forever. |
|
staticinherited |
Yields the current thread's CPU time-slot and allows a new thread to run.
If there are no other threads of equal or higher priority currently running then this will return immediately and the current thread will continue to run.
|
privateinherited |
|
privateinherited |
Referenced by juce::Thread::setCurrentThreadAffinityMask().
|
privateinherited |
|
privateinherited |
|
privateinherited |
|
private |
| std::function<void()> juce::NetworkServiceDiscovery::AvailableServiceList::onChange |
A lambda that can be set to receive a callback when the list changes.
|
staticconstexprinherited |
|
privateinherited |
|
privateinherited |
|
private |
|
private |
|
privateinherited |
|
private |
|
privateinherited |
|
privateinherited |
|
privateinherited |
Referenced by juce::Thread::closeThreadHandle().
|
privateinherited |
Referenced by juce::Thread::closeThreadHandle().
|
privateinherited |
|
privateinherited |