bufio.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:6k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: bufio.h,v 1.2.42.3 2004/07/09 01:44:45 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #ifndef _BUFIO_H_
  50. #define _BUFIO_H_
  51. #include <string.h>
  52. #include <errno.h>
  53. #include "bio.h"
  54. #include "fio.h"
  55. #include "buffer.h"
  56. #include "hxassert.h"
  57. class Buffer_IO: public IO 
  58. {
  59. public:
  60. Buffer_IO(Buffer* buffer, INT32 flags);
  61. ~Buffer_IO();
  62.     virtual INT32 read(void* buf, INT32 size) = 0;
  63.     INT32 write(const void* buf, INT32 size);
  64.     virtual off_t seek(off_t new_off, INT32 whence) = 0;
  65.     virtual INT32 flush() = 0;
  66.     INT32 close() { return 0; };
  67.     Buffer* buf;
  68.     INT32 flags();
  69.     INT32 error();
  70.     virtual off_t file_size();
  71. protected:
  72.     INT32 _flags;
  73.     INT32 err;
  74. };
  75. class PipeBuf_IO : public Buffer_IO 
  76. {
  77. public:
  78. PipeBuf_IO();
  79. ~PipeBuf_IO();
  80.     INT32 read(void* buf, INT32 size);
  81.     off_t seek(off_t new_off, INT32 whence);
  82.     INT32 flush();
  83. };
  84. class FileBuf_IO : public Buffer_IO 
  85. {
  86. public:
  87. FileBuf_IO();
  88. FileBuf_IO(GrowBuffer* buffer, INT32 o_flags = O_RDWR);
  89. ~FileBuf_IO();
  90.     INT32 read(void* buf, INT32 size);
  91.     off_t seek(off_t new_off, INT32 whence);
  92.     INT32 flush();
  93. private:
  94.     off_t offset;
  95. };
  96. inline
  97. Buffer_IO::Buffer_IO(Buffer* buffer, INT32 o_flags) 
  98. {
  99.     buf = buffer;
  100.     _flags = o_flags;
  101. }
  102. inline
  103. Buffer_IO::~Buffer_IO() 
  104. {
  105.     if (buf->refcount == 0)
  106. delete buf;
  107. }
  108. inline INT32
  109. Buffer_IO::flags()
  110. {
  111.     return _flags;
  112. }
  113. inline INT32
  114. Buffer_IO::error()
  115. {
  116.     return err;
  117. }
  118. inline INT32
  119. Buffer_IO::write(const void* b, INT32 size) 
  120. {
  121.     buf->ensure_space(size);
  122.     memcpy(buf->space, b, size); /* Flawfinder: ignore */
  123.     buf->space += size;
  124.     return size;
  125. }
  126. inline off_t
  127. Buffer_IO::file_size()
  128. {
  129.     ASSERT(1);
  130.     return -1;
  131. }
  132. inline
  133. PipeBuf_IO::PipeBuf_IO() 
  134.     :
  135.     Buffer_IO(new WrapBuffer(), O_RDWR)
  136. {
  137.     buf->init(1024);
  138. }
  139. inline
  140. PipeBuf_IO::~PipeBuf_IO() 
  141. {
  142.     ASSERT(buf->refcount == 0);
  143. }
  144. inline INT32
  145. PipeBuf_IO::read(void* b, INT32 size) 
  146. {
  147.     INT32 count = buf->count();
  148.     if (count < size)
  149.        size = count;
  150.     memcpy(b, buf->data, size); /* Flawfinder: ignore */
  151.     buf->data += size;
  152.     return size;
  153. }
  154. inline off_t
  155. PipeBuf_IO::seek(off_t new_off, INT32 whence) 
  156. {
  157.     return (off_t)-1;
  158. }
  159. inline INT32
  160. PipeBuf_IO::flush() 
  161. {
  162.     buf->data = buf->space = buf->base;
  163.     return 0;
  164. }
  165. inline
  166. FileBuf_IO::FileBuf_IO() 
  167.     :
  168.     Buffer_IO(new GrowBuffer(), O_RDWR)
  169. {
  170.     buf->init(1024);
  171. }
  172. inline
  173. FileBuf_IO::FileBuf_IO(GrowBuffer* buffer, INT32 o_flags) 
  174.     :
  175.     Buffer_IO(buffer, o_flags)
  176. {
  177.     ASSERT(buf);
  178.     buf->refcount++;
  179.     offset = 0;
  180. }
  181. inline
  182. FileBuf_IO::~FileBuf_IO() 
  183. {
  184.     buf->refcount--;
  185. }
  186. inline INT32
  187. FileBuf_IO::read(void* b, INT32 size) 
  188. {
  189.     INT32 count = buf->count() - offset;
  190.     if (count < size)
  191.        size = count;
  192.     memcpy(b, buf->data + offset, size); /* Flawfinder: ignore */
  193.     offset += size;
  194.     return size;
  195. }
  196. inline off_t
  197. FileBuf_IO::seek(off_t new_off, INT32 whence) 
  198. {
  199.     /*
  200.      * XXX...this seek is for read only buffers. Seeking for write buffers
  201.      *       would require using offset for both reading and writing
  202.      */
  203.     ASSERT(_flags == O_RDONLY);
  204.     switch (whence)
  205.     {
  206. case SEEK_SET:
  207.     break;
  208. case SEEK_CUR:
  209.     new_off += offset;
  210.     break;
  211. case SEEK_END:
  212.     new_off = buf->used();
  213.     break;
  214. default:
  215.     err = EINVAL;
  216.     return 0;
  217.     }
  218.     Byte* b = buf->base + new_off;
  219.     /*
  220.      * It is not possible to seek past the end of data
  221.      */
  222.     if (b > buf->space)
  223. return -1;
  224.     offset = new_off;
  225.     return 0;
  226. }
  227. inline INT32
  228. FileBuf_IO::flush() 
  229. {
  230.     /*
  231.      * Does not exist for FileBuf_IO
  232.      */
  233.     return -1;
  234. }
  235. #endif/*_BUFIO_H_*/