|
- /*
- ==============================================================================
-
- This file is part of the JUCE library - "Jules' Utility Class Extensions"
- Copyright 2004-9 by Raw Material Software Ltd.
-
- ------------------------------------------------------------------------------
-
- JUCE can be redistributed and/or modified under the terms of the GNU General
- Public License (Version 2), as published by the Free Software Foundation.
- A copy of the license is included in the JUCE distribution, or can be found
- online at www.gnu.org/licenses.
-
- JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- A PARTICULAR PURPOSE. See the GNU General Public License for more details.
-
- ------------------------------------------------------------------------------
-
- To release a closed-source product which uses JUCE, commercial licenses are
- available: visit www.rawmaterialsoftware.com/juce for more information.
-
- ==============================================================================
- */
-
- #ifndef __JUCE_NAMEDPIPE_JUCEHEADER__
- #define __JUCE_NAMEDPIPE_JUCEHEADER__
-
- #include "../streams/juce_OutputStream.h"
- #include "../../threads/juce_CriticalSection.h"
-
-
- //==============================================================================
- /**
- A cross-process pipe that can have data written to and read from it.
-
- Two or more processes can use these for inter-process communication.
-
- @see InterprocessConnection
- */
- class JUCE_API NamedPipe
- {
- public:
- //==============================================================================
- /** Creates a NamedPipe. */
- NamedPipe();
-
- /** Destructor. */
- ~NamedPipe();
-
-
- //==============================================================================
- /** Tries to open a pipe that already exists.
-
- Returns true if it succeeds.
- */
- bool openExisting (const String& pipeName);
-
- /** Tries to create a new pipe.
-
- Returns true if it succeeds.
- */
- bool createNewPipe (const String& pipeName);
-
- /** Closes the pipe, if it's open. */
- void close();
-
- /** True if the pipe is currently open. */
- bool isOpen() const;
-
- /** Returns the last name that was used to try to open this pipe. */
- const String getName() const;
-
- //==============================================================================
- /** Reads data from the pipe.
-
- This will block until another thread has written enough data into the pipe to fill
- the number of bytes specified, or until another thread calls the cancelPendingReads()
- method.
-
- If the operation fails, it returns -1, otherwise, it will return the number of
- bytes read.
-
- If timeOutMilliseconds is less than zero, it will wait indefinitely, otherwise
- this is a maximum timeout for reading from the pipe.
- */
- int read (void* destBuffer, int maxBytesToRead, int timeOutMilliseconds = 5000);
-
- /** Writes some data to the pipe.
-
- If the operation fails, it returns -1, otherwise, it will return the number of
- bytes written.
- */
- int write (const void* sourceBuffer, int numBytesToWrite,
- int timeOutMilliseconds = 2000);
-
- /** If any threads are currently blocked on a read operation, this tells them to abort.
- */
- void cancelPendingReads();
-
-
- //==============================================================================
- juce_UseDebuggingNewOperator
-
- private:
- void* internal;
- String currentPipeName;
- CriticalSection lock;
-
- NamedPipe (const NamedPipe&);
- NamedPipe& operator= (const NamedPipe&);
-
- bool openInternal (const String& pipeName, const bool createPipe);
- };
-
-
- #endif // __JUCE_NAMEDPIPE_JUCEHEADER__
|