19#ifndef vtkObjectManager_h
20#define vtkObjectManager_h
24#include "vtkSerializationManagerModule.h"
33#include "vtkTypeUInt32Array.h"
38VTK_ABI_NAMESPACE_BEGIN
40class vtkTypeUInt8Array;
60#if !defined(__VTK_WRAP__)
62 const std::vector<vtkSessionObjectManagerRegistrarFunc>& registrars);
149 std::vector<std::string>
GetBlobHashes(
const std::vector<vtkTypeUInt32>& ids);
219 vtkTypeUInt32 identifier,
const std::string& methodName,
const std::string& args);
221 vtkTypeUInt32 identifier,
const std::string& methodName,
const nlohmann::json& args);
230 void Export(
const std::string& filename,
int indentLevel = -1,
char indentChar =
' ');
237 void Import(
const std::string& stateFileName,
const std::string& blobFileName);
249 static vtkTypeUInt32
ROOT() {
return 0; }
Deserialize VTK objects from JSON.
a simple class to control print indentation
Deserialize VTK objects from JSON.
Shared context used by vtkSerializer and vtkDeserializer
Allocate and hold a VTK object.
vtkObjectManager maintains internal instances of vtkSerializer and a vtkDeserializer to serialize and...
void Import(const std::string &stateFileName, const std::string &blobFileName)
Reads state from state file and blobs from blob file.
bool InitializeDefaultHandlers()
Loads the default (de)serialization handlers and constructors for VTK classes.
void UpdateObjectFromState(const nlohmann::json &state)
Deserialize the state into vtk object.
void UpdateObjectFromState(const std::string &state)
Deserialize the state into vtk object.
bool RegisterState(const std::string &state)
Adds state into an internal container and returns a unique identifier.
bool UnRegisterObject(vtkTypeUInt32 identifier)
Removes an object and it's state.
vtkNew< vtkInvoker > Invoker
vtkNew< vtkDeserializer > Deserializer
void UpdateStatesFromObjects()
Serialize registered objects into states.
bool UnRegisterBlob(const std::string &hash)
Removes a blob stored at hash.
vtkSmartPointer< vtkObjectBase > GetObjectAtId(vtkTypeUInt32 id)
Get object at id.
void UpdateStatesFromObjects(const std::vector< vtkTypeUInt32 > &identifiers)
This method is similar to void UpdateStatesFromObjects().
void Export(const std::string &filename, int indentLevel=-1, char indentChar=' ')
Writes state of all registered objects to filename.states.json The blobs are written into filename....
bool RegisterState(const nlohmann::json &state)
Adds state into an internal container and returns a unique identifier.
nlohmann::json Invoke(vtkTypeUInt32 identifier, const std::string &methodName, const nlohmann::json &args)
vtkSmartPointer< vtkTypeUInt32Array > GetAllDependenciesAsVTKDataArray(vtkTypeUInt32 identifier)
Returns a non-empty vector of identifiers of all objects that depend on an object with the given iden...
bool InitializeExtensionModuleHandlers(const vtkSessionObjectManagerRegistrarFunc *registrars, std::size_t count)
void SetObjectManagerLogVerbosity(vtkLogger::Verbosity verbosity)
Set/Get the log verbosity of messages that are emitted when data is uploaded to GPU memory.
vtkSmartPointer< vtkMarshalContext > Context
std::size_t GetTotalBlobMemoryUsage()
vtkLogger::Verbosity GetObjectManagerLogVerbosity()
Set/Get the log verbosity of messages that are emitted when data is uploaded to GPU memory.
void PruneUnusedObjects()
Removes all objects that are neither referenced by this manager or any other object.
vtkSmartPointer< vtkTypeUInt8Array > GetBlob(const std::string &hash, bool copy=false) const
Returns a blob stored at hash.
std::string Invoke(vtkTypeUInt32 identifier, const std::string &methodName, const std::string &args)
~vtkObjectManager() override
bool UnRegisterState(vtkTypeUInt32 identifier)
Removes a state at id.
void UpdateObjectsFromStates()
Deserialize registered states into vtk objects.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkNew< vtkSerializer > Serializer
void PruneUnusedStates()
Removes all states whose corresponding objects no longer exist.
static vtkTypeUInt32 ROOT()
void UpdateStateFromObject(vtkTypeUInt32 identifier)
Serialize object at identifier into the state.
vtkTypeUInt32 RegisterObject(vtkSmartPointer< vtkObjectBase > objectBase)
Adds object into an internal container and returns a unique identifier.
vtkTypeUInt32 GetId(vtkSmartPointer< vtkObjectBase > objectBase)
Get the identifier for object.
bool RegisterBlob(const std::string &hash, vtkSmartPointer< vtkTypeUInt8Array > blob)
Specifies a blob for hash.
virtual bool Initialize()
Loads the default (de)serialization handlers and constructors for VTK classes.
void PruneUnusedBlobs()
Removes all blob(s) whose hash is not found in the state of any object registered directly or indirec...
std::vector< std::string > GetBlobHashes(const std::vector< vtkTypeUInt32 > &ids)
Returns a non-empty vector of hash strings that correspond to blobs used by the registered objects at...
std::size_t GetTotalVTKDataObjectMemoryUsage()
bool InitializeExtensionModuleHandlers(const std::vector< vtkSessionObjectManagerRegistrarFunc > ®istrars)
Loads user provided handlers.
bool InitializeExtensionModuleHandler(void *registrar)
Loads user provided handler.
std::vector< vtkTypeUInt32 > GetAllDependencies(vtkTypeUInt32 identifier)
Returns a non-empty vector of identifiers of all objects that depend on an object with the given iden...
std::string GetState(vtkTypeUInt32 id)
Get state of the object at id.
static vtkObjectManager * New()
static const char * OWNERSHIP_KEY()
void Clear()
Reset to initial state.
abstract base class for most VTK objects
Serialize VTK objects to JSON.
Hold a reference to a vtkObjectBase instance.
This header file provides the C API for working with standalone/remote visualization applications.
int(* vtkSessionObjectManagerRegistrarFunc)(void *ser, void *deser, void *invoker, const char **error)