C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/io/AbstractOctetArrayReadBuffer.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
00006  */
00007 #ifndef COH_ABSTRACT_OCTET_ARRAY_READ_BUFFER_HPP
00008 #define COH_ABSTRACT_OCTET_ARRAY_READ_BUFFER_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/AbstractReadBuffer.hpp"
00013 
00014 // ----- forward declarations -----------------------------------------------
00015 
00016 COH_OPEN_NAMESPACE2(coherence,util)
00017 
00018 class Binary;
00019 
00020 COH_CLOSE_NAMESPACE2
00021 
00022 COH_OPEN_NAMESPACE2(coherence,io)
00023 
00024 
00025 /**
00026 * The AbstractOctetArrayReadBuffer abstract class is intended to serve as
00027 * a base class for the following:
00028 * <ol>
00029 * <li>the pre-existing Binary class</li>
00030 * <li>a new byte[] based class that does not attempt to add the immutability
00031 * aspect provided by the Binary class</li>
00032 * </ol>
00033 *
00034 * This implementation is not intended to be thread safe.
00035 *
00036 * @author phf  2011.03.15
00037 *
00038 * @since Coherence 3.7.1
00039 */
00040 class COH_EXPORT AbstractOctetArrayReadBuffer
00041     : public abstract_spec<AbstractOctetArrayReadBuffer,
00042         extends<AbstractReadBuffer> >
00043     {
00044     // ----- constants ------------------------------------------------------
00045 
00046     public:
00047         /**
00048         * The largest possible value of type size32_t.
00049         */
00050         static const size32_t npos = size32_t(-1);
00051 
00052 
00053     // ----- handle definitions (needed for nested classes) -----------------
00054 
00055     public:
00056         typedef this_spec::Handle Handle;
00057         typedef this_spec::View   View;
00058         typedef this_spec::Holder Holder;
00059 
00060         /**
00061         * Binary View definition.
00062         */
00063         typedef TypedHandle<const coherence::util::Binary> BinaryView;
00064 
00065 
00066     // ----- constructors ---------------------------------------------------
00067 
00068     protected:
00069         /**
00070         * Default constructor; intended for deserialization use by
00071         * subclasses.
00072         *
00073         * Note that this default constructor leaves the buffer in an invalid
00074         * state.
00075         */
00076         AbstractOctetArrayReadBuffer();
00077 
00078         /**
00079         * Construct an AbstractOctetArrayReadBuffer on a portion of an octet
00080         * Array.
00081         *
00082         * @param vab  an Array of octets
00083         * @param of   an offset into the octet array
00084         * @param cb   the number of octets to utilize or npos for
00085         *             (vab->length - of)
00086         *
00087         * @throws  IndexOutOfBoundsException if <code>of + cb</code> is
00088         *          larger than <code>vab->length</code>
00089         * @throws  NullPointerException if <code>vab</code> is
00090         *          <code>NULL</code>
00091         */
00092         AbstractOctetArrayReadBuffer(Array<octet_t>::View vab, size32_t of = 0,
00093                 size32_t cb = npos);
00094 
00095 
00096     // ----- ReadBuffer interface -------------------------------------------
00097 
00098     public:
00099         /**
00100         * {@inheritDoc}
00101         */
00102         virtual size32_t length() const;
00103 
00104         /**
00105         * {@inheritDoc}
00106         */
00107         virtual octet_t read(size32_t of) const;
00108 
00109         /**
00110         * {@inheritDoc}
00111         */
00112         virtual void read(size32_t ofBegin, size32_t ofEnd,
00113                 Array<octet_t>::Handle habDest, size32_t ofDest) const;
00114 
00115         /**
00116         * {@inheritDoc}
00117         */
00118         virtual BinaryView toBinary() const;
00119 
00120         /**
00121         * {@inheritDoc}
00122         */
00123         virtual BinaryView toBinary(size32_t of, size32_t cb) const;
00124 
00125         /**
00126         * {@inheritDoc}
00127         */
00128         virtual Array<octet_t>::View toOctetArray(size32_t of, size32_t cb) const;
00129 
00130         /**
00131         * {@inheritDoc}
00132         */
00133         using AbstractReadBuffer::toOctetArray;
00134 
00135 
00136     // ----- Object interface -----------------------------------------------
00137 
00138     public:
00139         /**
00140         * {@inheritDoc}
00141         */
00142         virtual bool equals(Object::View v) const;
00143 
00144 
00145     // ----- factory methods ------------------------------------------------
00146 
00147     protected:
00148         /**
00149         * {@inheritDoc}
00150         */
00151         virtual BufferInput::Handle instantiateBufferInput() const;
00152 
00153 
00154     // ----- internal methods -----------------------------------------------
00155 
00156     protected:
00157         /**
00158         * Reset the portion of the octet array the ReadBuffer operates upon.
00159         *
00160         * @param of  an offset into the octet array
00161         * @param cb  the number of octets to utilize
00162         *
00163         * @throws  IndexOutOfBoundsException  if <code>of + cb</code> is
00164         *          larger than the buffer's length
00165         */
00166         virtual void resetRange(size32_t of, size32_t cb);
00167 
00168 
00169     // ----- OctetArrayBufferInput inner class ------------------------------
00170 
00171     public:
00172         /**
00173         * This is an implementation of the BufferInput interface on top of an
00174         * octet array.
00175         *
00176         * @author jh   2008.01.03
00177         * @author phf  2011.03.22
00178         */
00179         class COH_EXPORT OctetArrayBufferInput
00180             : public class_spec<OctetArrayBufferInput,
00181                 extends<AbstractBufferInput> >
00182             {
00183             friend class factory<OctetArrayBufferInput>;
00184 
00185             // ----- constructors ---------------------------------------
00186 
00187             protected:
00188                 /**
00189                 * Create a new OctetArrayBufferInput instance that
00190                 * delegates to the given AbstractOctetArrayReadBuffer.
00191                 *
00192                 * @param vBuf  the delegate ReadBuffer
00193                 */
00194                 OctetArrayBufferInput(AbstractOctetArrayReadBuffer::View vBuf);
00195 
00196             // ----- BufferInput interface ------------------------------
00197 
00198             public:
00199                 /**
00200                 * {@inheritDoc}
00201                 */
00202                 using AbstractBufferInput::read;
00203 
00204                 /**
00205                 * {@inheritDoc}
00206                 */
00207                 virtual octet_t read();
00208 
00209                 /**
00210                 * {@inheritDoc}
00211                 */
00212                 virtual void read(Array<octet_t>::Handle hab, size32_t of,
00213                         size32_t cb);
00214 
00215                 /**
00216                 * {@inheritDoc}
00217                 */
00218                 virtual wchar16_t readChar16();
00219 
00220                 /**
00221                 * {@inheritDoc}
00222                 */
00223                 virtual int16_t readInt16();
00224 
00225                 /**
00226                 * {@inheritDoc}
00227                 */
00228                 virtual int32_t readInt32();
00229 
00230                 /**
00231                 * {@inheritDoc}
00232                 */
00233                 virtual int64_t readInt64();
00234 
00235                 /**
00236                 * {@inheritDoc}
00237                 */
00238                 virtual float32_t readFloat32();
00239 
00240                 /**
00241                 * {@inheritDoc}
00242                 */
00243                 virtual float64_t readFloat64();
00244 
00245             // ----- internal methods -----------------------------------
00246 
00247             protected:
00248                 /**
00249                 * {@inheritDoc}
00250                 */
00251                 virtual String::View convertUTF(size32_t of, size32_t cb) const;
00252 
00253             // ----- data members ---------------------------------------
00254 
00255             protected:
00256                 /**
00257                  * The delegate read buffer.
00258                  */
00259                 FinalView<AbstractOctetArrayReadBuffer> f_vBuf;
00260 
00261                 /**
00262                 * The delegate's octet array that holds the binary data.
00263                 * This value should not be changed.
00264                 */
00265                 FinalView<Array<octet_t> > f_vab;
00266             };
00267 
00268 
00269     // ----- data members ---------------------------------------------------
00270 
00271     protected:
00272         /**
00273         * The octet array that holds the binary data.
00274         * This value should not be changed.
00275         */
00276         FinalView<Array<octet_t> > f_vab;
00277 
00278         /**
00279         * Offset into the octet array at which the binary data is located.
00280         * This value should not be changed.
00281         */
00282         size32_t m_of;
00283 
00284         /**
00285         * Number of octets in the octet array that belong to this ReadBuffer
00286         * object.
00287         * This value should not be changed.
00288         */
00289         size32_t m_cb;
00290     };
00291 
00292 COH_CLOSE_NAMESPACE2
00293 
00294 #endif // COH_ABSTRACT_OCTET_ARRAY_READ_BUFFER_HPP
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.