1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
/*=========================================================================
Program: ParaView
Module: TestSettings.cxx
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkInitializationHelper.h"
#include "vtkNew.h"
#include "vtkProcessModule.h"
#include "vtkSmartPointer.h"
#include "vtkSMDoubleVectorProperty.h"
#include "vtkSMParaViewPipelineController.h"
#include "vtkSMPropertyHelper.h"
#include "vtkSMProxy.h"
#include "vtkSMSession.h"
#include "vtkSMSessionProxyManager.h"
#include "vtkSMSettings.h"
#include <sstream>
#include <assert.h>
#include <vtk_jsoncpp.h>
int TestSettings(int argc, char* argv[])
{
(void) argc;
vtkInitializationHelper::Initialize(argv[0], vtkProcessModule::PROCESS_CLIENT);
// Set up settings
const char * settingString =
"{\n"
" \"sources\" : {\n"
" \"SphereSource\" : {\n"
" \"Radius\" : 4.25,\n"
" \"Center\" : [1, 2, 3]\n"
" }\n"
" }\n"
"}\n";
cout << settingString;
vtkSMSettings * settings = vtkSMSettings::GetInstance();
settings->AddCollectionFromString(settingString, 1.0);
const char * higherPrioritySettingsString =
"{\n"
" \"sources\" : {\n"
" \"SphereSource\" : {\n"
" \"Radius\" : 1.0\n"
" }\n"
" }\n"
"}\n";
settings->AddCollectionFromString(higherPrioritySettingsString, 2.0);
vtkNew<vtkSMParaViewPipelineController> controller;
// Create a new session.
vtkSMSession* session = vtkSMSession::New();
vtkSMSessionProxyManager* pxm = session->GetSessionProxyManager();
if (!controller->InitializeSession(session))
{
cerr << "Failed to initialize ParaView session." << endl;
return EXIT_FAILURE;
}
// Create sphere source
vtkSmartPointer<vtkSMProxy> sphere;
sphere.TakeReference(pxm->NewProxy("sources", "SphereSource"));
controller->PreInitializeProxy(sphere);
controller->PostInitializeProxy(sphere);
// Check the sphere radius. It should be set from the settings.
vtkSMDoubleVectorProperty* radiusProperty =
vtkSMDoubleVectorProperty::SafeDownCast(sphere->GetProperty("Radius"));
if (radiusProperty)
{
if (radiusProperty->GetElement(0) != 1.0)
{
cerr << "Failed at " << __LINE__ << endl;
return EXIT_FAILURE;
}
// Check the sphere center. It should be set from the settings.
vtkSMDoubleVectorProperty* centerProperty =
vtkSMDoubleVectorProperty::SafeDownCast(sphere->GetProperty("Center"));
if (centerProperty->GetElement(0) != 1.0 ||
centerProperty->GetElement(1) != 2.0 ||
centerProperty->GetElement(2) != 3.0)
{
cerr << "Failed at " << __LINE__ << endl;
return EXIT_FAILURE;
}
}
else
{
cerr << "Could not get Radius property\n";
}
// Test saving different number of repeatable property values
vtkSmartPointer<vtkSMProxy> contour;
contour.TakeReference(pxm->NewProxy("filters", "Contour"));
controller->PreInitializeProxy(contour);
vtkSMPropertyHelper(contour, "Input").Set(sphere);
controller->PostInitializeProxy(contour);
vtkSMDoubleVectorProperty* contourValuesProperty =
vtkSMDoubleVectorProperty::SafeDownCast(contour->GetProperty("ContourValues"));
if (!contourValuesProperty)
{
std::cerr << "No contour values property in GenericContour\n";
return EXIT_FAILURE;
}
// Double vector property resize
contourValuesProperty->SetNumberOfElements(1);
contourValuesProperty->SetElement(0, -1.0);
settings->SetProxySettings(contour);
contourValuesProperty->SetNumberOfElements(2);
contourValuesProperty->SetElement(0, -2.0);
contourValuesProperty->SetElement(1, -3.0);
settings->SetProxySettings(contour);
vtkSMPropertyHelper(sphere, "Radius").Set(12);
Json::Value state = vtkSMSettings::SerializeAsJSON(sphere);
cout << state.toStyledString() << endl;
vtkSMPropertyHelper(sphere, "Radius").Set(1);
if (!vtkSMSettings::DeserializeFromJSON(sphere, state) ||
vtkSMPropertyHelper(sphere, "Radius").GetAsInt() != 12)
{
cerr << "Failed to DeserializeFromJSON." << endl;
return EXIT_FAILURE;
}
session->Delete();
vtkInitializationHelper::Finalize();
return EXIT_SUCCESS;
}
|