Alembic 1.8.11
Loading...
Searching...
No Matches
Foundation.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_Foundation_h
38#define Alembic_AbcCoreOgawa_Foundation_h
39
40#include <Alembic/AbcCoreAbstract/All.h>
41
42#include <Alembic/Util/All.h>
43
44#include <Alembic/Ogawa/All.h>
45
46#include <vector>
47#include <string>
48#include <map>
49
50#include <iostream>
51
52#include <stdlib.h>
53#include <stdio.h>
54#include <assert.h>
55#include <string.h>
56
57#define ALEMBIC_OGAWA_FILE_VERSION 0
58
59//-*****************************************************************************
60
61namespace Alembic {
62namespace AbcCoreOgawa {
63namespace ALEMBIC_VERSION_NS {
64
65//-*****************************************************************************
66namespace AbcA = ::Alembic::AbcCoreAbstract;
67
68using AbcA::index_t;
69using AbcA::chrono_t;
70
71//-*****************************************************************************
72typedef Alembic::Util::weak_ptr<AbcA::ObjectWriter> WeakOwPtr;
73typedef Alembic::Util::weak_ptr<AbcA::BasePropertyWriter> WeakBpwPtr;
74
75typedef Alembic::Util::weak_ptr<AbcA::ObjectReader> WeakOrPtr;
76typedef Alembic::Util::weak_ptr<AbcA::BasePropertyReader> WeakBprPtr;
77
78//-*****************************************************************************
79struct PropertyHeaderAndFriends
80{
81 PropertyHeaderAndFriends()
82 {
83 isScalarLike = true;
84 isHomogenous = true;
85 nextSampleIndex = 0;
86 firstChangedIndex = 0;
87 lastChangedIndex = 0;
88 timeSamplingIndex = 0;
89 }
90
91 // for compounds
92 PropertyHeaderAndFriends( const std::string &iName,
93 const AbcA::MetaData &iMetaData ) :
94 header( iName, iMetaData )
95 {
96 isScalarLike = true;
97 isHomogenous = true;
98 nextSampleIndex = 0;
99 firstChangedIndex = 0;
100 lastChangedIndex = 0;
101 timeSamplingIndex = 0;
102 }
103
104 // for scalar and array properties
105 PropertyHeaderAndFriends( const std::string &iName,
106 AbcA::PropertyType iPropType,
107 const AbcA::MetaData &iMetaData,
108 const AbcA::DataType &iDataType,
109 const AbcA::TimeSamplingPtr & iTsamp,
110 Util::uint32_t iTimeSamplingIndex ) :
111 header( iName, iPropType, iMetaData, iDataType, iTsamp ),
112 timeSamplingIndex( iTimeSamplingIndex )
113 {
114 isScalarLike = true;
115 isHomogenous = true;
116 nextSampleIndex = 0;
117 firstChangedIndex = 0;
118 lastChangedIndex = 0;
119 }
120
121 // convenience function that makes sure the incoming index is ok, and
122 // offsets it to the proper index within the Ogawa group
123 size_t verifyIndex( index_t iIndex )
124 {
125 // Verify sample index
126 ABCA_ASSERT( iIndex >= 0 &&
127 iIndex < nextSampleIndex,
128 "Invalid sample index: " << iIndex
129 << ", should be between 0 and " << nextSampleIndex - 1 );
130
131 Util::uint32_t index = ( Util::uint32_t ) iIndex;
132 if ( index < firstChangedIndex )
133 {
134 return 0;
135 }
136 // constant case
137 else if ( firstChangedIndex == lastChangedIndex &&
138 firstChangedIndex == 0 )
139 {
140 return 0;
141 }
142 else if ( index >= lastChangedIndex )
143 {
144 return ( size_t ) ( lastChangedIndex - firstChangedIndex + 1 );
145 }
146
147 return ( size_t ) ( index - firstChangedIndex + 1 );
148 }
149
150 // The header which defines this property.
151 AbcA::PropertyHeader header;
152
153 bool isScalarLike;
154
155 bool isHomogenous;
156
157 // Index of the next sample to write
158 Util::uint32_t nextSampleIndex;
159
160 // Index representing the first sample that is different from sample 0
161 Util::uint32_t firstChangedIndex;
162
163 // Index representing the last sample in which a change has occured
164 // There is no need to repeat samples if they are the same between this
165 // index and nextSampleIndex
166 Util::uint32_t lastChangedIndex;
167
168 // Index representing which TimeSampling from the ArchiveWriter to use.
169 Util::uint32_t timeSamplingIndex;
170};
171
172typedef Alembic::Util::shared_ptr<PropertyHeaderAndFriends> PropertyHeaderPtr;
173typedef std::vector<PropertyHeaderPtr> PropertyHeaderPtrs;
174
175typedef Alembic::Util::shared_ptr<AbcA::ObjectHeader> ObjectHeaderPtr;
176
177} // End namespace ALEMBIC_VERSION_NS
178
179using namespace ALEMBIC_VERSION_NS;
180
181} // End namespace AbcCoreOgawa
182} // End namespace Alembic
183
184#endif
Alembic namespace ...
Definition ArchiveInfo.cpp:39