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

F79659-03

coherence/io/pof/WritingPofHandler.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_WRITING_POF_HANDLER_HPP
00008 #define COH_WRITING_POF_HANDLER_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/WriteBuffer.hpp"
00013 #include "coherence/io/pof/PofHandler.hpp"
00014 #include "coherence/io/pof/PofHelper.hpp"
00015 #include "coherence/util/Binary.hpp"
00016 
00017 COH_OPEN_NAMESPACE3(coherence,io,pof)
00018 
00019 using coherence::io::WriteBuffer;
00020 using coherence::util::Binary;
00021 
00022 
00023 /**
00024 * An implementation of PofHandler that writes a POF stream to a WriteBuffer
00025 * using a BufferOutput object.
00026 *
00027 * @author jh  2008.04.09
00028 */
00029 class COH_EXPORT WritingPofHandler
00030     : public class_spec<WritingPofHandler,
00031         extends<PofHelper>,
00032         implements<PofHandler> >
00033     {
00034     friend class factory<WritingPofHandler>;
00035 
00036     // ----- constructors ---------------------------------------------------
00037 
00038     protected:
00039         /**
00040         * Construct a Writing POF Handler that will write a POF stream to the
00041         * passed BufferOutput object.
00042         *
00043         * @param hOut  the BufferOutput to write to
00044         *
00045         * @return the new WritingPofHandler
00046         */
00047         WritingPofHandler(WriteBuffer::BufferOutput::Handle hOut);
00048 
00049     private:
00050         /**
00051         * Blocked copy constructor.
00052         */
00053         WritingPofHandler(const WritingPofHandler&);
00054 
00055 
00056     // ----- WritingPofHandler methods --------------------------------------
00057 
00058     public:
00059         /**
00060         * Report that a value of a "user type" has been encountered in the
00061         * POF stream. A user type is analogous to a "class", and a value of
00062         * a user type is analogous to an "object".
00063         *
00064         * This method call will be followed by a separate call to an "on" or
00065         * "begin" method for each of the property values in the user type,
00066         * and the user type will then be terminated by a call to
00067         * {@link endComplexValue()}.
00068         *
00069         * @param iPos         context-sensitive position information: property
00070         *                     index within a user type, array index within an
00071         *                     array, element counter within a collection,
00072         *                     entry counter within a map, -1 otherwise
00073         * @param nId          identity of the object to encode, or -1 if
00074         *                     identity shouldn't be encoded in the POF stream
00075         * @param nUserTypeId  the user type identifier,
00076         *                     <tt>(nUserTypeId &gt;= 0)</tt>
00077         * @param nVersionId   the version identifier for the user data type data
00078         *                     in the POF stream, <tt>(nVersionId &gt;= 0)</tt>
00079         *
00080         * @since Coherence 3.7.1
00081         */
00082         virtual void beginUserType(int32_t iPos, int nId, int32_t nUserTypeId,
00083                 int32_t nVersionId);
00084 
00085 
00086     // ----- PofHandler interface -------------------------------------------
00087 
00088     public:
00089         /**
00090         * {@inheritDoc}
00091         */
00092         virtual void registerIdentity(int32_t nId);
00093 
00094         /**
00095         * {@inheritDoc}
00096         */
00097         virtual void onNullReference(int32_t iPos);
00098 
00099         /**
00100         * {@inheritDoc}
00101         */
00102         virtual void onIdentityReference(int32_t iPos, int32_t nId);
00103 
00104         /**
00105         * {@inheritDoc}
00106         */
00107         virtual void onInt16(int32_t iPos, int16_t n);
00108 
00109         /**
00110         * {@inheritDoc}
00111         */
00112         virtual void onInt32(int32_t iPos, int32_t n);
00113 
00114         /**
00115         * {@inheritDoc}
00116         */
00117         virtual void onInt64(int32_t iPos, int64_t n);
00118 
00119         /**
00120         * {@inheritDoc}
00121         */
00122         virtual void onFloat32(int32_t iPos, float32_t fl);
00123 
00124         /**
00125         * {@inheritDoc}
00126         */
00127         virtual void onFloat64(int32_t iPos, float64_t dfl);
00128 
00129         /**
00130         * {@inheritDoc}
00131         */
00132         virtual void onBoolean(int32_t iPos, bool f);
00133 
00134         /**
00135         * {@inheritDoc}
00136         */
00137         virtual void onOctet(int32_t iPos, octet_t b);
00138 
00139         /**
00140         * {@inheritDoc}
00141         */
00142         virtual void onOctetString(int32_t iPos, Binary::View vBin);
00143 
00144         /**
00145         * {@inheritDoc}
00146         */
00147         virtual void onChar(int32_t iPos, wchar16_t ch);
00148 
00149         /**
00150         * {@inheritDoc}
00151         */
00152         virtual void onCharString(int32_t iPos, String::View vs);
00153 
00154         /**
00155         * {@inheritDoc}
00156         */
00157         virtual void onDate(int32_t iPos, int32_t nYear, int32_t nMonth,
00158                 int32_t nDay);
00159 
00160         /**
00161         * {@inheritDoc}
00162         */
00163         virtual void onYearMonthInterval(int32_t iPos, int32_t cYears,
00164                 int32_t cMonths);
00165 
00166         /**
00167         * {@inheritDoc}
00168         */
00169         virtual void onTime(int32_t iPos, int32_t nHour, int32_t nMinute,
00170                 int32_t nSecond, int32_t nNano, bool fUTC);
00171 
00172         /**
00173         * {@inheritDoc}
00174         */
00175         virtual void onTime(int32_t iPos, int32_t nHour, int32_t nMinute,
00176                 int32_t nSecond, int32_t nNano, int32_t nHourOffset,
00177                 int32_t nMinuteOffset);
00178 
00179         /**
00180         * {@inheritDoc}
00181         */
00182         virtual void onTimeInterval(int32_t iPos, int32_t cHours,
00183                 int32_t cMinutes, int32_t cSeconds, int32_t cNanos);
00184 
00185         /**
00186         * {@inheritDoc}
00187         */
00188         virtual void onDateTime(int32_t iPos, int32_t nYear, int32_t nMonth,
00189                 int32_t nDay, int32_t nHour, int32_t nMinute, int32_t nSecond,
00190                 int32_t nNano, bool fUTC);
00191 
00192         /**
00193         * {@inheritDoc}
00194         */
00195         virtual void onDateTime(int32_t iPos, int32_t nYear, int32_t nMonth,
00196                 int32_t nDay, int32_t nHour, int32_t nMinute, int32_t nSecond,
00197                 int32_t nNano, int32_t nHourOffset, int32_t nMinuteOffset);
00198 
00199         /**
00200         * {@inheritDoc}
00201         */
00202         virtual void onDayTimeInterval(int32_t iPos, int32_t cDays,
00203                 int32_t cHours, int32_t cMinutes, int32_t cSeconds,
00204                 int32_t cNanos);
00205 
00206         /**
00207         * {@inheritDoc}
00208         */
00209         virtual void beginCollection(int32_t iPos, size32_t cElements);
00210 
00211         /**
00212         * {@inheritDoc}
00213         */
00214         virtual void beginUniformCollection(int32_t iPos, size32_t cElements,
00215                 int32_t nType);
00216 
00217         /**
00218         * {@inheritDoc}
00219         */
00220         virtual void beginArray(int32_t iPos, size32_t cElements);
00221 
00222         /**
00223         * {@inheritDoc}
00224         */
00225         virtual void beginUniformArray(int32_t iPos, size32_t cElements,
00226                 int32_t nType);
00227 
00228         /**
00229         * {@inheritDoc}
00230         */
00231         virtual void beginSparseArray(int32_t iPos, size32_t cElements);
00232 
00233         /**
00234         * {@inheritDoc}
00235         */
00236         virtual void beginUniformSparseArray(int32_t iPos, size32_t cElements,
00237                 int32_t nType);
00238 
00239         /**
00240         * {@inheritDoc}
00241         */
00242         virtual void beginMap(int32_t iPos, size32_t cElements);
00243 
00244         /**
00245         * {@inheritDoc}
00246         */
00247         virtual void beginUniformKeysMap(int32_t iPos, size32_t cElements,
00248                 int32_t nTypeKeys);
00249 
00250         /**
00251         * {@inheritDoc}
00252         */
00253         virtual void beginUniformMap(int32_t iPos, size32_t cElements,
00254                 int32_t nTypeKeys, int32_t nTypeValues);
00255 
00256         /**
00257         * {@inheritDoc}
00258         */
00259         virtual void beginUserType(int32_t iPos, int32_t nUserTypeId,
00260                 int32_t nVersionId);
00261 
00262         /**
00263         * {@inheritDoc}
00264         */
00265         virtual void endComplexValue();
00266 
00267 
00268     // ----- internal methods -----------------------------------------------
00269 
00270     protected:
00271         /**
00272         * Determine if the value encoding can be skipped. A value can be
00273         * skipped if it is a default value and if it does not have an
00274         * identity and if it is in a sparse data structure.
00275         *
00276         * @return true iff value encoding of default values can be skipped
00277         *         altogether
00278         */
00279         virtual bool isSkippable() const;
00280 
00281         /**
00282         * Determine if the value encoding can be compressed by combining type
00283         * and value information in such a way that type information could be
00284         * lost.
00285         *
00286         * @return true iff values can be encoded without type information
00287         */
00288         virtual bool isCompressable() const;
00289 
00290         /**
00291         * Called for each and every value going into the POF stream, in case
00292         * the value needs its position to be encoded into the stream.
00293         *
00294         * @param iPos  the position (property index, array index, etc.)
00295         */
00296         virtual void encodePosition(int32_t iPos);
00297 
00298         /**
00299         * Determine if the type should be encoded for the current value.
00300         *
00301         * @param nTypeId  the type of the current value
00302         *
00303         * @return true if the type ID should be placed into the POF stream,
00304         *         and false if only the value itself should be placed into
00305         *         the stream
00306         */
00307         virtual bool isTypeIdEncoded(int32_t nTypeId) const;
00308 
00309 
00310     // ----- inner class: Complex -------------------------------------------
00311 
00312     public:
00313         /**
00314         * A Complex object represents the current complex data structure in
00315         * the POF stream.
00316         */
00317         class COH_EXPORT Complex
00318             : public class_spec<Complex>
00319             {
00320             friend class factory<Complex>;
00321 
00322             // ----- constructors ---------------------------------------
00323 
00324             protected:
00325                 /**
00326                 * Construct a Complex object for a data collection or user
00327                 * type.
00328                 *
00329                 * @param hComplexCurrent  the current Complex object or NULL
00330                 * @param fEncodePosition  true to encode the position
00331                 *                         information
00332                 */
00333                 Complex(Complex::Handle hComplexCurrent,
00334                         bool fEncodePosition);
00335 
00336                 /**
00337                 * Construct a Complex object for a uniformly-typed data
00338                 * collection.
00339                 *
00340                 * @param hComplexCurrent  the current Complex object or NULL
00341                 * @param fEncodePosition  true to encode the position
00342                 *                         information
00343                 * @param nUniformTypeId   the type identifier of the uniform
00344                 *                         type
00345                 */
00346                 Complex(Complex::Handle hComplexCurrent,
00347                         bool fEncodePosition, int32_t nUniformTypeId);
00348 
00349             private:
00350                 /**
00351                 * Blocked copy constructor.
00352                 */
00353                 Complex(const Complex&);
00354 
00355             // ----- Complex interface ----------------------------------
00356 
00357             public:
00358                 /**
00359                 * Notify the Complex object that a value has been encountered.
00360                 *
00361                 * @param iPos  the position that accompanied the value
00362                 */
00363                 virtual void onValue(int32_t iPos);
00364 
00365             // ----- accessors ------------------------------------------
00366 
00367             public:
00368                 /**
00369                 * Determine if the object encoding within the Complex type is
00370                 * uniform.
00371                 *
00372                 * @return true iff values within the Complex type are of a
00373                 *         uniform type and are encoded uniformly
00374                 */
00375                 virtual bool isUniform() const;
00376 
00377                 /**
00378                 * If the object encoding is using uniform encoding, obtain
00379                 * the type id of the uniform type.
00380                 *
00381                 * @return the type id used for the uniform encoding
00382                 */
00383                 virtual int32_t getUniformType() const;
00384 
00385                 /**
00386                 * Determine if the position information is encoded with the
00387                 * values of the complex type, and if the Complex type is
00388                 * terminated in the POF stream with an illegal position (-1).
00389                 *
00390                 * @return true iff the complex value is a sparse type
00391                 */
00392                 virtual bool isSparse() const;
00393 
00394                 /**
00395                 * Pop this Complex object off the stack, returning the outer
00396                 * Complex object or NULL if there is none.
00397                 *
00398                 * @return the outer Complex object or NULL if there is none
00399                 */
00400                 virtual Complex::Handle pop();
00401 
00402                 /**
00403                 * Pop this Complex object off the stack, returning the outer
00404                 * Complex object or NULL if there is none.
00405                 *
00406                 * @return the outer Complex object or NULL if there is none
00407                 */
00408                 virtual Complex::View pop() const;
00409 
00410 
00411             // ----- data members ---------------------------------------
00412 
00413             protected:
00414                 /**
00415                 * Whether or not the position information is encoded. This is
00416                 * true for user type properties and array elements.
00417                 */
00418                 const bool m_fSparse;
00419 
00420                 /**
00421                 * Whether or not values within the complex type are uniformly
00422                 * encoded. This is expected for arrays of primitive types,
00423                 * for example.
00424                 */
00425                 const bool m_fUniform;
00426 
00427                 /**
00428                 * The type ID, if uniform encoding is used.
00429                 */
00430                 const int32_t m_nTypeId;
00431 
00432                 /**
00433                 * The Complex within which this Complex exists, to support
00434                 * nesting.
00435                 */
00436                 FinalHandle<Complex> f_hComplexOuter;
00437             };
00438 
00439 
00440     // ----- inner class: ComplexMap ----------------------------------------
00441 
00442     public:
00443         /**
00444         * A ComplexMap object represents a map data structure (with uniform
00445         * keys or with uniform keys and values) in the POF stream.
00446         */
00447         class COH_EXPORT ComplexMap
00448             : public class_spec<ComplexMap,
00449                 extends<Complex> >
00450             {
00451             friend class factory<ComplexMap>;
00452 
00453             // ----- constructors ---------------------------------------
00454 
00455             protected:
00456                 /**
00457                 * Construct a ComplexMap object for maps with uniformly-typed
00458                 * keys.
00459                 *
00460                 * @param hcomplexCurrent    the current Complex object or
00461                 *                           NULL
00462                 * @param nUniformKeyTypeId  the type identifier of the
00463                 *                           uniform type
00464                 */
00465                 ComplexMap(Complex::Handle hComplexCurrent,
00466                         int32_t nUniformKeyTypeId);
00467 
00468                 /**
00469                 * Construct a ComplexMap object for maps with uniformly-typed
00470                 * keys and values.
00471                 *
00472                 * @param hComplexCurrent    the current Complex object or
00473                 *                           NULL
00474                 * @param nUniformKeyTypeId  the type identifier of the
00475                 *                           uniform type for keys in the map
00476                 * @param nUniformValTypeId  the type identifier of the
00477                 *                           uniform type for values in the
00478                 *                           map
00479                 */
00480                 ComplexMap(Complex::Handle hComplexCurrent,
00481                         int32_t nUniformKeyTypeId, int32_t nUniformValTypeId);
00482 
00483             private:
00484                 /**
00485                 * Blocked copy constructor.
00486                 */
00487                 ComplexMap(const ComplexMap&);
00488 
00489             // ----- Complex interface ----------------------------------
00490 
00491             public:
00492                 /**
00493                 * {@inheritDoc}
00494                 */
00495                 virtual void onValue(int32_t iPos);
00496 
00497             // ----- accessors ------------------------------------------
00498 
00499             public:
00500                 /**
00501                 * Determine if the object encoding within the Complex type is
00502                 * uniform.
00503                 *
00504                 * @return true iff values within the Complex type are of a
00505                 *         uniform type and are encoded uniformly
00506                 */
00507                 virtual bool isUniform() const;
00508 
00509                 /**
00510                 * If the object encoding is using uniform encoding, obtain
00511                 * the type id of the uniform type.
00512                 *
00513                 * @return the type id used for the uniform encoding
00514                 */
00515                 virtual int32_t getUniformType() const;
00516 
00517             // ----- data members ---------------------------------------
00518 
00519             protected:
00520                 /**
00521                 * Toggles between key and value processing every time the
00522                 * caller invokes {@link #onValue}.
00523                 */
00524                 bool m_fKey;
00525 
00526                 /**
00527                 * Whether or not values within the map are uniformly encoded.
00528                 */
00529                 const bool m_fUniformValue;
00530 
00531                 /**
00532                 * The value type ID, if uniform encoding is used for values.
00533                 */
00534                 const int32_t m_nValueTypeId;
00535             };
00536 
00537 
00538     // ----- accessors ------------------------------------------------------
00539 
00540     public:
00541         /**
00542         * Obtain the DataOutput object that this Writing POF Handler is
00543         * writing to.
00544         *
00545         * @return the DataOutput object that this POF handler is writing to
00546         */
00547         virtual WriteBuffer::BufferOutput::Handle getBufferOutput();
00548 
00549         /**
00550         * Obtain the DataOutput object that this Writing POF Handler is
00551         * writing to.
00552         *
00553         * @return the DataOutput object that this POF handler is writing to
00554         */
00555         virtual WriteBuffer::BufferOutput::View getBufferOutput() const;
00556 
00557         /**
00558         * Obtain the current Complex object that represents the complex type
00559         * that is being written to the POF stream.
00560         *
00561         * @return the current Complex object
00562         */
00563         virtual Complex::Handle getComplex();
00564 
00565         /**
00566         * Obtain the current Complex object that represents the complex type
00567         * that is being written to the POF stream.
00568         *
00569         * @return the current Complex object
00570         */
00571         virtual Complex::View getComplex() const;
00572 
00573         /**
00574          * Return the ID of the current Complex object.
00575          *
00576          * @return the ID of the current Complex object.
00577          */
00578         virtual size64_t getComplexId() const;
00579 
00580     protected:
00581         /**
00582          * Set the current Complex object.
00583          *
00584          * @param hComplex  the current Complex object.
00585          */
00586         virtual void setComplex(Complex::Handle hComplex);
00587 
00588 
00589     // ----- data members ---------------------------------------------------
00590 
00591     protected:
00592         /**
00593         * The BufferOutput to write to.
00594         */
00595         FinalHandle<WriteBuffer::BufferOutput> f_hOut;
00596 
00597         /**
00598         * The current containing Complex value in the POF stream.
00599         */
00600         MemberHandle<Complex> m_hComplex;
00601 
00602         /**
00603          * The ID of the current Complex value.
00604          */
00605         size64_t m_nComplexId;
00606 
00607         /**
00608         * Set to true when the next value to write has been tagged with an
00609         * identity.
00610         */
00611         bool m_fHasIdentity;
00612     };
00613 
00614 COH_CLOSE_NAMESPACE3
00615 
00616 #endif // COH_WRITING_POF_HANDLER_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.