Alembic 1.8.11
Loading...
Searching...
No Matches
ReadUtil.h
1//-*****************************************************************************
2//
3// Copyright (c) 2013,
4// Sony Pictures Imageworks, Inc. and
5// Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
6//
7// All rights reserved.
8//
9// Redistribution and use in source and binary forms, with or without
10// modification, are permitted provided that the following conditions are
11// met:
12// * Redistributions of source code must retain the above copyright
13// notice, this list of conditions and the following disclaimer.
14// * Redistributions in binary form must reproduce the above
15// copyright notice, this list of conditions and the following disclaimer
16// in the documentation and/or other materials provided with the
17// distribution.
18// * Neither the name of Sony Pictures Imageworks, nor
19// Industrial Light & Magic nor the names of their contributors may be used
20// to endorse or promote products derived from this software without specific
21// prior written permission.
22//
23// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34//
35//-*****************************************************************************
36
37#ifndef Alembic_AbcCoreOgawa_ReadUtil_h
38#define Alembic_AbcCoreOgawa_ReadUtil_h
39
40#include <Alembic/AbcCoreOgawa/Foundation.h>
41
42namespace Alembic {
43namespace AbcCoreOgawa {
44namespace ALEMBIC_VERSION_NS {
45
46//-*****************************************************************************
47//-*****************************************************************************
48// UTILITY THING
49//-*****************************************************************************
50
51//-*****************************************************************************
52void
53ReadDimensions( Ogawa::IDataPtr iDims,
54 Ogawa::IDataPtr iData,
55 size_t iThreadId,
56 const AbcA::DataType &iDataType,
57 Util::Dimensions & oDim );
58
59//-*****************************************************************************
60void
61ReadData( void * iIntoLocation,
62 Ogawa::IDataPtr iData,
63 size_t iThreadId,
64 const AbcA::DataType &iDataType,
65 Util::PlainOldDataType iAsPod);
66
67//-*****************************************************************************
68void
69ReadArraySample( Ogawa::IDataPtr iDims,
70 Ogawa::IDataPtr iData,
71 size_t iThreadId,
72 const AbcA::DataType &iDataType,
73 AbcA::ArraySamplePtr &oSample );
74
75//-*****************************************************************************
76void
77ReadTimeSamplesAndMax( Ogawa::IDataPtr iData,
78 std::vector < AbcA::TimeSamplingPtr > & oTimeSamples,
79 std::vector < AbcA::index_t > & oMaxSamples );
80
81//-*****************************************************************************
82void
83ReadObjectHeaders( Ogawa::IGroupPtr iGroup,
84 size_t iIndex,
85 size_t iThreadId,
86 const std::string & iParentName,
87 const std::vector< AbcA::MetaData > & iMetaDataVec,
88 std::vector< ObjectHeaderPtr > & oHeaders );
89
90//-*****************************************************************************
91void
92ReadPropertyHeaders( Ogawa::IGroupPtr iGroup,
93 size_t iIndex,
94 size_t iThreadId,
95 AbcA::ArchiveReader & iArchive,
96 const std::vector< AbcA::MetaData > & iMetaDataVec,
97 PropertyHeaderPtrs & oHeaders );
98
99//-*****************************************************************************
100void
101ReadIndexedMetaData( Ogawa::IDataPtr iData,
102 std::vector< AbcA::MetaData > & oMetaDataVec );
103
104} // End namespace ALEMBIC_VERSION_NS
105
106using namespace ALEMBIC_VERSION_NS;
107
108} // End namespace AbcCoreOgawa
109} // End namespace Alembic
110
111#endif
Alembic namespace ...
Definition ArchiveInfo.cpp:39