Bstream.h
上传用户:zbbssh
上传日期:2007-01-08
资源大小:196k
文件大小:3k
源码类别:

CA认证

开发平台:

C/C++

  1. /*
  2. ------------------------------------------------------------------
  3.   Copyright
  4.   Sun Microsystems, Inc.
  5.   Copyright (C) 1994, 1995, 1996 Sun Microsystems, Inc.  All Rights
  6.   Reserved.
  7.   Permission is hereby granted, free of charge, to any person
  8.   obtaining a copy of this software and associated documentation
  9.   files (the "Software"), to deal in the Software without
  10.   restriction, including without limitation the rights to use,
  11.   copy, modify, merge, publish, distribute, sublicense, and/or sell
  12.   copies of the Software or derivatives of the Software, and to 
  13.   permit persons to whom the Software or its derivatives is furnished 
  14.   to do so, subject to the following conditions:
  15.   The above copyright notice and this permission notice shall be
  16.   included in all copies or substantial portions of the Software.
  17.   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18.   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  19.   OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20.   NONINFRINGEMENT.  IN NO EVENT SHALL SUN MICROSYSTEMS, INC., BE LIABLE
  21.   FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  22.   OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  23.   CONNECTION WITH THE SOFTWARE OR DERIVATES OF THIS SOFTWARE OR 
  24.   THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25.   Except as contained in this notice, the name of Sun Microsystems, Inc.
  26.   shall not be used in advertising or otherwise to promote
  27.   the sale, use or other dealings in this Software or its derivatives 
  28.   without prior written authorization from Sun Microsystems, Inc.
  29. */
  30. #pragma ident "@(#)Bstream.h 1.4 96/01/29 Sun Microsystems"
  31. #ifndef BSTREAM_H
  32. #define BSTREAM_H
  33. /*
  34.  * Binary Stream Data Type
  35.  */
  36. #include "my_types.h"
  37. const int SUCCESS = 0;
  38. const int FAILURE = -1;
  39. const int EOS = FAILURE;
  40. class Bstream {
  41. int peekindex;
  42. byte *deletethis;
  43. int  len;
  44. byte *datap;
  45.  public:
  46. Bstream();
  47. Bstream(int, byte *);
  48. Bstream(const char *);
  49. Bstream(const String &);
  50. Bstream(const Bstream &);
  51. ~Bstream();
  52. operator const char *() const;
  53. //operator String() const;
  54. Bstream& operator =(const Bstream &);
  55. friend Boolean operator ==(const Bstream&, const Bstream&);
  56. friend Boolean operator !=(const Bstream&, const Bstream&);
  57. friend Bstream operator +(const Bstream&, const Bstream&);
  58. Bstream& operator +=(const Bstream&);
  59. int consume(int ); // Consume from beginning of stream
  60. int truncate(int ); // truncate from end of stream
  61. int getlength() const;
  62. byte *getdatap() const;
  63. String getstr() const;
  64. int fetchbyte(byte &);
  65. int peekbyte(byte &);
  66. byte last() const;
  67. Bstream replace(const Bstream&, const Bstream&) const;
  68. // Replace string from with string to
  69. int store(const char *) const; // Save binary string in file
  70. int write(FILE *f) const; // Write binary string to a FILE ptr.
  71. void print() const; // Hex dump
  72. void prints() const; // print as ASCII string
  73. void printhexint() const; // Print as a MP Hex integer
  74. void printdecint() const; // print as a MP Decimal integer
  75. String gethexstr() const; // Hex output as integer to a String
  76. String getdecstr() const; // Decimal output as integer to a String
  77. };
  78. extern Bstream File_to_Bstr(const char *);
  79. extern String File_to_String(const char *);
  80. #endif BSTREAM_H