llpipeutil.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:4k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llpipeutil.h
  3.  * @date 2006-05-18
  4.  * @brief Utility pipe fittings for injecting and extracting strings
  5.  *
  6.  * $LicenseInfo:firstyear=2006&license=viewergpl$
  7.  * 
  8.  * Copyright (c) 2006-2010, Linden Research, Inc.
  9.  * 
  10.  * Second Life Viewer Source Code
  11.  * The source code in this file ("Source Code") is provided by Linden Lab
  12.  * to you under the terms of the GNU General Public License, version 2.0
  13.  * ("GPL"), unless you have obtained a separate licensing agreement
  14.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  15.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  16.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  17.  * 
  18.  * There are special exceptions to the terms and conditions of the GPL as
  19.  * it is applied to this Source Code. View the full text of the exception
  20.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  21.  * online at
  22.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  23.  * 
  24.  * By copying, modifying or distributing this software, you acknowledge
  25.  * that you have read and understood your obligations described above,
  26.  * and agree to abide by those obligations.
  27.  * 
  28.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  29.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  30.  * COMPLETENESS OR PERFORMANCE.
  31.  * $/LicenseInfo$
  32.  */
  33. #ifndef LL_LLPIPEUTIL_H
  34. #define LL_LLPIPEUTIL_H
  35. #include "lliopipe.h"
  36. /**
  37.  * @brief Simple function which pumps for the specified time.
  38.  */
  39. F32 pump_loop(LLPumpIO* pump, F32 seconds);
  40. /**
  41.  * @brief Simple class which writes a string and then marks the stream
  42.  * as done.
  43.  */
  44. class LLPipeStringInjector : public LLIOPipe
  45. {
  46. public:
  47. LLPipeStringInjector(const std::string& string)
  48. : mString(string)
  49. { }
  50.   
  51. protected:
  52.     virtual EStatus process_impl(
  53. const LLChannelDescriptors& channels,
  54. buffer_ptr_t& buffer,
  55. bool& eos,
  56. LLSD& context,
  57. LLPumpIO* pump);
  58. private:
  59. std::string mString;
  60. };
  61. class LLPipeStringExtractor : public LLIOPipe
  62. {
  63. public:
  64. LLPipeStringExtractor() : mDone(false) { }
  65. bool done() { return mDone; }
  66. std::string string() { return mString; }
  67. protected:
  68. // LLIOPipe API implementation.
  69. virtual EStatus process_impl(
  70.         const LLChannelDescriptors& channels,
  71.         LLIOPipe::buffer_ptr_t& buffer,
  72.         bool& eos,
  73.         LLSD& context,
  74.         LLPumpIO* pump);
  75. private:
  76. bool mDone;
  77. std::string mString;
  78. };
  79. /**
  80.  * @brief Generate a specified number of bytes of random data
  81.  */
  82. class LLIOFuzz : public LLIOPipe
  83. {
  84. public:
  85. LLIOFuzz(int byte_count) : mByteCount(byte_count) {}
  86.   
  87. protected:
  88.     virtual EStatus process_impl(
  89. const LLChannelDescriptors& channels,
  90. buffer_ptr_t& buffer,
  91. bool& eos,
  92. LLSD& context,
  93. LLPumpIO* pump);
  94. private:
  95. int mByteCount;
  96. };
  97. /**
  98.  * @brief Generate some ascii fuz
  99.  */
  100. class LLIOASCIIFuzz : public LLIOPipe
  101. {
  102. public:
  103. LLIOASCIIFuzz(int byte_count) : mByteCount(byte_count) {}
  104.   
  105. protected:
  106.     virtual EStatus process_impl(
  107. const LLChannelDescriptors& channels,
  108. buffer_ptr_t& buffer,
  109. bool& eos,
  110. LLSD& context,
  111. LLPumpIO* pump);
  112. private:
  113. int mByteCount;
  114. };
  115. /**
  116.  * @brief Pipe that does nothing except return STATUS_OK
  117.  */
  118. class LLIONull : public LLIOPipe
  119. {
  120. public:
  121. LLIONull() {}
  122.   
  123. protected:
  124.     virtual EStatus process_impl(
  125. const LLChannelDescriptors& channels,
  126. buffer_ptr_t& buffer,
  127. bool& eos,
  128. LLSD& context,
  129. LLPumpIO* pump);
  130. };
  131. /**
  132.  * @brief Pipe that sleeps, and then responds later.
  133.  */
  134. class LLIOSleeper : public LLIOPipe
  135. {
  136. public:
  137. LLIOSleeper() : mRespond(false) {}
  138.   
  139. protected:
  140.     virtual EStatus process_impl(
  141. const LLChannelDescriptors& channels,
  142. buffer_ptr_t& buffer,
  143. bool& eos,
  144. LLSD& context,
  145. LLPumpIO* pump);
  146. private:
  147. bool mRespond;
  148. };
  149. #endif // LL_LLPIPEUTIL_H