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

F79659-03

coherence/io/pof/PofBufferReader.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_READER_HPP
00008 #define COH_POF_BUFFER_READER_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/ReadBuffer.hpp"
00013 #include "coherence/io/pof/PofContext.hpp"
00014 #include "coherence/io/pof/PofHelper.hpp"
00015 #include "coherence/io/pof/PofReader.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/util/Binary.hpp"
00023 #include "coherence/util/Collection.hpp"
00024 #include "coherence/util/LongArray.hpp"
00025 #include "coherence/util/Map.hpp"
00026 
00027 COH_OPEN_NAMESPACE3(coherence,io,pof)
00028 
00029 using coherence::io::ReadBuffer;
00030 using coherence::util::Binary;
00031 using coherence::util::Collection;
00032 using coherence::util::LongArray;
00033 using coherence::util::Map;
00034 
00035 
00036 /**
00037 * PofReader implementation that reads POF-encoded data from a
00038 * ReadBuffer::BufferInput.
00039 *
00040 * @author jh  2008.04.09
00041 */
00042 class COH_EXPORT PofBufferReader
00043     : public class_spec<PofBufferReader,
00044         extends<PofHelper>,
00045         implements<PofReader> >
00046     {
00047     friend class factory<PofBufferReader>;
00048     friend class IdentityHolder;
00049 
00050     // ----- constructors ---------------------------------------------------
00051 
00052     protected:
00053         /**
00054         * Construct a new PofBufferReader that will read a POF stream from
00055         * the passed BufferInput object.
00056         *
00057         * @param hIn   a BufferInput object
00058         * @param vCtx  the PofContext
00059         *
00060         * @return the new PofBufferReader
00061         */
00062         PofBufferReader(ReadBuffer::BufferInput::Handle hIn,
00063                 PofContext::View vCtx);
00064 
00065 
00066     // ----- PofReader interface --------------------------------------------
00067 
00068     public:
00069         /**
00070         * {@inheritDoc}
00071         */
00072         virtual bool readBoolean(int32_t iProp);
00073 
00074         /**
00075         * {@inheritDoc}
00076         */
00077         virtual octet_t readOctet(int32_t iProp);
00078 
00079         /**
00080         * {@inheritDoc}
00081         */
00082         virtual wchar16_t readChar16(int32_t iProp);
00083 
00084         /**
00085         * {@inheritDoc}
00086         */
00087         virtual int16_t readInt16(int32_t iProp);
00088 
00089         /**
00090         * {@inheritDoc}
00091         */
00092         virtual int32_t readInt32(int32_t iProp);
00093 
00094         /**
00095         * {@inheritDoc}
00096         */
00097         virtual int64_t readInt64(int32_t iProp);
00098 
00099         /**
00100         * {@inheritDoc}
00101         */
00102         virtual float32_t readFloat32(int32_t iProp);
00103 
00104         /**
00105         * {@inheritDoc}
00106         */
00107         virtual float64_t readFloat64(int32_t iProp);
00108 
00109         /**
00110         * {@inheritDoc}
00111         */
00112         virtual Array<bool>::Handle readBooleanArray(int32_t iProp);
00113 
00114         /**
00115         * {@inheritDoc}
00116         */
00117         virtual Array<octet_t>::Handle readOctetArray(int32_t iProp);
00118 
00119         /**
00120         * {@inheritDoc}
00121         */
00122         virtual Array<wchar16_t>::Handle readChar16Array(int32_t iProp);
00123 
00124         /**
00125         * {@inheritDoc}
00126         */
00127         virtual Array<int16_t>::Handle readInt16Array(int32_t iProp);
00128 
00129         /**
00130         * {@inheritDoc}
00131         */
00132         virtual Array<int32_t>::Handle readInt32Array(int32_t iProp);
00133 
00134         /**
00135         * {@inheritDoc}
00136         */
00137         virtual Array<int64_t>::Handle readInt64Array(int32_t iProp);
00138 
00139         /**
00140         * {@inheritDoc}
00141         */
00142         virtual Array<float32_t>::Handle readFloat32Array(int32_t iProp);
00143 
00144         /**
00145         * {@inheritDoc}
00146         */
00147         virtual Array<float64_t>::Handle readFloat64Array(int32_t iProp);
00148 
00149         /**
00150         * {@inheritDoc}
00151         */
00152         virtual Binary::View readBinary(int32_t iProp);
00153 
00154         /**
00155         * {@inheritDoc}
00156         */
00157         virtual String::View readString(int32_t iProp);
00158 
00159         /**
00160         * {@inheritDoc}
00161         */
00162         virtual RawDate::View readRawDate(int32_t iProp);
00163 
00164         /**
00165         * {@inheritDoc}
00166         */
00167         using PofHelper::readRawDate;
00168 
00169         /**
00170         * {@inheritDoc}
00171         */
00172         virtual RawTime::View readRawTime(int32_t iProp);
00173 
00174         /**
00175         * {@inheritDoc}
00176         */
00177         using PofHelper::readRawTime;
00178 
00179         /**
00180         * {@inheritDoc}
00181         */
00182         virtual RawDateTime::View readRawDateTime(int32_t iProp);
00183 
00184         /**
00185         * {@inheritDoc}
00186         */
00187         virtual RawYearMonthInterval::View readRawYearMonthInterval(
00188                 int32_t iProp);
00189 
00190         /**
00191         * {@inheritDoc}
00192         */
00193         virtual RawTimeInterval::View readRawTimeInterval(int32_t iProp);
00194 
00195         /**
00196         * {@inheritDoc}
00197         */
00198         virtual RawDayTimeInterval::View readRawDayTimeInterval(int32_t iProp);
00199 
00200         /**
00201         * {@inheritDoc}
00202         */
00203         virtual Object::Holder readObject(int32_t iProp);
00204 
00205         /**
00206         * {@inheritDoc}
00207         */
00208         virtual ObjectArray::Handle readObjectArray(int32_t iProp,
00209                 ObjectArray::Handle ha = NULL);
00210 
00211         /**
00212         * {@inheritDoc}
00213         */
00214         virtual LongArray::View readLongArray(int32_t iProp,
00215                 LongArray::Handle hla = NULL);
00216 
00217         /**
00218         * {@inheritDoc}
00219         */
00220         virtual Collection::View readCollection(int32_t iProp,
00221                 Collection::Handle hCol = NULL);
00222 
00223         /**
00224         * {@inheritDoc}
00225         */
00226         virtual Map::View readMap(int32_t iProp, Map::Handle hMap = NULL);
00227 
00228         /**
00229         * {@inheritDoc}
00230         */
00231         virtual PofContext::View getPofContext() const;
00232 
00233         /**
00234         * {@inheritDoc}
00235         */
00236         virtual void setPofContext(PofContext::View vCtx);
00237 
00238         /**
00239         * {@inheritDoc}
00240         */
00241         virtual int32_t getUserTypeId() const;
00242 
00243         /**
00244         * {@inheritDoc}
00245         */
00246         virtual int32_t getVersionId() const;
00247 
00248         /**
00249         * {@inheritDoc}
00250         */
00251         virtual void registerIdentity(Object::Holder oh);
00252 
00253         /**
00254         * {@inheritDoc}
00255         */
00256         virtual PofReader::Handle createNestedPofReader(int32_t iProp);
00257 
00258         /**
00259         * {@inheritDoc}
00260         */
00261         virtual Binary::View readRemainder();
00262 
00263 
00264     // ----- internal methods -----------------------------------------------
00265 
00266     protected:
00267         /**
00268         * Advance through the POF stream until the specified property is
00269         * found. If the property is found, return true, otherwise return
00270         * false and advance to the first property that follows the specified
00271         * property.
00272         *
00273         * @param iProp  the index of the property to advance to
00274         *
00275         * @return true if the property is found
00276         *
00277         * @throws IllegalStateException if the POF stream has already
00278         *         advanced past the desired property
00279         * @throws IOException if an I/O error occurs
00280         */
00281         virtual bool advanceTo(int32_t iProp);
00282 
00283         /**
00284         * Register the completion of the parsing of a value.
00285         *
00286         * @param iProp  the property index
00287         *
00288         * @throws IOException if an I/O error occurs
00289         */
00290         virtual void complete(int32_t iProp);
00291 
00292         /**
00293         * If this parser is contextually within a user type, obtain the
00294         * parser which created this parser in order to parse the user type.
00295         *
00296         * @return the parser for the context within which this parser is
00297         *         operating
00298         */
00299         virtual PofBufferReader::Handle getParentParser();
00300 
00301         /**
00302         * If this parser is contextually within a user type, obtain the
00303         * parser which created this parser in order to parse the user type.
00304         *
00305         * @return the parser for the context within which this parser is
00306         *         operating
00307         */
00308         virtual PofBufferReader::View getParentParser() const;
00309 
00310         /**
00311         * Obtain the registry for identity-reference pairs, creating it if
00312         * necessary.
00313         *
00314         * @return the identity-reference registry, never NULL
00315         */
00316         virtual LongArray::Handle ensureReferenceRegistry();
00317 
00318         /**
00319         * Register the passed value with the passed identity.
00320         *
00321         * @param nId      the identity
00322         * @param ohValue  the value to register
00323         *
00324         * @throws IOException if the specified identity is already
00325         *         registered with a different object
00326         */
00327         virtual void registerIdentity(int32_t nId, Object::Holder ohValue);
00328 
00329         /**
00330         * Look up the specified identity and return the object to which it
00331         * refers.
00332         *
00333         * @param nId  the identity
00334         *
00335         * @return the object registered under that identity
00336         *
00337         * @throws IOException if the requested identity is not registered
00338         */
00339         virtual Object::Holder lookupIdentity(int32_t nId);
00340 
00341         /**
00342         * Read a POF value as an Object.
00343         *
00344         * @param nType  the type identifier of the value
00345         *
00346         * @return an Object value
00347         *
00348         * @throws IOException if an I/O error occurs
00349         */
00350         virtual Object::Holder readAsObject(int32_t nType);
00351 
00352         /**
00353         * Read a POF value in a uniform array/map as an Object.
00354         *
00355         * @param nType  the type identifier of the value
00356         *
00357         * @return an Object value
00358         *
00359         * @throws IOException if an I/O error occurs
00360         *
00361         * @since Coherence 3.7.1
00362         */
00363         virtual Object::Holder readAsUniformObject(int32_t nType);
00364 
00365         /**
00366         * Read a POF value as an Object array.
00367         *
00368         * @param nType  the type identifier of the value
00369         * @param ha     the optional <tt>ObjectArray</tt> to use to store the values, or to use
00370         *               as a typed template for creating an array to store the
00371         *               values
00372         *
00373         * @return an Object array
00374         *
00375         * @throws IOException if an I/O error occurs
00376         */
00377         virtual ObjectArray::Handle readAsObjectArray(int32_t nType,
00378                 ObjectArray::Handle ha = NULL);
00379 
00380 
00381     // ----- data members ---------------------------------------------------
00382 
00383     protected:
00384         /**
00385         * The BufferInput containing the POF stream.
00386         */
00387         FinalHandle<ReadBuffer::BufferInput> f_hIn;
00388 
00389         /**
00390         * The PofContext to use to realize user data types as objects.
00391         */
00392         FinalView<PofContext> f_vCtx;
00393 
00394         /**
00395         * Lazily-constructed mapping of identities to references.
00396         */
00397         FinalHandle<LongArray> f_hlaRefs;
00398     };
00399 
00400 COH_CLOSE_NAMESPACE3
00401 
00402 #endif // COH_POF_BUFFER_READER_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.