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

F79659-03

coherence/io/AbstractReadBuffer.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_READ_BUFFER_HPP
00008 #define COH_ABSTRACT_READ_BUFFER_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/ReadBuffer.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 * Abstract base implementation of the ReadBuffer interface.
00027 *
00028 * @author jh  2007.12.31
00029 */
00030 class COH_EXPORT AbstractReadBuffer
00031     : public abstract_spec<AbstractReadBuffer,
00032         extends<Object>,
00033         implements<ReadBuffer> >
00034     {
00035     // ----- handle definitions (needed for nested classes) -----------------
00036 
00037     public:
00038         typedef this_spec::Handle Handle;
00039         typedef this_spec::View   View;
00040         typedef this_spec::Holder Holder;
00041 
00042         /**
00043         * Binary View definition.
00044         */
00045         typedef TypedHandle<const coherence::util::Binary> BinaryView;
00046 
00047         /**
00048         * Binary Handle definition.
00049         */
00050         typedef TypedHandle<coherence::util::Binary> BinaryHandle;
00051 
00052 
00053     // ----- ReadBuffer interface -------------------------------------------
00054 
00055     public:
00056         /**
00057         * {@inheritDoc}
00058         */
00059         virtual BufferInput::Handle getBufferInput() const;
00060 
00061         /**
00062         * {@inheritDoc}
00063         */
00064         virtual ReadBuffer::View getReadBuffer(size32_t of, size32_t cb) const;
00065 
00066         /**
00067         * {@inheritDoc}
00068         */
00069         virtual BinaryView toBinary() const;
00070 
00071         /**
00072         * {@inheritDoc}
00073         */
00074         virtual BinaryView toBinary(size32_t of, size32_t cb) const;
00075 
00076         /**
00077         * {@inheritDoc}
00078         */
00079         virtual Array<octet_t>::View toOctetArray() const;
00080 
00081         /**
00082         * {@inheritDoc}
00083         */
00084         virtual Array<octet_t>::View toOctetArray(size32_t of, size32_t cb) const;
00085 
00086 
00087     // ----- Object interface -----------------------------------------------
00088 
00089     public:
00090         /**
00091         * {@inheritDoc}
00092         */
00093         virtual bool equals(Object::View v) const;
00094 
00095 
00096     // ----- internal methods -----------------------------------------------
00097 
00098     protected:
00099         /**
00100         * Factory method: Instantiate a ReadBuffer for a portion of this
00101         * ReadBuffer.
00102         *
00103         * @param of  the beginning index, inclusive
00104         * @param cb  the number of bytes to include in the resulting
00105         *            ReadBuffer
00106         *
00107         * @return a ReadBuffer that represents a portion of this ReadBuffer
00108         */
00109         virtual ReadBuffer::View instantiateReadBuffer(size32_t of,
00110                 size32_t cb) const = 0;
00111 
00112         /**
00113         * Factory method: Instantiate a BufferInput object to read data from
00114         * the ReadBuffer.
00115         *
00116         * @return a new BufferInput reading from this ReadBuffer
00117         */
00118         virtual BufferInput::Handle instantiateBufferInput() const;
00119 
00120         /**
00121         * Check if the specified read is within bounds.
00122         *
00123         * @param of  the absolute offset of the read operation
00124         * @param cb  the length in bytes of the read operation
00125         *
00126         * @throws IndexOutOfBoundsException if the specified read is not
00127         *         within bounds
00128         */
00129         virtual void checkBounds(size32_t of, size32_t cb) const;
00130 
00131 
00132     // ----- AbstractBufferInput inner class --------------------------------
00133 
00134     public:
00135         /**
00136         * This is an implementation of the BufferInput interface that
00137         * delegates its work back to its ReadBuffer.
00138         *
00139         * @author jh  2007.12.31
00140         */
00141         class COH_EXPORT AbstractBufferInput
00142             : public class_spec<AbstractBufferInput,
00143                 extends<Object>,
00144                 implements<BufferInput> >
00145             {
00146             friend class factory<AbstractBufferInput>;
00147 
00148             // ----- constructors ---------------------------------------
00149 
00150             protected:
00151                 /**
00152                 * Create a new AbstractBufferInput instance that delegates
00153                 * to the given AbstractReadBuffer.
00154                 *
00155                 * @param vBuf  the delegate AbstractReadBuffer
00156                 */
00157                 AbstractBufferInput(AbstractReadBuffer::View vBuf);
00158 
00159 
00160             // ----- BufferInput interface ------------------------------
00161 
00162             public:
00163                 /**
00164                 * {@inheritDoc}
00165                 */
00166                 virtual ReadBuffer::View getBuffer() const;
00167 
00168                 /**
00169                 * {@inheritDoc}
00170                 */
00171                 virtual size32_t getOffset() const;
00172 
00173                 /**
00174                 * {@inheritDoc}
00175                 */
00176                 virtual void setOffset(size32_t of);
00177 
00178                 /**
00179                 * {@inheritDoc}
00180                 */
00181                 virtual size32_t available() const;
00182 
00183                 /**
00184                 * {@inheritDoc}
00185                 */
00186                 virtual void skip(size32_t cb);
00187 
00188                 /**
00189                 * {@inheritDoc}
00190                 */
00191                 virtual octet_t read();
00192 
00193                 /**
00194                 * {@inheritDoc}
00195                 */
00196                 virtual void read(Array<octet_t>::Handle hab);
00197 
00198                 /**
00199                 * {@inheritDoc}
00200                 */
00201                 virtual void read(Array<octet_t>::Handle hab, size32_t of,
00202                         size32_t cb);
00203 
00204                 /**
00205                 * {@inheritDoc}
00206                 */
00207                 virtual ReadBuffer::View readBuffer(size32_t cb);
00208 
00209                 /**
00210                 * {@inheritDoc}
00211                 */
00212                 virtual bool readBoolean();
00213 
00214                 /**
00215                 * {@inheritDoc}
00216                 */
00217                 virtual wchar16_t readChar16();
00218 
00219                 /**
00220                 * {@inheritDoc}
00221                 */
00222                 virtual String::View readString();
00223 
00224                 /**
00225                 * {@inheritDoc}
00226                 */
00227                 virtual int16_t readInt16();
00228 
00229                 /**
00230                 * {@inheritDoc}
00231                 */
00232                 virtual int32_t readInt32();
00233 
00234                 /**
00235                 * {@inheritDoc}
00236                 */
00237                 virtual int64_t readInt64();
00238 
00239                 /**
00240                 * {@inheritDoc}
00241                 */
00242                 virtual float32_t readFloat32();
00243 
00244                 /**
00245                 * {@inheritDoc}
00246                 */
00247                 virtual float64_t readFloat64();
00248 
00249             // ----- internal methods -----------------------------------
00250 
00251             protected:
00252                 /**
00253                 * Update the internal stream offset.
00254                 *
00255                 * @param of  the new offset
00256                 */
00257                 virtual void setOffsetInternal(size32_t of);
00258 
00259                 /**
00260                 * Reads the specified-length UTF-8 data and converts it to a
00261                 * String value.
00262                 *
00263                 * @param cb  the number of bytes that the UTF data takes up
00264                 *            in the stream
00265                 *
00266                 * @return a String value
00267                 *
00268                 * @throws UTFDataFormatException if the bytes that were
00269                 *         read were not a valid UTF-8 encoded string
00270                 * @throws EOFException if the value could not be read because
00271                 *         no more data remains to be read
00272                 * @throws IOException if an I/O error occurs
00273                 */
00274                 virtual String::View readUTF(size32_t cb);
00275 
00276                 /**
00277                 * Convert a UTF-8 encoded section of the binary stream into a
00278                 * String.
00279                 *
00280                 * @param of  the offset within the stream
00281                 * @param cb  the length in bytes within the stream
00282                 *
00283                 * @return the String value
00284                 *
00285                 * @throws IOException on convertion error
00286                 */
00287                 virtual String::View convertUTF(size32_t of, size32_t cb) const;
00288 
00289             // ----- data members ---------------------------------------
00290 
00291             protected:
00292                 /**
00293                 * The delegate AbstractReadBuffer.
00294                 */
00295                 FinalView<AbstractReadBuffer> f_vBuf;
00296 
00297                 /**
00298                 * Current stream offset into the delegate AbstractReadBuffer.
00299                 */
00300                 size32_t m_of;
00301             };
00302 
00303 
00304     // ----- constants ------------------------------------------------------
00305 
00306     public:
00307         /**
00308         * An empty octet array (by definition immutable).
00309         */
00310         static Array<octet_t>::Handle getEmptyOctetArray();
00311 
00312         /**
00313         * An empty Binary object.
00314         *
00315         * @since Coherence 3.7.1
00316         */
00317         static BinaryHandle getEmptyBinary();
00318 
00319         /**
00320         * A zero-length ReadBuffer (by definition immutable).
00321         */
00322         static ReadBuffer::Handle getEmptyReadBuffer();
00323     };
00324 
00325 COH_CLOSE_NAMESPACE2
00326 
00327 #endif // COH_ABSTRACT_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.