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

F79659-03

coherence/io/DelegatingWriteBuffer.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_DELEGATING_WRITE_BUFFER_HPP
00008 #define COH_DELEGATING_WRITE_BUFFER_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/AbstractWriteBuffer.hpp"
00013 #include "coherence/io/WriteBuffer.hpp"
00014 
00015 COH_OPEN_NAMESPACE2(coherence,io)
00016 
00017 
00018 /**
00019 * A DelegatingWriteBuffer is a WriteBuffer that writes through to an
00020 * underlying (or "containing") WriteBuffer. Basically, it allows a process
00021 * that is writing to a WriteBuffer to ask for a "protected" sub-portion of
00022 * that WriteBuffer to hand to a second process, such that the second process
00023 * can not affect (or even read from) the WriteBuffer outside of the portion
00024 * that the first process explicitly designated as viewable and modifiable.
00025 * <p>
00026 * This implementation is explicitly not thread-safe.
00027 *
00028 * @author jh  2007.01.10
00029 */
00030 class COH_EXPORT DelegatingWriteBuffer
00031     : public cloneable_spec<DelegatingWriteBuffer,
00032         extends<AbstractWriteBuffer> >
00033     {
00034     friend class factory<DelegatingWriteBuffer>;
00035 
00036     // ----- handle definitions (needed for nested classes) -----------------
00037 
00038     public:
00039         typedef this_spec::Handle Handle;
00040         typedef this_spec::View   View;
00041         typedef this_spec::Holder Holder;
00042 
00043 
00044     // ----- constructors ---------------------------------------------------
00045 
00046     protected:
00047         /**
00048         * Construct a DelegatingWriteBuffer that will delegate to the
00049         * containing WriteBuffer.
00050         *
00051         * @param hBuf  the containing WriteBuffer
00052         * @param of    the offset within the containing WriteBuffer that this
00053         *              WriteBuffer is starting at
00054         * @param cb    the maximum capacity for this WriteBuffer
00055         */
00056         DelegatingWriteBuffer(WriteBuffer::Handle hBuf, size32_t of,
00057                 size32_t cb);
00058 
00059         /**
00060         * Copy constructor.
00061         */
00062         DelegatingWriteBuffer(const DelegatingWriteBuffer& that);
00063 
00064 
00065     // ----- WriteBuffer interface ------------------------------------------
00066 
00067     public:
00068         /**
00069         * {@inheritDoc}
00070         */
00071         virtual size32_t length() const;
00072 
00073         /**
00074         * {@inheritDoc}
00075         */
00076         virtual size32_t getCapacity() const;
00077 
00078         /**
00079         * {@inheritDoc}
00080         */
00081         virtual size32_t getMaximumCapacity() const;
00082 
00083         /**
00084         * {@inheritDoc}
00085         */
00086         virtual void write(size32_t ofDest, octet_t b);
00087 
00088         /**
00089         * {@inheritDoc}
00090         */
00091         virtual void write(size32_t ofDest, Array<octet_t>::View vabSrc,
00092                 size32_t ofSrc, size32_t cbSrc);
00093 
00094         /**
00095         * {@inheritDoc}
00096         */
00097         virtual void write(size32_t ofDest, ReadBuffer::View vBufSrc,
00098                 size32_t ofSrc, size32_t cbSrc);
00099 
00100         /**
00101         * {@inheritDoc}
00102         */
00103         using AbstractWriteBuffer::write;
00104 
00105         /**
00106         * {@inheritDoc}
00107         */
00108         virtual void retain(size32_t of, size32_t cb);
00109 
00110         /**
00111         * {@inheritDoc}
00112         */
00113         using AbstractWriteBuffer::retain;
00114 
00115         /**
00116         * {@inheritDoc}
00117         */
00118         virtual void clear();
00119 
00120         /**
00121         * {@inheritDoc}
00122         */
00123         virtual ReadBuffer::View getUnsafeReadBuffer() const;
00124 
00125         /**
00126         * {@inheritDoc}
00127         */
00128         virtual Array<octet_t>::View toOctetArray() const;
00129 
00130 
00131     // ----- internal methods -----------------------------------------------
00132 
00133     protected:
00134         /**
00135         * {@inheritDoc}
00136         */
00137         virtual BufferOutput::Handle instantiateBufferOutput();
00138 
00139         /**
00140         * Test an offset and length of data to write to see if it can be
00141         * written to this buffer.
00142         *
00143         * @param of  offset to write data at
00144         * @param cb  length in octets of data
00145         */
00146         virtual void checkBounds(size32_t of, size32_t cb) const;
00147 
00148         /**
00149         * Update the length if the passed length is greater than the current
00150         * buffer length.
00151         *
00152         * @param cb  the possible new length
00153         */
00154         virtual void updateLength(size32_t cb);
00155 
00156 
00157     // ----- DelegatingBufferOutput inner class -----------------------------
00158 
00159     public:
00160         /**
00161         * A BufferOutput implementation that delegates to a BufferOutput
00162         * implementation, except that its offset range is shifted and
00163         * limited.
00164         *
00165         * @author jh  2008.01.10
00166         */
00167         class COH_EXPORT DelegatingBufferOutput
00168             : public class_spec<DelegatingBufferOutput,
00169                 extends<AbstractBufferOutput> >
00170             {
00171             friend class factory<DelegatingBufferOutput>;
00172 
00173             // ----- constructors ---------------------------------------
00174 
00175             protected:
00176                 /**
00177                 * Create a new DelegatingBufferOutput instance that delegates
00178                 * to the BufferOutput of the underlying WriteBuffer of the
00179                 * given DelegatingWriteBuffer.
00180                 *
00181                 * @param hBuf  the delegate WriteBuffer
00182                 */
00183                 DelegatingBufferOutput(DelegatingWriteBuffer::Handle hBuf);
00184 
00185             // ----- BufferOutput interface -----------------------------
00186 
00187             public:
00188                 /**
00189                 * {@inheritDoc}
00190                 */
00191                 using AbstractBufferOutput::write;
00192 
00193                 /**
00194                 * {@inheritDoc}
00195                 */
00196                 virtual void write(octet_t b);
00197 
00198                 /**
00199                 * {@inheritDoc}
00200                 */
00201                 virtual void write(Array<octet_t>::View vab, size32_t of,
00202                     size32_t cb);
00203 
00204                 /**
00205                 * {@inheritDoc}
00206                 */
00207                 virtual void writeBuffer(ReadBuffer::View vBuf);
00208 
00209                 /**
00210                 * {@inheritDoc}
00211                 */
00212                 virtual void writeBuffer(ReadBuffer::View vBuf, size32_t of,
00213                         size32_t cb);
00214 
00215                 /**
00216                 * {@inheritDoc}
00217                 */
00218                 virtual void writeBoolean(bool f);
00219 
00220                 /**
00221                 * {@inheritDoc}
00222                 */
00223                 virtual void writeChar16(wchar16_t ch);
00224 
00225                 /**
00226                 * {@inheritDoc}
00227                 */
00228                 virtual void writeFloat32(float32_t fl);
00229 
00230                 /**
00231                 * {@inheritDoc}
00232                 */
00233                 virtual void writeFloat64(float64_t dfl);
00234 
00235             // ----- internal methods -----------------------------------
00236 
00237             protected:
00238                 /**
00239                 * Move the offset within the stream forward.
00240                 *
00241                 * @param cb  the number of octets to advance the offset
00242                 */
00243                 virtual void moveOffset(size32_t cb);
00244 
00245             // ----- data members ---------------------------------------
00246 
00247             protected:
00248                 /**
00249                 * The BufferOutput to delegate to.
00250                 */
00251                 FinalHandle<BufferOutput> f_hOut;
00252             };
00253 
00254 
00255     // ----- data members ---------------------------------------------------
00256 
00257     protected:
00258         /**
00259         * The WriteBuffer to delegate to; the "containing" WriteBuffer.
00260         */
00261         FinalHandle<WriteBuffer> f_hBuf;
00262 
00263         /**
00264         * Offset into the containing WriteBuffer where this WriteBuffer
00265         * starts.
00266         */
00267         size32_t m_ofStart;
00268 
00269         /**
00270         * Length in octets of this WriteBuffer.
00271         */
00272         size32_t m_cb;
00273 
00274         /**
00275         * Maximum number of octets in this WriteBuffer.
00276         */
00277         size32_t m_cbMax;
00278     };
00279 
00280 COH_CLOSE_NAMESPACE2
00281 
00282 #endif // COH_DELEGATING_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.