An object that waits for client sockets to connect to a port on this host, and creates InterprocessConnection objects for each one.
More...
#include <juce_InterprocessConnectionServer.h>
|
| 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.
|
| |
An object that waits for client sockets to connect to a port on this host, and creates InterprocessConnection objects for each one.
To use this, create a class derived from it which implements the createConnectionObject() method, so that it creates suitable connection objects for each client that tries to connect.
- See also
- InterprocessConnection
@tags{Events}
◆ ThreadID
◆ Priority
The different runtime priorities of non-realtime threads.
- See also
- startThread
| Enumerator |
|---|
| highest | The highest possible priority that isn't a dedicated realtime thread.
|
| high | Makes use of performance cores and higher clocks.
|
| normal | The OS default.
It will balance out across all cores.
|
| low | Uses efficiency cores when possible.
|
| background | Restricted to efficiency cores on platforms that have them.
|
◆ InterprocessConnectionServer()
| juce::InterprocessConnectionServer::InterprocessConnectionServer |
( |
| ) |
|
Creates an uninitialised server object.
◆ ~InterprocessConnectionServer()
| juce::InterprocessConnectionServer::~InterprocessConnectionServer |
( |
| ) |
|
|
override |
◆ addListener()
| void juce::Thread::addListener |
( |
Listener * |
| ) |
|
|
inherited |
◆ beginWaitingForSocket()
| bool juce::InterprocessConnectionServer::beginWaitingForSocket |
( |
int |
portNumber, |
|
|
const String & |
bindAddress = String() |
|
) |
| |
Starts an internal thread which listens on the given port number.
While this is running, if another process tries to connect with the InterprocessConnection::connectToSocket() method, this object will call createConnectionObject() to create a connection to that client.
Use stop() to stop the thread running.
- Parameters
-
| portNumber | The port on which the server will receive connections |
| bindAddress | The address on which the server will listen for connections. An empty string indicates that it should listen on all addresses assigned to this machine. |
- See also
- createConnectionObject, stop
◆ closeThreadHandle()
| void juce::Thread::closeThreadHandle |
( |
| ) |
|
|
privateinherited |
◆ createConnectionObject()
Creates a suitable connection object for a client process that wants to connect to this one.
This will be called by the listener thread when a client process tries to connect, and must return a new InterprocessConnection object that will then run as this end of the connection.
- See also
- InterprocessConnection
◆ createNativeThread()
◆ currentThreadShouldExit()
| static bool juce::Thread::currentThreadShouldExit |
( |
| ) |
|
|
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.
- See also
- threadShouldExit
◆ getBoundPort()
| int juce::InterprocessConnectionServer::getBoundPort |
( |
| ) |
const |
|
noexcept |
Returns the local port number to which this server is currently bound.
This is useful if you need to know to which port the OS has actually bound your socket when calling beginWaitingForSocket with a port number of zero.
Returns -1 if the function fails.
◆ getCurrentThread()
| static Thread * juce::Thread::getCurrentThread |
( |
| ) |
|
|
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.
◆ getCurrentThreadId()
◆ getPriority()
| Priority juce::Thread::getPriority |
( |
| ) |
const |
|
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.
- See also
- setPriority
◆ getThreadId()
| ThreadID juce::Thread::getThreadId |
( |
| ) |
const |
|
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.
- See also
- getCurrentThreadId
◆ getThreadName()
| const String & juce::Thread::getThreadName |
( |
| ) |
const |
|
inlinenoexceptinherited |
Returns the name of the thread.
This is the name that gets set in the constructor.
◆ initialiseJUCE()
| static void juce::Thread::initialiseJUCE |
( |
void * |
jniEnv, |
|
|
void * |
jContext |
|
) |
| |
|
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:
com.rmsl.juce.Java.initialiseJUCE (myContext);
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:
package com.rmsl.juce;
public class Java
{
static { System.loadLibrary ("juce_jni"); }
public native static void initialiseJUCE (Context context);
}
- Parameters
-
| 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. |
◆ isRealtime()
| bool juce::Thread::isRealtime |
( |
| ) |
const |
|
inherited |
Returns true if this Thread represents a realtime thread.
◆ isThreadRunning()
| bool juce::Thread::isThreadRunning |
( |
| ) |
const |
|
inherited |
◆ killThread()
| void juce::Thread::killThread |
( |
| ) |
|
|
privateinherited |
◆ launch() [1/2]
| static bool juce::Thread::launch |
( |
Priority |
priority, |
|
|
std::function< void()> |
functionToRun |
|
) |
| |
|
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.
- Parameters
-
| priority | The priority the thread is started with. |
| functionToRun | The lambda to be called from the new Thread. |
- Returns
- true if the thread started successfully, or false if it failed.
◆ launch() [2/2]
| static bool juce::Thread::launch |
( |
std::function< void()> |
functionToRun | ) |
|
|
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.
- Parameters
-
| functionToRun | The lambda to be called from the new Thread. |
- Returns
- true if the thread started successfully, or false if it failed.
- See also
- launch.
◆ notify()
| void juce::Thread::notify |
( |
| ) |
const |
|
inherited |
Wakes up the thread.
If the thread has called the wait() method, this will wake it up.
- See also
- wait
◆ removeListener()
| void juce::Thread::removeListener |
( |
Listener * |
| ) |
|
|
inherited |
Removes a listener added with addListener.
◆ run()
| void juce::InterprocessConnectionServer::run |
( |
| ) |
|
|
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.
- See also
- threadShouldExit, startThread
Implements juce::Thread.
◆ setAffinityMask()
| void juce::Thread::setAffinityMask |
( |
uint32 |
affinityMask | ) |
|
|
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.
- See also
- setCurrentThreadAffinityMask
◆ setCurrentThreadAffinityMask()
| void juce::Thread::setCurrentThreadAffinityMask |
( |
uint32 |
affinityMask | ) |
|
|
staticinherited |
◆ setCurrentThreadName()
| void juce::Thread::setCurrentThreadName |
( |
const String & |
newThreadName | ) |
|
|
staticinherited |
Changes the name of the caller thread.
Different OSes may place different length or content limits on this name.
References JUCE_AUTORELEASEPOOL.
◆ setPriority()
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.
- Parameters
-
| 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. |
- See also
- Priority
◆ signalThreadShouldExit()
| void juce::Thread::signalThreadShouldExit |
( |
| ) |
|
|
inherited |
◆ sleep()
| void juce::Thread::sleep |
( |
int |
milliseconds | ) |
|
|
staticinherited |
◆ startRealtimeThread()
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.
- Parameters
-
| options | Realtime options the thread should be created with. |
- See also
- startThread, RealtimeOptions
◆ startThread() [1/2]
| bool juce::Thread::startThread |
( |
| ) |
|
|
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.
- Returns
- true if the thread started successfully. false if it was unsuccessful.
- See also
- stopThread
Referenced by juce::detail::MessageThread::start().
◆ startThread() [2/2]
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.
- Parameters
-
| newPriority | Priority the thread should be assigned. This parameter is ignored on Linux. |
- Returns
- true if the thread started successfully, false if it was unsuccesful.
- See also
- startThread, setPriority, startRealtimeThread
◆ startThreadInternal()
◆ stop()
| void juce::InterprocessConnectionServer::stop |
( |
| ) |
|
◆ stopThread()
| bool juce::Thread::stopThread |
( |
int |
timeOutMilliseconds | ) |
|
|
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.
- Parameters
-
| 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. |
- Returns
- true if the thread was cleanly stopped before the timeout, or false if it had to be killed by force.
- See also
- signalThreadShouldExit, threadShouldExit, waitForThreadToExit, isThreadRunning
Referenced by juce::detail::MessageThread::stop().
◆ threadEntryPoint()
| void juce::Thread::threadEntryPoint |
( |
| ) |
|
|
privateinherited |
◆ threadShouldExit()
| bool juce::Thread::threadShouldExit |
( |
| ) |
const |
|
inherited |
◆ wait()
| bool juce::Thread::wait |
( |
double |
timeOutMilliseconds | ) |
const |
|
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.
- Returns
- true if the event has been signalled, false if the timeout expires.
◆ waitForThreadToExit()
| bool juce::Thread::waitForThreadToExit |
( |
int |
timeOutMilliseconds | ) |
const |
|
inherited |
Waits for the thread to stop.
This will wait until isThreadRunning() is false or until a timeout expires.
- Parameters
-
| timeOutMilliseconds | the time to wait, in milliseconds. If this value is less than zero, it will wait forever. |
- Returns
- true if the thread exits, or false if the timeout expires first.
◆ yield()
| void juce::Thread::yield |
( |
| ) |
|
|
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.
◆ affinityMask
| uint32 juce::Thread::affinityMask = 0 |
|
privateinherited |
◆ defaultEvent
◆ deleteOnThreadEnd
| bool juce::Thread::deleteOnThreadEnd = false |
|
privateinherited |
◆ listeners
◆ osDefaultStackSize
| constexpr size_t juce::Thread::osDefaultStackSize { 0 } |
|
staticconstexprinherited |
◆ priority
| std::atomic<Priority> juce::Thread::priority |
|
privateinherited |
◆ realtimeOptions
◆ shouldExit
| std::atomic<bool> juce::Thread::shouldExit { false } |
|
privateinherited |
◆ socket
| std::unique_ptr<StreamingSocket> juce::InterprocessConnectionServer::socket |
|
private |
◆ startStopLock
◆ startSuspensionEvent
◆ threadHandle
| std::atomic<void*> juce::Thread::threadHandle { nullptr } |
|
privateinherited |
◆ threadId
| std::atomic<ThreadID> juce::Thread::threadId { nullptr } |
|
privateinherited |
◆ threadName
| const String juce::Thread::threadName |
|
privateinherited |
◆ threadStackSize
| size_t juce::Thread::threadStackSize |
|
privateinherited |
The documentation for this class was generated from the following file: