Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)

Enlighten API 3.10 Documentation
Results will update as you type.
  • Modules
  • Namespaces
    • namespace Enlighten
    • namespace Geo
      • class Geo AbstractRayChunk
      • class Geo AnsiAllocator
      • class Geo AtlasMesh
      • class Geo AtlasMeshChart
      • class Geo AtlasMeshPackingFlags
      • class Geo BasicAllocator
      • class Geo ChartParametiserFailure
      • class Geo ConvexHull
      • class Geo ConvexHullBuilder
      • class Geo CovarianceMatrix
      • class Geo CovarianceMatrixBuilder
      • class Geo EmbreeRtMeshVisitor
      • class Geo Geo2DTransform
      • class Geo GeoAlignedFreeDestructor
      • class Geo GeoAllocationPage
      • class Geo GeoAllocator
      • class Geo GeoAllocatorUnchecked
      • class Geo GeoArray
      • class Geo GeoArray_Stl
      • class Geo GeoAutoArrayPtr
      • class Geo GeoAutoDeleteArray
      • class Geo GeoAutoDeleteList
      • class Geo GeoAutoDeleteMap
      • class Geo GeoAutoPtr
      • class Geo GeoAutoReleaseArray
      • class Geo GeoAutoReleaseMap
      • class Geo GeoAutoReleasePtr
      • class Geo GeoBitArray
      • class Geo GeoBitStore
      • class Geo GeoBlueNoise
      • class Geo GeoBlueNoiseDiskPalette
      • class Geo GeoBlueNoiseRayPalette
      • class Geo GeoBoundingBox
      • class Geo GeoBoundingSphere
      • class Geo GeoBufferedFileStream
      • class Geo GeoBufferedInputStream
      • class Geo GeoCriticalSection
      • class Geo GeoDebugAllocator
      • class Geo GeoDelegateDestructor
      • class Geo GeoDeleteArrayDestructor
      • class Geo GeoDeleteDestructor
      • class Geo GeoDepthCubeMap
      • class Geo GeoEmbreeContext
      • class Geo GeoEqualCString
      • class Geo GeoEvent
      • class Geo GeoFileManager
      • class Geo GeoFileStream
      • class Geo GeoFixedBinarySearchMap
      • class Geo GeoFixedBinarySearchMapCompare
      • class Geo GeoFixedPoolAllocator
      • class Geo GeoFixedString
      • class Geo GeoFlattenAndPackResults
      • class Geo GeoFp16Texture
      • class Geo GeoFpControl
      • class Geo GeoFrameTime
      • class Geo GeoFreeDestructor
      • class Geo GeoGenericTexture
      • class Geo GeoGuid
      • class Geo GeoHalf
      • class Geo GeoHashConstHandle
      • class Geo GeoHashCString
      • class Geo GeoHashDefault
      • class Geo GeoHashHandle
      • class Geo GeoHashMap
      • class Geo GeoHashString
      • class Geo GeoImmutableArray
      • class Geo GeoInputEvent
      • class Geo GeoInstanceCount
      • class Geo GeoIntRange
      • class Geo GeoIntrusivePtr
      • class Geo GeoKeyValueArray
      • class Geo GeoLineSegment
      • class Geo GeoList
      • class Geo GeoMap
      • class Geo GeoMemoryDefault
      • class Geo GeoMemoryPool
    Calendars

