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

F79659-03

coherence/io/OctetArrayWriteBuffer.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_OCTET_ARRAY_WRITE_BUFFER_HPP
00008 #define COH_OCTET_ARRAY_WRITE_BUFFER_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/AbstractWriteBuffer.hpp"
00013 #include "coherence/io/ReadBuffer.hpp"
00014 
00015 #include <limits>
00016 
00017 COH_OPEN_NAMESPACE2(coherence,io)
00018 
00019 
00020 /**
00021 * OctetArrayWriteBuffer is an implementation of WriteBuffer on an octet
00022 * array. It is designed to support both fixed length buffers and resizable
00023 * buffers.
00024 *
00025 * This implementation is explicitly not thread-safe.
00026 *
00027 * @author jh  2007.01.11
00028 */
00029 class COH_EXPORT OctetArrayWriteBuffer
00030     : public cloneable_spec<OctetArrayWriteBuffer,
00031         extends<AbstractWriteBuffer> >
00032     {
00033     friend class factory<OctetArrayWriteBuffer>;
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     // ----- constructors ---------------------------------------------------
00044 
00045     protected:
00046         /**
00047         * Construct an OctetArrayWriteBuffer on an octet array.
00048         *
00049         * @param hab  an octet array
00050         *
00051         * @throws NullPointerException if <tt>hab</tt> is NULL
00052         */
00053         OctetArrayWriteBuffer(Array<octet_t>::Handle hab);
00054 
00055         /**
00056         * Construct an OctetArrayWriteBuffer with a certain initial capacity
00057         * and a certain maximum capacity.
00058         *
00059         * @param cbCap  initial capacity
00060         * @param cbMax  maximum capacity
00061         *
00062         * @throws IllegalArgumentException if <tt>cbCap</tt> is greater than
00063         *         <tt>cbMax</tt>
00064         */
00065         OctetArrayWriteBuffer(size32_t cbCap,
00066                 size32_t cbMax = (std::numeric_limits<size32_t>::max)());
00067 
00068         /**
00069         * Copy constructor.
00070         */
00071         OctetArrayWriteBuffer(const OctetArrayWriteBuffer& that);
00072 
00073 
00074     // ----- WriteBuffer interface ------------------------------------------
00075 
00076     public:
00077         /**
00078         * {@inheritDoc}
00079         */
00080         virtual size32_t length() const;
00081 
00082         /**
00083         * {@inheritDoc}
00084         */
00085         virtual size32_t getCapacity() const;
00086 
00087         /**
00088         * {@inheritDoc}
00089         */
00090         virtual size32_t getMaximumCapacity() const;
00091 
00092         /**
00093         * {@inheritDoc}
00094         */
00095         virtual void write(size32_t ofDest, octet_t b);
00096 
00097         /**
00098         * {@inheritDoc}
00099         */
00100         virtual void write(size32_t ofDest, Array<octet_t>::View vabSrc,
00101                 size32_t ofSrc, size32_t cbSrc);
00102 
00103         /**
00104         * {@inheritDoc}
00105         */
00106         virtual void write(size32_t ofDest, ReadBuffer::View vBufSrc,
00107                 size32_t ofSrc, size32_t cbSrc);
00108 
00109         /**
00110         * {@inheritDoc}
00111         */
00112         using AbstractWriteBuffer::write;
00113 
00114         /**
00115         * {@inheritDoc}
00116         */
00117         virtual void retain(size32_t of, size32_t cb);
00118 
00119         /**
00120         * {@inheritDoc}
00121         */
00122         using AbstractWriteBuffer::retain;
00123 
00124         /**
00125         * {@inheritDoc}
00126         */
00127         virtual ReadBuffer::View getUnsafeReadBuffer() const;
00128 
00129 
00130     // ----- internal methods -----------------------------------------------
00131 
00132     protected:
00133         /**
00134         * {@inheritDoc}
00135         */
00136         virtual BufferOutput::Handle instantiateBufferOutput();
00137 
00138         /**
00139         * Validate the ranges for the passed bounds and make sure that the
00140         * underlying array is big enough to handle them.
00141         *
00142         * @param of  the offset that data is about to be written to
00143         * @param cb  the length of the data that is about to be written
00144         */
00145         virtual void checkBounds(size32_t of, size32_t cb);
00146 
00147         /**
00148         * Grow the underlying octet array to at least the specified size.
00149         *
00150         * @param cbCap  the required or requested capacity
00151         */
00152         virtual void grow(size32_t cbCap);
00153 
00154         /**
00155         * Update the length if the passed length is greater than the current
00156         * buffer length.
00157         *
00158         * @param cb  the count of the last octet written (or the index of
00159         *            the next octet to write)
00160         */
00161         virtual void updateLength(size32_t cb);
00162 
00163 
00164     // ----- OctetArrayBufferOutput inner class -----------------------------
00165 
00166     public:
00167         /**
00168         * OctetArrayBufferOutput is an implementation of BufferOutput
00169         * optimized for writing to the buffer's underlying octet array. A
00170         * BufferOutput implementation that delegates to a BufferOutput
00171         * implementation, except that its offset range is shifted and
00172         * limited.
00173         *
00174         * @author jh  2008.01.11
00175         */
00176         class COH_EXPORT OctetArrayBufferOutput
00177             : public class_spec<OctetArrayBufferOutput,
00178                 extends<AbstractBufferOutput> >
00179             {
00180             friend class factory<OctetArrayBufferOutput>;
00181 
00182             // ----- constructors ---------------------------------------
00183 
00184             protected:
00185                 /**
00186                 * Create a new OctetArrayBufferOutput instance that delegates
00187                 * to the given OctetArrayWriteBuffer.
00188                 *
00189                 * @param hBuf  the delegate WriteBuffer
00190                 */
00191                 OctetArrayBufferOutput(OctetArrayWriteBuffer::Handle hBuf);
00192 
00193             // ----- BufferOutput interface -----------------------------
00194 
00195             public:
00196                 /**
00197                 * {@inheritDoc}
00198                 */
00199                 virtual void writeChar16(wchar16_t ch);
00200 
00201                 /**
00202                 * {@inheritDoc}
00203                 */
00204                 virtual void writeString(String::View vs);
00205 
00206                 /**
00207                 * {@inheritDoc}
00208                 */
00209                 virtual void writeInt16(int16_t n);
00210 
00211                 /**
00212                 * {@inheritDoc}
00213                 */
00214                 virtual void writeInt32(int32_t n);
00215 
00216                 /**
00217                 * {@inheritDoc}
00218                 */
00219                 virtual void writeInt64(int64_t n);
00220 
00221                 /**
00222                 * {@inheritDoc}
00223                 */
00224                 virtual void writeFloat32(float32_t fl);
00225 
00226                 /**
00227                 * {@inheritDoc}
00228                 */
00229                 virtual void writeFloat64(float64_t dfl);
00230 
00231             // ----- internal methods -----------------------------------
00232 
00233             protected:
00234                 /**
00235                 * Move the offset within the stream forward.
00236                 *
00237                 * @param cb  the number of octets to advance the offset
00238                 */
00239                 virtual void moveOffset(size32_t cb);
00240 
00241             // ----- data members ---------------------------------------
00242 
00243             protected:
00244                 /**
00245                  * The delegate write buffer.
00246                  */
00247                 FinalHandle<OctetArrayWriteBuffer> f_hBuf;
00248             };
00249 
00250 
00251     // ----- Object interface -----------------------------------------------
00252 
00253     protected:
00254         /**
00255         * {@inheritDoc}
00256         */
00257         virtual void onEscape(bool fEscaped) const;
00258 
00259 
00260     // ----- data members ---------------------------------------------------
00261 
00262     protected:
00263         /**
00264         * The octet array that holds the binary data.
00265         */
00266         MemberHandle<Array<octet_t> > m_hab;
00267 
00268         /**
00269          * Raw pointer to byte[] within m_hab, or NULL if this object is
00270          * escaped which would make its use impossible to prove as safe.
00271          */
00272         mutable octet_t* m_pab;
00273 
00274         /**
00275          * The cached size of m_hab.
00276          */
00277         size32_t m_cbab;
00278 
00279         /**
00280         * Number of octets in the octet array that have been written by this
00281         * WriteBuffer. This is the length.
00282         */
00283         size32_t m_cb;
00284 
00285         /**
00286         * Number of octets that the octet array can be grown to. This is the
00287         * maximum capacity.
00288         */
00289         size32_t m_cbMax;
00290 
00291         /**
00292         * Cached ReadBuffer to quickly provide an answer to
00293         * {@link #getUnsafeReadBuffer()}.
00294         */
00295         mutable MemberHandle<ReadBuffer> m_hBufUnsafe;
00296     };
00297 
00298 COH_CLOSE_NAMESPACE2
00299 
00300 #endif // COH_OCTET_ARRAY_WRITE_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.