HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
HUSD_LockedStage.h
Go to the documentation of this file.
1 /*
2  * Copyright 2019 Side Effects Software Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 
18 #ifndef __HUSD_LockedStage_h__
19 #define __HUSD_LockedStage_h__
20 
21 #include "HUSD_API.h"
22 #include "HUSD_DataHandle.h"
23 #include "HUSD_Utils.h"
24 #include <UT/UT_Options.h>
25 #include <UT/UT_StringHolder.h>
26 #include <UT/UT_UniquePtr.h>
27 
28 // This class wraps a stage that is constructed from a LOP node by the
29 // HUSD_LockedStageRegistry, and which is guaranteed not to change, even if
30 // the node recooks. This is used primarily by reference and sublayer LOPs
31 // which can reference their inputs. But we may reference the same input
32 // multiple times, with different context options values. So we actually
33 // need to reference a locked copy of the LOP's stage.
34 //
35 // Only the HUSD_LockedStageRegistry singleton should create these objects,
36 // though they may be destroyed by anyone that holds onto a shared pointer
37 // to one. Only const methods are exposed publicly.
39 {
40 public:
42 
43  bool isValid() const;
44  bool strippedLayers() const
45  { return myStrippedLayers; }
46  fpreal time() const
47  { return myTime; }
49  { return myRootLayerIdentifier; }
51  { return myStageCacheIdentifier; }
52 
53 private:
55  int nodeid,
56  int output_index,
57  bool strip_layers,
58  fpreal t,
59  const UT_Options &opts);
60 
61  bool lockStage(const HUSD_DataHandle &data,
62  int nodeid,
63  int output_index,
64  bool strip_layers,
65  fpreal t,
66  const UT_Options &opts);
67 
68  class husd_LockedStagePrivate;
69 
71  UT_StringHolder myRootLayerIdentifier;
72  UT_StringHolder myStageCacheIdentifier;
73  UT_Options myOptions;
74  fpreal myTime;
75  bool myStrippedLayers;
77 };
78 
79 #endif
80 
bool strippedLayers() const
#define HUSD_API
Definition: HUSD_API.h:31
std::unique_ptr< T, Deleter > UT_UniquePtr
A smart pointer for unique ownership of dynamically allocated objects.
Definition: UT_UniquePtr.h:39
const UT_StringHolder & getRootLayerIdentifier() const
GLdouble t
Definition: glad.h:2397
A map of string to various well defined value types.
Definition: UT_Options.h:87
fpreal time() const
fpreal64 fpreal
Definition: SYS_Types.h:278
const UT_StringHolder & getStageCacheIdentifier() const
Definition: format.h:1821