You‘re viewing this with anonymous access, so some content might be blocked.
/
class Geo GeoBufferedInputStream

    This is the documentation for Enlighten.

    class Geo GeoBufferedInputStream

    Nov 21, 2019

    class Geo::GeoBufferedInputStream

        └>Geo::IGeoInputStream

    An implementation of IGeoInputStream that uses another stream to fill an internal buffer.

    Functions

    Name Description
    ~IGeoInputStream()

    Deleting a stream should behave like a close operation.

    GeoBufferedInputStream(IGeoInputStream &)

    Constructor taking an underlying stream used to fill the buffer.

    GetPosition()

    Return the position of the read/write pointer within the stream (prototype matches ftell)

    GetPosition()

    Return the position of the read/write pointer within the stream (prototype matches ftell)

    IsEof()

    Is the read pointer at the end of the file (as with feof, only returns true if you have read past end)

    IsEof()

    Is the read pointer at the end of the file (as with feof, only returns true if you have read past end)

    IsOk()

    Tests if the stream is valid.

    IsOk()

    Tests if the stream is valid.

    Read(void *, size_t, size_t)

    Read data (prototype matches fread). Prefer to use the templated Read methods.

    Read(T(&))

    Read a fixed size array.

    Read(T &)

    Read a single object, returning true on success.

    Read(TIter, TIter)

    Read a collection of objects, returning true on success.

    Read(void *, size_t, size_t)

    Read data (prototype matches fread). Prefer to use the templated Read methods.

    ReadImpl(T &, GeoStd::FalseType)

    Read a single object, returning true on success.

    ReadImpl(T &, GeoStd::TrueType)

    Read a single object, returning true on success.

    ReadToEnd()

    Reads the stream to its end and returns the data as a char array.

    SetPosition(u64)

    Set the position of the read/write pointer within the stream (prototype matches fseek)

    SetPosition(Geo::u64)

    Set the position of the read/write pointer within the stream (prototype matches fseek)


    virtual Geo::IGeoInputStream::~IGeoInputStream


    public: virtual ~IGeoInputStream()


    Deleting a stream should behave like a close operation.


    Geo::GeoBufferedInputStream::GeoBufferedInputStream


    public: GeoBufferedInputStream
    (
        IGeoInputStream & stream
    )


    Constructor taking an underlying stream used to fill the buffer.


    virtual u64 Geo::GeoBufferedInputStream::GetPosition


    public: virtual u64 GetPosition() const


    Return the position of the read/write pointer within the stream (prototype matches ftell)


    virtual Geo::u64 Geo::IGeoInputStream::GetPosition


    public: Geo::u64 GetPosition() const


    Return the position of the read/write pointer within the stream (prototype matches ftell)


    virtual bool Geo::GeoBufferedInputStream::IsEof


    public: virtual bool IsEof() const


    Is the read pointer at the end of the file (as with feof, only returns true if you have read past end)


    virtual bool Geo::IGeoInputStream::IsEof


    public: bool IsEof() const


    Is the read pointer at the end of the file (as with feof, only returns true if you have read past end)


    virtual bool Geo::GeoBufferedInputStream::IsOk


    public: virtual bool IsOk() const


    Tests if the stream is valid.


    virtual bool Geo::IGeoInputStream::IsOk


    public: bool IsOk() const


    Tests if the stream is valid.


    virtual size_t Geo::GeoBufferedInputStream::Read


    public: virtual size_t Read
    (
        void * pData,
        size_t size,
        size_t count
    )


    Read data (prototype matches fread). Prefer to use the templated Read methods.


    bool Geo::IGeoInputStream::Read


    public: bool Read
    (
        T(&) a
    )


    Read a fixed size array.


    GEO_FORCE_INLINE bool Geo::IGeoInputStream::Read


    public: GEO_FORCE_INLINE bool Read
    (
        T & object
    )


    Read a single object, returning true on success.

    There must either be a ReadObject overload for T, or T be considered blittable (see IsBlittable<T>).


    bool Geo::IGeoInputStream::Read


    public: bool Read
    (
        TIter begin,
        TIter end
    )


    Read a collection of objects, returning true on success.

    Object must be considered blittable (see IsBlittable<T>). Note that the storage must have been pre-allocated as it will write directly to the iterators provided. Given that we do not have the STL-style 'back-inserter' classes, for GeoArrays you should use the ReadArray helper function.


    virtual size_t Geo::IGeoInputStream::Read


    public: size_t Read
    (
        void * pData,
        size_t size,
        size_t count
    )


    Read data (prototype matches fread). Prefer to use the templated Read methods.


    bool Geo::IGeoInputStream::ReadImpl


    public: bool ReadImpl
    (
        T & object,
        GeoStd::FalseType
    )


    Read a single object, returning true on success.

    There must either be a ReadObject overload for T, or T be considered blittable (see IsBlittable<T>).


    bool Geo::IGeoInputStream::ReadImpl


    public: bool ReadImpl
    (
        T & object,
        GeoStd::TrueType
    )


    Read a single object, returning true on success.

    There must either be a ReadObject overload for T, or T be considered blittable (see IsBlittable<T>).


    virtual Geo::GeoArray<char> Geo::IGeoInputStream::ReadToEnd


    public: virtual Geo::GeoArray< char > ReadToEnd()


    Reads the stream to its end and returns the data as a char array.


    virtual bool Geo::GeoBufferedInputStream::SetPosition


    public: virtual bool SetPosition
    (
        u64 pos
    )


    Set the position of the read/write pointer within the stream (prototype matches fseek)


    virtual bool Geo::IGeoInputStream::SetPosition


    public: bool SetPosition
    (
        Geo::u64 pos
    )


    Set the position of the read/write pointer within the stream (prototype matches fseek)

    , multiple selections available,
    {"serverDuration": 10, "requestCorrelationId": "142da2d6c52a47d88096a8337276243a"}