PipeStream.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. //
  2. // PipeStream.h
  3. //
  4. // $Id: //poco/svn/Foundation/include/Poco/PipeStream.h#2 $
  5. //
  6. // Library: Foundation
  7. // Package: Processes
  8. // Module: PipeStream
  9. //
  10. // Definition of the PipeStream class.
  11. //
  12. // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
  13. // and Contributors.
  14. //
  15. // Permission is hereby granted, free of charge, to any person or organization
  16. // obtaining a copy of the software and accompanying documentation covered by
  17. // this license (the "Software") to use, reproduce, display, distribute,
  18. // execute, and transmit the Software, and to prepare derivative works of the
  19. // Software, and to permit third-parties to whom the Software is furnished to
  20. // do so, all subject to the following:
  21. //
  22. // The copyright notices in the Software and this entire statement, including
  23. // the above license grant, this restriction and the following disclaimer,
  24. // must be included in all copies of the Software, in whole or in part, and
  25. // all derivative works of the Software, unless such copies or derivative
  26. // works are solely in the form of machine-executable object code generated by
  27. // a source language processor.
  28. //
  29. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  30. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  31. // FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
  32. // SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
  33. // FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
  34. // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  35. // DEALINGS IN THE SOFTWARE.
  36. //
  37. #ifndef Foundation_PipeStream_INCLUDED
  38. #define Foundation_PipeStream_INCLUDED
  39. #include "Poco/Foundation.h"
  40. #include "Poco/Pipe.h"
  41. #include "Poco/BufferedStreamBuf.h"
  42. #include <istream>
  43. #include <ostream>
  44. namespace Poco {
  45. class Foundation_API PipeStreamBuf: public BufferedStreamBuf
  46. /// This is the streambuf class used for reading from and writing to a Pipe.
  47. {
  48. public:
  49. typedef BufferedStreamBuf::openmode openmode;
  50. PipeStreamBuf(const Pipe& pipe, openmode mode);
  51. /// Creates a PipeStreamBuf with the given Pipe.
  52. ~PipeStreamBuf();
  53. /// Destroys the PipeStreamBuf.
  54. void close();
  55. /// Closes the pipe.
  56. protected:
  57. int readFromDevice(char* buffer, std::streamsize length);
  58. int writeToDevice(const char* buffer, std::streamsize length);
  59. private:
  60. enum
  61. {
  62. STREAM_BUFFER_SIZE = 1024
  63. };
  64. Pipe _pipe;
  65. };
  66. class Foundation_API PipeIOS: public virtual std::ios
  67. /// The base class for PipeInputStream and
  68. /// PipeOutputStream.
  69. ///
  70. /// This class is needed to ensure the correct initialization
  71. /// order of the stream buffer and base classes.
  72. {
  73. public:
  74. PipeIOS(const Pipe& pipe, openmode mode);
  75. /// Creates the PipeIOS with the given Pipe.
  76. ~PipeIOS();
  77. /// Destroys the PipeIOS.
  78. ///
  79. /// Flushes the buffer, but does not close the pipe.
  80. PipeStreamBuf* rdbuf();
  81. /// Returns a pointer to the internal PipeStreamBuf.
  82. void close();
  83. /// Flushes the stream and closes the pipe.
  84. protected:
  85. PipeStreamBuf _buf;
  86. };
  87. class Foundation_API PipeOutputStream: public PipeIOS, public std::ostream
  88. /// An output stream for writing to a Pipe.
  89. {
  90. public:
  91. PipeOutputStream(const Pipe& pipe);
  92. /// Creates the PipeOutputStream with the given Pipe.
  93. ~PipeOutputStream();
  94. /// Destroys the PipeOutputStream.
  95. ///
  96. /// Flushes the buffer, but does not close the pipe.
  97. };
  98. class Foundation_API PipeInputStream: public PipeIOS, public std::istream
  99. /// An input stream for reading from a Pipe.
  100. ///
  101. /// Using formatted input from a PipeInputStream
  102. /// is not recommended, due to the read-ahead behavior of
  103. /// istream with formatted reads.
  104. {
  105. public:
  106. PipeInputStream(const Pipe& pipe);
  107. /// Creates the PipeInputStream with the given Pipe.
  108. ~PipeInputStream();
  109. /// Destroys the PipeInputStream.
  110. };
  111. } // namespace Poco
  112. #endif // Foundation_PipeStream_INCLUDED