123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785 |
- // \file child.hpp
- //
- // Copyright (C) 2014 MicroNeil Research Corporation.
- //
- // This program is part of the MicroNeil Research Open Library Project. For
- // more information go to http://www.microneil.com/OpenLibrary/index.html
- //
- // This program is free software; you can redistribute it and/or modify it
- // under the terms of the GNU General Public License as published by the
- // Free Software Foundation; either version 2 of the License, or (at your
- // option) any later version.
- //
- // This program 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.
- //
- // You should have received a copy of the GNU General Public License along with
- // this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- // Place, Suite 330, Boston, MA 02111-1307 USA
- //==============================================================================
-
- /*
- \brief The child module provides classes to spawn and communicate
- with child processes.
- */
-
- #ifndef CHILD_HPP
- #define CHILD_HPP
-
- #ifdef _WIN32
- #include <windows.h>
- #endif
-
- #include <cstdint>
- #include <streambuf>
- #include <iostream>
- #include <string>
- #include <vector>
- #include <thread>
- #include <mutex>
-
- namespace CodeDweller {
-
- /**
- \namespace CodeDweller
-
- The CodeDweller namespace contains components providing high-level
- functionality for applications.
-
- */
-
- /** Class that abstracts the iostreams communication with a child
- process.
-
- This class provides functionality to create a child process,
- communicate with the child process via streams and signals, and
- obtain the exit code of the child process.
-
- */
-
- class ChildStream : public std::iostream {
-
- private:
-
- /// Streambuf class for reading from the standard output and
- /// writing to the standard input of the child process.
- class ChildStreambuf : public std::streambuf {
-
- friend class ChildStream;
-
- public:
-
- /// Constructor.
- //
- // \param[in] bufSize is the size in bytes of the input
- // buffer and output buffer.
- //
- explicit ChildStreambuf(std::size_t bufSize = 4096);
-
- #ifdef _WIN32
-
- /// Set the handle to read the standard output of the child
- /// process.
- //
- // \param[in] inHandle is the input handle for the standard
- // output of the child process.
- //
- void setInputHandle(HANDLE inHandle);
-
- /// Set the handle to write the standard input of the child
- /// process.
- //
- // \param[in] outHandle is the output handle for the standard
- // input of the child process.
- //
- void setOutputHandle(HANDLE outHandle);
-
- #else
-
- /// Set the file descriptor to read the standard output of the
- /// child process.
- //
- // \param[in] inFd is the input file descriptor for the standard
- // output of the child process.
- //
- void setInputFileDescriptor(int inFd);
-
- /// Set the file descriptor to write the standard input of the
- /// child process.
- //
- // \param[in] outFd is the output file descriptor for the
- // standard input of the child process.
- //
- void setOutputFileDescriptor(int outFd);
-
- #endif
-
- private:
-
- /** Return the number of bytes that can be read without
- blocking.
-
- This method checks if any input is available from the pipe,
- and returns the number of bytes in the input buffer plus 1.
- Reading that number of bytes will not block. Reading a
- larger number of bytes might block.
-
- \returns minimum number of bytes that can be read without
- blocking.
-
- */
- size_t numBytesAvailable() const;
-
- /// Override streambuf::underflow().
- int_type underflow();
-
- /// Flush the output buffer.
- void flushBuffer();
-
- /// Override streambuf::overflow().
- int_type overflow(int_type ch);
-
- /// Override streambuf::sync().
- int sync();
-
- /// Input and output handles.
- #ifdef _WIN32
- HANDLE inputHandle;
- HANDLE outputHandle;
- #else
- int inputFileDescriptor;
- int outputFileDescriptor;
- #endif
-
- /// Size of buffers.
- std::size_t bufferSize;
-
- /// Read buffer.
- std::vector<char> readBuffer;
-
- /// Write buffer.
- std::vector<char> writeBuffer;
-
- /// Copy constructor not implemented.
- ChildStreambuf(const ChildStreambuf &) = delete;
-
- /// Assignment operator not implemented.
- ChildStreambuf &operator=(const ChildStreambuf &) = delete;
-
- };
-
- /// Stream buffer for reading from the stdout and writing to the
- /// stdin of the child process.
- ChildStreambuf childStreambuf;
-
- public:
-
- /** Constructor for spawning with command-line parameters.
-
- The constructor configures the object, and spawns the child
- process.
-
- \param[in] args contains the child executable file name and
- command-line parameters. args[0] contains the full path of the
- executable, and args[1] thru args[n] are the command-line
- parameters.
-
- \param[in] bufSize is the input and output buffer size of the
- stream used to communicate with the child process.
-
- \throws runtime_error if an error occurs.
-
- */
- ChildStream(std::vector<std::string> const &args, size_t bufSize = 4096);
-
- /** Constructor for spawning without command-line parameters.
-
- The constructor configures the object, and spawns the child
- process.
-
- \param[in] childpath contains the child executable file name.
-
- \param[in] bufSize is the input and output buffer size of the
- stream used to communicate with the child process.
-
- \throws runtime_error if an error occurs.
-
- */
- ChildStream(std::string const &childpath, size_t bufSize = 4096);
-
- /** Constructor.
-
- The constructor configures the I/O buffers, but doesn't spawn
- any child process.
-
- \param[in] bufSize is the input and output buffer size of the
- stream used to communicate with the child process.
-
- */
- ChildStream(size_t bufSize = 4096);
-
- /** Destructor terminates the child process. */
- ~ChildStream();
-
- /** Spawn the child process.
-
- \param[in] args contains the child executable file name and
- command-line parameters. args[0] contains the full path of the
- executable, and args[1] thru args[n] are the command-line
- parameters.
-
- \throws runtime_error if an error occurs.
-
- \throws runtime_error if an error occurs.
-
- */
- void open(std::vector<std::string> const &args);
-
- /** Spawn the child process.
-
- \param[in] childpath contains the child executable file name.
-
- \throws runtime_error if an error occurs.
-
- */
- void open(std::string const &childpath);
-
- /** Get the number of bytes available for input.
-
- @returns number of bytes that can be read without blocking.
-
- */
- size_t numBytesAvailable() const;
-
- /** Check whether the child process is running.
-
- \returns True if the child process is running, false
- otherwise.
-
- */
- bool isRunning() const;
-
- /** Terminate the child process.
-
- \throws runtime_error if an error occurs.
-
- \throws logic_error if the child process is not running.
-
- */
- void close();
-
- /** Check whether the child process has exited.
-
- \returns True if the child process has exited, false
- otherwise.
-
- \throws runtime_error if an error occurs.
-
- \throws logic_error if the child process is not running.
-
- */
- bool isDone();
-
- /** Get the exit value of the child process.
-
- \returns The exit value of the child process if the child
- process has exited.
-
- \throws runtime_error if an error occurs.
-
- \throws logic_error if the child process has not exited.
-
- \throws logic_error if the child process is not running.
-
- */
- int32_t result();
-
- private:
-
- /** Spawn the child process.
-
- \throws runtime_error if an error occurs.
-
- */
- void run();
-
- /// Exit code to use when terminating the child process.
- static const uint32_t terminateExitCode = 0;
-
- /// True if the child process was successfully started.
- bool childStarted;
-
- /// True if the child process has exited.
- bool childExited;
-
- /// Initialize data members.
- void init();
-
- /// Child executable path and command-line parameters.
- std::vector<std::string> cmdArgs;
-
- #ifdef _WIN32
- /// Child's process handle.
- HANDLE childProcess;
-
- /// Child's thread handle.
- HANDLE childThread;
- #else
- /// Child process ID.
- pid_t childPid;
- #endif
-
- /// Exit value of the process.
- int32_t exitCode;
-
- /// True if the exit code has been obtained.
- bool exitCodeObtainedFlag;
-
- /// Return text for the most recent error.
- //
- // \returns Human-readable description of the most recent error.
- //
- static std::string getErrorText();
-
- };
-
- /** Class that abstracts the non-blocking communication with a child
- process.
-
- This class provides functionality to create a child process,
- communicate with the child process via non-blocking methods, and
- obtain the exit code of the child process.
-
- */
-
- class Child {
-
- private:
-
- /** Circular buffer of characters. */
- class CircularBuffer {
-
- public:
-
- /** Constructor specifies the capacity.
-
- @param[in] maxSize is the capacity of the buffer.
-
- */
- CircularBuffer(size_t maxSize);
-
- /** Check whether the container is empty.
-
- @returns true if the container is empty, false otherwise.
-
- */
- bool empty() const;
-
- /** Get the size.
-
- @returns the number of bytes in the buffer.
-
- */
- size_t nUsed() const;
-
- /** Get the available space.
-
- @returns the number of bytes that can be written to the
- buffer without overwriting any existing data.
-
- */
- size_t nFree() const;
-
- /** Clear the buffer. */
- void clear();
-
- /** Put bytes to the buffer.
-
- @param[in] ptr is the address of the first byte to put.
-
- @param[in] nBytes is the number of bytes to put.
-
- */
- void put(char const *ptr, size_t nBytes);
-
- /** Get bytes from the buffer.
-
- This method gets the specified number of bytes from the
- buffer, and erases those bytes from the buffer.
-
- @param[out] buf receives the data. The contents of buf are
- replaced with the data in the circular buffer.
-
- @param[in] nBytes is the number of bytes to get. Specifying
- a value of zero for nBytes gets and erases all the data.
-
- */
- void getAndErase(std::string &buf, size_t nBytes = 0);
-
- private:
-
- /** Increment the index.
-
- @param[in] index is the index to increment.
-
- */
- void nextIndex(size_t &index) const {
- index++;
- if (index >= capacity)
- index = 0;
- }
-
- /// Buffer to hold data.
- std::vector<char> buffer;
-
- /// Capacity of the buffer.
- size_t capacity;
-
- /// Index of first element.
- size_t iBegin;
-
- /// Index of one past the last element.
- size_t iEnd;
-
- };
-
- public:
-
- /** Constructor for spawning with command-line parameters.
-
- The constructor configures the object, and spawns the child
- process.
-
- \param[in] args contains the child executable file name and
- command-line parameters. args[0] contains the full path of the
- executable, and args[1] thru args[n] are the command-line
- parameters.
-
- \param[in] bufSize is the input and output buffer size of the
- stream used to communicate with the child process.
-
- \param[in] nominalAboveMinPollTime_ms is used to determine the
- minimum time in milliseconds that the writer thread sleeps
- when there's no data in the output buffer, and that the reader
- thread sleeps when there's no room in the input buffer. The
- minimum time is nominalAboveMinPollTime_ms +
- CodeDweller::MinimumSleeperTime.
-
- \param[in] deltaPollTime_ms is how much longer, in
- milliseconds, the maximum time to sleep is than the minimum time.
-
- \throws runtime_error if an error occurs.
-
- */
- Child(std::vector<std::string> const &args,
- size_t bufSize = 128 * 1024,
- std::uint16_t nominalAboveMinPollTime_ms = 0,
- std::uint16_t deltaPollTime_ms = 500);
-
- /** Constructor for spawning without command-line parameters.
-
- The constructor configures the object, and spawns the child
- process.
-
- \param[in] childpath contains the child executable file name.
-
- \param[in] bufSize is the input and output buffer size of the
- stream used to communicate with the child process.
-
- \param[in] nominalAboveMinPollTime_ms is used to determine the
- minimum time in milliseconds that the writer thread sleeps
- when there's no data in the output buffer, and that the reader
- thread sleeps when there's no room in the input buffer. The
- minimum time is nominalAboveMinPollTime_ms +
- CodeDweller::MinimumSleeperTime.
-
- \param[in] deltaPollTime_ms is how much longer, in
- milliseconds, the maximum time to sleep is than the minimum time.
-
- \throws runtime_error if an error occurs.
-
- */
- Child(std::string const &childpath,
- size_t bufSize = 128 * 1024,
- std::uint16_t nominalAboveMinPollTime_ms = 0,
- std::uint16_t deltaPollTime_ms = 500);
-
- /** Constructor.
-
- The constructor configures the I/O buffers, but doesn't spawn
- any child process.
-
- \param[in] bufSize is the input and output buffer size of the
- stream used to communicate with the child process.
-
- \param[in] nominalAboveMinPollTime_ms is used to determine the
- minimum time in milliseconds that the writer thread sleeps
- when there's no data in the output buffer, and that the reader
- thread sleeps when there's no room in the input buffer. The
- minimum time is nominalAboveMinPollTime_ms +
- CodeDweller::MinimumSleeperTime.
-
- \param[in] deltaPollTime_ms is how much longer, in
- milliseconds, the maximum time to sleep is than the minimum time.
-
- */
- Child(size_t bufSize = 4096,
- std::uint16_t nominalAboveMinPollTime_ms = 0,
- std::uint16_t deltaPollTime_ms = 500);
-
- /** Destructor terminates the child process. */
- ~Child();
-
- /** Spawn the child process.
-
- \param[in] args contains the child executable file name and
- command-line parameters. args[0] contains the full path of the
- executable, and args[1] thru args[n] are the command-line
- parameters.
-
- \throws runtime_error if an error occurs.
-
- \throws runtime_error if an error occurs.
-
- */
- void open(std::vector<std::string> const &args);
-
- /** Spawn the child process.
-
- \param[in] childpath contains the child executable file name.
-
- \throws runtime_error if an error occurs.
-
- */
- void open(std::string const &childpath);
-
- /** All-or-nothing non-blocking queue write request to the child.
-
- This methods attempts to queue a write request consisting of
- the entire contents of the string.
-
- @param[in] data is the data to queue.
-
- @returns true if the write request was queued, false
- otherwise.
-
- */
- bool write(std::string const &data);
-
- /** Non-blocking queue write request to the child.
-
- This methods attempts to queue a write request consisting of
- as much as possible of the contents of the string.
-
- @param[in, out] data on input is the data to queue. On
- output, data contains the data that was not queued.
-
- @returns the number of bytes queued.
-
- */
- size_t writeAndShrink(std::string &data);
-
- /** Check if all queued data was transmitted.
-
- @returns true if all the queued data was transmitted to the
- child, false otherwise.
-
- */
- bool isFinishedWriting() const;
-
- /** Non-blocking request to get data read from the child.
-
- This method attempts to get up to a specified number of bytes
- of data from the input buffer containing data received from
- the child. The data that is provided is erased from the input
- buffer.
-
- @param[out] data contains the copied data.
-
- @param[in] nBytes is the number of bytes to attempt to copy.
- If nBytes is zero, the contents of the entire input buffer is
- moved to data.
-
- @returns the number of bytes copied.
-
- */
- size_t read(std::string &data, size_t nBytes = 0);
-
- /** Check whether the child process is running.
-
- \returns True if the child process is running, false
- otherwise.
-
- */
- bool isRunning() const;
-
- /** Check error status.
-
- This method checks whether an error occurred when
- communicating with the child process.
-
- \param[out] errorDescription contains any description of the
- error.
-
- \returns true if an error occurred, false otherwise.
-
- */
- bool errorOccurred(std::string &errorDescription) const;
-
- /** Close the connection.
-
- This method terminate the child process if it is running, and
- resets the object. After this method is invoked, open() can
- be invoked to spawn and communicate with another child
- process.
-
- \throws runtime_error if an error occurs.
-
- \throws logic_error if the child process is not running.
-
- */
- void close();
-
- /** Check whether the child process has exited.
-
- \returns True if the child process has exited, false
- otherwise.
-
- \throws runtime_error if an error occurs.
-
- \throws logic_error if the child process is not running.
-
- */
- bool isDone();
-
- /** Get the exit value of the child process.
-
- \returns The exit value of the child process if the child
- process has exited.
-
- \throws runtime_error if an error occurs.
-
- \throws logic_error if the child process has not exited.
-
- \throws logic_error if the child process is not running.
-
- */
- int32_t result();
-
- private:
-
- /// Initialize data members.
- void init();
-
- /** Spawn the child process.
-
- \throws runtime_error if an error occurs.
-
- */
- void run();
-
- /// Reader thread object.
- std::thread readerThread;
-
- /// Thread start function to read data from the child.
- void readFromChild();
-
- /// Writer thread object.
- std::thread writerThread;
-
- /// Thread start function to send data to the child.
- void writeToChild();
-
- /// True if readerThread and writerThread are to stop.
- bool stopFlag;
-
- /// True if both the reader and writer the writer threads are
- /// running, false otherwise.
- bool threadsAreRunning;
-
- /// Description of any error.
- std::string errorText;
-
- /// Input and output handles.
- #ifdef _WIN32
- HANDLE inputHandle;
- HANDLE outputHandle;
- #else
- int inputFileDescriptor;
- int outputFileDescriptor;
- #endif
-
- /// Capacity of buffers.
- std::size_t bufferCapacity;
-
- /// Read buffer.
- CircularBuffer readBuffer;
-
- /// Mutex to serialize access to readBuffer.
- std::mutex readBufferMutex;
-
- /// Write buffer.
- std::vector<char> writeBuffer;
-
- /// Number of bytes in writeBuffer.
- size_t nWriteBytes;
-
- /// Mutex to serialize access to writeBuffer.
- std::mutex writeBufferMutex;
-
- /// Number of bytes in writer thread transmit buffer.
- size_t nTransmitBytes;
-
- /// Nominal poll time.
- //
- // If there isn't room in readBuffer, readerThread aperiodically
- // checks whether room is available. The check times are
- // determined by a CodeDweller::PollTimer object, which requires a
- // nominal poll time and a maximum poll time.
- int nominalPollTime_ms;
-
- /// Maximum poll time.
- int maximumPollTime_ms;
-
- /// Exit code to use when terminating the child process.
- static const uint32_t terminateExitCode = 0;
-
- /// True if the child process was successfully started.
- bool childStarted;
-
- /// True if the child process has exited.
- bool childExited;
-
- /// Child executable path and command-line parameters.
- std::vector<std::string> cmdArgs;
-
- #ifdef _WIN32
- /// Child's process handle.
- HANDLE childProcess;
-
- /// Child's thread handle.
- HANDLE childThread;
- #else
- /// Child process ID.
- pid_t childPid;
- #endif
-
- /// Exit value of the process.
- int32_t exitCode;
-
- /// True if the exit code has been obtained.
- bool exitCodeObtainedFlag;
-
- /// Return text for the most recent error.
- //
- // \returns Human-readable description of the most recent error.
- //
- static std::string getErrorText();
-
- };
-
- }
-
- #endif // CHILD_HPP
|