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

F79659-03

coherence/io/pof/PofBufferWriter.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_POF_BUFFER_WRITER_HPP
00008 #define COH_POF_BUFFER_WRITER_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/WriteBuffer.hpp"
00013 #include "coherence/io/pof/PofContext.hpp"
00014 #include "coherence/io/pof/PofHelper.hpp"
00015 #include "coherence/io/pof/PofWriter.hpp"
00016 #include "coherence/io/pof/RawDate.hpp"
00017 #include "coherence/io/pof/RawDateTime.hpp"
00018 #include "coherence/io/pof/RawDayTimeInterval.hpp"
00019 #include "coherence/io/pof/RawTime.hpp"
00020 #include "coherence/io/pof/RawTimeInterval.hpp"
00021 #include "coherence/io/pof/RawYearMonthInterval.hpp"
00022 #include "coherence/io/pof/ReferenceLibrary.hpp"
00023 #include "coherence/io/pof/WritingPofHandler.hpp"
00024 #include "coherence/util/Binary.hpp"
00025 #include "coherence/util/Collection.hpp"
00026 #include "coherence/util/LongArray.hpp"
00027 #include "coherence/util/Map.hpp"
00028 
00029 COH_OPEN_NAMESPACE3(coherence,io,pof)
00030 
00031 using coherence::io::WriteBuffer;
00032 using coherence::util::Binary;
00033 using coherence::util::Collection;
00034 using coherence::util::LongArray;
00035 using coherence::util::Map;
00036 
00037 
00038 /**
00039 * PofWriter implementation that writes POF-encoded data to a
00040 * WriteBuffer::BufferOutput.
00041 *
00042 * @author jh  2008.04.09
00043 */
00044 class COH_EXPORT PofBufferWriter
00045     : public class_spec<PofBufferWriter,
00046         extends<PofHelper>,
00047         implements<PofWriter> >
00048     {
00049     friend class factory<PofBufferWriter>;
00050 
00051     // ----- constructors ---------------------------------------------------
00052 
00053     protected:
00054         /**
00055         * Construct a new PofBufferWriter that will write a POF stream to the
00056         * passed BufferOutput object.
00057         *
00058         * @param hOut  the BufferOutput object to write to; must not be NULL
00059         * @param vCtx  the PofContext used by the new PofBufferWriter to
00060         *              serialize user types; must not be NULL
00061         */
00062         PofBufferWriter(WriteBuffer::BufferOutput::Handle hOut,
00063                 PofContext::View vCtx);
00064 
00065         /**
00066         * Construct a new PofBufferWriter that will write a POF stream using
00067         * the passed WritingPofHandler.
00068         *
00069         * @param hHandler  the WritingPofHandler used for writing; must not
00070         *                  be NULL
00071         * @param vCtx      the PofContext used by the new PofBufferWriter to
00072         *                  serialize user types; must not be NULL
00073         */
00074         PofBufferWriter(WritingPofHandler::Handle hHandler,
00075                 PofContext::View vCtx);
00076 
00077 
00078     // ----- PofWriter interface --------------------------------------------
00079 
00080     public:
00081         /**
00082         * {@inheritDoc}
00083         */
00084         virtual void writeBoolean(int32_t iProp, bool f);
00085 
00086         /**
00087         * {@inheritDoc}
00088         */
00089         virtual void writeOctet(int32_t iProp, octet_t b);
00090 
00091         /**
00092         * {@inheritDoc}
00093         */
00094         virtual void writeChar16(int32_t iProp, wchar16_t ch);
00095 
00096         /**
00097         * {@inheritDoc}
00098         */
00099         virtual void writeInt16(int32_t iProp, int16_t n);
00100 
00101         /**
00102         * {@inheritDoc}
00103         */
00104         virtual void writeInt32(int32_t iProp, int32_t n);
00105 
00106         /**
00107         * {@inheritDoc}
00108         */
00109         virtual void writeInt64(int32_t iProp, int64_t l);
00110 
00111         /**
00112         * {@inheritDoc}
00113         */
00114         virtual void writeFloat32(int32_t iProp, float32_t fl);
00115 
00116         /**
00117         * {@inheritDoc}
00118         */
00119         virtual void writeFloat64(int32_t iProp, float64_t dfl);
00120 
00121         /**
00122         * {@inheritDoc}
00123         */
00124         virtual void writeBooleanArray(int32_t iProp, Array<bool>::View vaf);
00125 
00126         /**
00127         * {@inheritDoc}
00128         */
00129         virtual void writeOctetArray(int32_t iProp, Array<octet_t>::View vab);
00130 
00131         /**
00132         * {@inheritDoc}
00133         */
00134         virtual void writeChar16Array(int32_t iProp, Array<wchar16_t>::View vach);
00135 
00136         /**
00137         * {@inheritDoc}
00138         */
00139         virtual void writeInt16Array(int32_t iProp, Array<int16_t>::View van);
00140 
00141         /**
00142         * {@inheritDoc}
00143         */
00144         virtual void writeInt32Array(int32_t iProp, Array<int32_t>::View van);
00145 
00146         /**
00147         * {@inheritDoc}
00148         */
00149         virtual void writeInt64Array(int32_t iProp, Array<int64_t>::View val);
00150 
00151         /**
00152         * {@inheritDoc}
00153         */
00154         virtual void writeFloat32Array(int32_t iProp, Array<float32_t>::View vafl);
00155 
00156         /**
00157         * {@inheritDoc}
00158         */
00159         virtual void writeFloat64Array(int32_t iProp, Array<float64_t>::View vadfl);
00160 
00161         /**
00162         * {@inheritDoc}
00163         */
00164         virtual void writeBinary(int32_t iProp, Binary::View vBin);
00165 
00166         /**
00167         * {@inheritDoc}
00168         */
00169         virtual void writeString(int32_t iProp, String::View vs);
00170 
00171         /**
00172         * {@inheritDoc}
00173         */
00174         virtual void writeRawDate(int32_t iProp, RawDate::View vDate);
00175 
00176         /**
00177         * {@inheritDoc}
00178         */
00179         virtual void writeRawDateTime(int32_t iProp, RawDateTime::View vdt);
00180 
00181         /**
00182         * {@inheritDoc}
00183         */
00184         virtual void writeRawDayTimeInterval(int32_t iProp,
00185                 RawDayTimeInterval::View vInterval);
00186 
00187         /**
00188         * {@inheritDoc}
00189         */
00190         virtual void writeRawTime(int32_t iProp, RawTime::View vTime);
00191 
00192         /**
00193         * {@inheritDoc}
00194         */
00195         virtual void writeRawTimeInterval(int32_t iProp,
00196                 RawTimeInterval::View vInterval);
00197 
00198         /**
00199         * {@inheritDoc}
00200         */
00201         virtual void writeRawYearMonthInterval(int32_t iProp,
00202                 RawYearMonthInterval::View vInterval);
00203 
00204         /**
00205         * {@inheritDoc}
00206         */
00207         virtual void writeObject(int32_t iProp, Object::View v);
00208 
00209         /**
00210         * {@inheritDoc}
00211         */
00212         virtual void writeObjectArray(int32_t iProp, ObjectArray::View va);
00213 
00214         /**
00215         * {@inheritDoc}
00216         */
00217         virtual void writeObjectArray(int32_t iProp, ObjectArray::View va,
00218                 Class::View vClass);
00219 
00220         /**
00221         * {@inheritDoc}
00222         */
00223         virtual void writeLongArray(int32_t iProp, LongArray::View vla);
00224 
00225         /**
00226         * {@inheritDoc}
00227         */
00228         virtual void writeLongArray(int32_t iProp, LongArray::View vla,
00229                 Class::View vClass);
00230 
00231         /**
00232         * {@inheritDoc}
00233         */
00234         virtual void writeCollection(int32_t iProp, Collection::View vCol);
00235 
00236         /**
00237         * {@inheritDoc}
00238         */
00239         virtual void writeCollection(int32_t iProp, Collection::View vCol,
00240                 Class::View vClass);
00241 
00242         /**
00243         * {@inheritDoc}
00244         */
00245         virtual void writeMap(int32_t iProp, Map::View vMap);
00246 
00247         /**
00248         * {@inheritDoc}
00249         */
00250         virtual void writeMap(int32_t iProp, Map::View vMap,
00251                 Class::View vClassKey);
00252 
00253         /**
00254         * {@inheritDoc}
00255         */
00256         virtual void writeMap(int32_t iProp, Map::View vMap,
00257                 Class::View vClassKey, Class::View vClassValue);
00258 
00259         /**
00260         * {@inheritDoc}
00261         */
00262         virtual PofContext::View getPofContext() const;
00263 
00264         /**
00265         * {@inheritDoc}
00266         */
00267         virtual void setPofContext(PofContext::View vCtx);
00268 
00269         /**
00270         * {@inheritDoc}
00271         */
00272         virtual int32_t getUserTypeId() const;
00273 
00274         /**
00275         * {@inheritDoc}
00276         */
00277         virtual int32_t getVersionId() const;
00278 
00279         /**
00280         * {@inheritDoc}
00281         */
00282         virtual void setVersionId(int32_t nVersionId);
00283 
00284         /**
00285         * {@inheritDoc}
00286         */
00287         virtual PofWriter::Handle createNestedPofWriter(int32_t iProp);
00288 
00289         /**
00290         * {@inheritDoc}
00291         */
00292         virtual PofWriter::Handle createNestedPofWriter(int32_t iProp, int32_t nTypeId);
00293 
00294         /**
00295         * {@inheritDoc}
00296         */
00297         virtual void writeRemainder(Binary::View vBinProps);
00298 
00299 
00300     // ----- internal methods -----------------------------------------------
00301 
00302     protected:
00303         /**
00304         * Write a property of user defined type to the POF stream.
00305         *
00306         * @param iProp  the property index
00307         * @param v      the <tt>user type</tt> property value to write
00308         *
00309         * @since Coherence 3.7.1
00310         */
00311         virtual void writeUserType(int32_t iProp, Object::View v);
00312 
00313        /**
00314         * If this writer is contextually within a user type, obtain the writer
00315         * which created this writer in order to write the user type.
00316         *
00317         * @return the containing writer
00318         */
00319         virtual PofBufferWriter::Handle getParentWriter();
00320 
00321         /**
00322         * If this writer is contextually within a user type, obtain the writer
00323         * which created this writer in order to write the user type.
00324         *
00325         * @return the containing writer
00326         */
00327         virtual PofBufferWriter::View getParentWriter() const;
00328 
00329         /**
00330         * Report that a POF property is about to be written to the POF
00331         * stream.
00332         *
00333         * This method call will be followed by one or more separate calls to
00334         * a "write" method and the property extent will then be terminated by
00335         * a call to {@link #endProperty}.
00336         *
00337         * @param iProp  the index of the property being written
00338         *
00339         * @throws IllegalArgumentException  if the property index is invalid,
00340         *         or is less than or equal to the index of the previous
00341         *         property written to the POF stream
00342         * @throws IOException  if an I/O error occurs
00343         */
00344         virtual void beginProperty(int32_t iProp);
00345 
00346         /**
00347         * Signifies the termination of the current POF property.
00348         *
00349         * @param iProp  the index of the current property
00350         */
00351         virtual void endProperty(int32_t iProp);
00352 
00353         /**
00354         * Assert that a class is equal to another class.
00355         *
00356         * @param vClass      the expected class; must not be NULL
00357         * @param vClassTest  the class to test for equality; must not be NULL
00358         *
00359         * @throws IllegalStateException if the second class is not equal to
00360         *         the first
00361         */
00362         static void assertEqual(Class::View vClass, Class::View vClassTest);
00363 
00364 
00365     // ----- accessors ------------------------------------------------------
00366 
00367     public:
00368         /**
00369         * Ensure that references (support for cyclic dependencies) are enabled.
00370         */
00371         virtual void enableReference();
00372 
00373         /**
00374         * Determine if reference support is enabled.
00375         *
00376         * @return true iff reference support is enabled
00377         *
00378         * @since Coherence 3.7.1
00379         */
00380         virtual bool isReferenceEnabled();
00381 
00382     protected:
00383         /**
00384         * Return the BufferOutput that this PofBufferWriter writes to.
00385         *
00386         * @return the BufferOutput
00387         */
00388         virtual WriteBuffer::BufferOutput::Handle getBufferOutput();
00389 
00390         /**
00391         * Return the BufferOutput that this PofBufferWriter writes to.
00392         *
00393         * @return the BufferOutput
00394         */
00395         virtual WriteBuffer::BufferOutput::View getBufferOutput() const;
00396 
00397         /**
00398         * Return the WritingPofHandler used internally by this
00399         * PofBufferWriter to write the POF stream.
00400         *
00401         * @return the PofHandler
00402         */
00403         virtual WritingPofHandler::Handle getPofHandler();
00404 
00405         /**
00406         * Return the WritingPofHandler used internally by this
00407         * PofBufferWriter to write the POF stream.
00408         *
00409         * @return the PofHandler
00410         */
00411         virtual WritingPofHandler::View getPofHandler() const;
00412 
00413         /**
00414         * Determine if the object to be written is either Evolvable or part of an
00415         * Evolvable object.
00416         *
00417         * @return true iff the object to be written is Evolvable
00418         *
00419         * @since Coherence 3.7.1
00420         */
00421         virtual bool isEvolvable();
00422 
00423         /**
00424         * Set the Evolvable flag to indicate if the object to be written is
00425         * Evolvable or part of an Evolvable object.
00426         *
00427         * @param fEvolvable  true iff the object to be written is Evolvable
00428         *
00429         * @since Coherence 3.7.1
00430         */
00431         virtual void setEvolvable(bool fEvolvable);
00432 
00433 
00434     // ----- data members ---------------------------------------------------
00435 
00436     protected:
00437         /**
00438         * The BufferOutput object that the PofBufferWriter writes to.
00439         */
00440         FinalHandle<WriteBuffer::BufferOutput> f_hOut;
00441 
00442         /**
00443         * The PofContext used by this PofBufferWriter to serialize user types.
00444         */
00445         FinalView<PofContext> f_vCtx;
00446 
00447         /**
00448         * Indicate if the object to be written is either Evolvable or part of an
00449         * Evolvable object.
00450         */
00451         bool m_fEvolvable;
00452 
00453         /**
00454         * The WritingPofHandler used to write a POF stream.
00455         */
00456         FinalHandle<WritingPofHandler> f_hHandler;
00457 
00458         /**
00459         * If references are used, then this is the ReferenceLibrary.
00460         */
00461         FinalHandle<ReferenceLibrary> f_hRefs;
00462 
00463 
00464     // ----- friends --------------------------------------------------------
00465 
00466     friend class UserTypeWriter;
00467     };
00468 
00469 COH_CLOSE_NAMESPACE3
00470 
00471 #endif // COH_POF_BUFFER_WRITER_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.