vtkSMPropertyHelper.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkSMPropertyHelper.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 /*
16 * Copyright (c) 2007, Sandia Corporation
17 * All rights reserved.
18 *
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions are met:
21 * * Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * * Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
26 * * Neither the name of the Sandia Corporation nor the
27 * names of its contributors may be used to endorse or promote products
28 * derived from this software without specific prior written permission.
29 *
30 * THIS SOFTWARE IS PROVIDED BY Sandia Corporation ``AS IS'' AND ANY
31 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
32 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
33 * DISCLAIMED. IN NO EVENT SHALL Sandia Corporation BE LIABLE FOR ANY
34 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
35 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
36 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
37 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
39 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 */
60 #ifndef vtkSMPropertyHelper_h
61 #define vtkSMPropertyHelper_h
62 
63 #include "vtkRemotingServerManagerModule.h" //needed for exports
64 #include "vtkSMObject.h"
65 #include "vtkVariant.h"
66 
67 #include <vector>
68 
69 #ifdef INT
70 #undef INT
71 #endif
72 #ifdef DOUBLE
73 #undef DOUBLE
74 #endif
75 #ifdef NONE
76 #undef NONE
77 #endif
78 
79 class vtkSMProperty;
80 class vtkSMProxy;
86 class vtkSMProxyProperty;
87 class vtkSMInputProperty;
88 
90 {
91 public:
93 
97  vtkSMPropertyHelper(vtkSMProxy* proxy, const char* name, bool quiet = false);
98  vtkSMPropertyHelper(vtkSMProperty* property, bool quiet = false);
101 
107  void UpdateValueFromServer();
108 
113  void SetNumberOfElements(unsigned int elems);
114 
119  unsigned int GetNumberOfElements() const;
120 
124  void RemoveAllValues() { this->SetNumberOfElements(0); }
125 
129  vtkVariant GetAsVariant(unsigned int index) const;
130 
135  template <class T>
136  std::vector<T> GetArray() const;
137 
142  template <class T>
143  T GetAs(unsigned int index = 0) const;
144 
146 
150  void Set(int value) { this->Set(0, value); }
151  void Set(unsigned int index, int value);
152  void Set(const int* values, unsigned int count);
153  void Append(const int* values, unsigned int count);
154  int GetAsInt(unsigned int index = 0) const;
155  unsigned int Get(int* values, unsigned int count = 1) const;
156  std::vector<int> GetIntArray() const;
158 
160 
164  void Set(double value) { this->Set(0, value); }
165  void Set(unsigned int index, double value);
166  void Set(const double* values, unsigned int count);
167  void Append(const double* values, unsigned int count);
168  double GetAsDouble(unsigned int index = 0) const;
169  unsigned int Get(double* values, unsigned int count = 1) const;
170  std::vector<double> GetDoubleArray() const;
172 
173 #if VTK_SIZEOF_ID_TYPE != VTK_SIZEOF_INT
174 
175 
179  void Set(vtkIdType value) { this->Set(0, value); }
180  void Set(unsigned int index, vtkIdType value);
181  void Set(const vtkIdType* values, unsigned int count);
182  void Append(const vtkIdType* values, unsigned int count);
183  unsigned int Get(vtkIdType* values, unsigned int count = 1) const;
184 #endif
185  vtkIdType GetAsIdType(unsigned int index = 0) const;
186  std::vector<vtkIdType> GetIdTypeArray() const;
188 
190 
197  void Set(const char* value) { this->Set(0, value); }
198  void Set(unsigned int index, const char* value);
199  const char* GetAsString(unsigned int index = 0) const;
201 
203 
208  void Set(vtkSMProxy* value, unsigned int outputport = 0) { this->Set(0, value, outputport); }
209  void Set(unsigned int index, vtkSMProxy* value, unsigned int outputport = 0);
210  void Set(vtkSMProxy** value, unsigned int count, unsigned int* outputports = NULL);
211  void Add(vtkSMProxy* value, unsigned int outputport = 0);
212  void Remove(vtkSMProxy* value);
213  vtkSMProxy* GetAsProxy(unsigned int index = 0) const;
214  unsigned int GetOutputPort(unsigned int index = 0) const;
216 
218 
223  void SetStatus(const char* key, int value);
224  int GetStatus(const char* key, int default_value = 0) const;
226 
228 
233  void SetStatus(const char* key, double* values, int num_values);
234  bool GetStatus(const char* key, double* values, int num_values) const;
236 
238 
243  void SetStatus(const int key, int* values, int num_values);
244  bool GetStatus(const int key, int* values, int num_values) const;
246 
248 
253  void SetStatus(const char* key, const char* value);
254  const char* GetStatus(const char* key, const char* default_value) const;
256 
258 
263  void SetStatus(const int key, int value);
264  int GetStatus(const int key, int default_value = 0) const;
266 
268 
273  void SetInputArrayToProcess(int fieldAssociation, const char* arrayName);
274  int GetInputArrayAssociation() const;
275  const char* GetInputArrayNameToProcess() const;
277 
281  void SetUseUnchecked(bool val) { this->UseUnchecked = val; }
282  bool GetUseUnchecked() const { return this->UseUnchecked; }
283 
289  bool Copy(const vtkSMPropertyHelper& source);
290 
295  vtkSMPropertyHelper& Modified();
296 
297 protected:
298  void setUseUnchecked(bool useUnchecked) { this->UseUnchecked = useUnchecked; }
299 
300 private:
301  vtkSMPropertyHelper(const vtkSMPropertyHelper&) = delete;
302  void operator=(const vtkSMPropertyHelper&) = delete;
303  void Initialize(vtkSMProperty* property);
304 
305  template <typename T>
306  T GetProperty(unsigned int index) const;
307  template <typename T>
308  std::vector<T> GetPropertyArray() const;
309  template <typename T>
310  unsigned int GetPropertyArray(T* values, unsigned int count = 1) const;
311  template <typename T>
312  void SetProperty(unsigned int index, T value);
313  template <typename T>
314  void SetPropertyArray(const T* values, unsigned int count);
315  void SetPropertyArrayIdType(const vtkIdType* values, unsigned int count);
316  template <typename T>
317  void AppendPropertyArray(const T* values, unsigned int count);
318  template <typename T>
319  bool CopyInternal(const vtkSMPropertyHelper& source);
320 
321  enum PType
322  {
323  INT,
324  DOUBLE,
325  IDTYPE,
326  STRING,
327  PROXY,
328  INPUT,
329  NONE
330  };
331 
332  bool Quiet;
333  bool UseUnchecked;
334  vtkSMProxy* Proxy;
335  PType Type;
336 
337  union {
346  };
347 };
348 
349 template <>
350 inline std::vector<int> vtkSMPropertyHelper::GetArray() const
351 {
352  return this->GetIntArray();
353 }
354 
355 template <>
356 inline std::vector<double> vtkSMPropertyHelper::GetArray() const
357 {
358  return this->GetDoubleArray();
359 }
360 
361 #if VTK_SIZEOF_ID_TYPE != VTK_SIZEOF_INT
362 template <>
363 inline std::vector<vtkIdType> vtkSMPropertyHelper::GetArray() const
364 {
365  return this->GetIdTypeArray();
366 }
367 #endif
368 
369 template <>
370 inline int vtkSMPropertyHelper::GetAs(unsigned int index) const
371 {
372  return this->GetAsInt(index);
373 }
374 
375 template <>
376 inline double vtkSMPropertyHelper::GetAs(unsigned int index) const
377 {
378  return this->GetAsDouble(index);
379 }
380 
381 #if VTK_SIZEOF_ID_TYPE != VTK_SIZEOF_INT
382 template <>
383 inline vtkIdType vtkSMPropertyHelper::GetAs(unsigned int index) const
384 {
385  return this->GetAsIdType(index);
386 }
387 #endif
388 
389 #endif
390 
391 // VTK-HeaderTest-Exclude: vtkSMPropertyHelper.h
void Set(const char *value)
Set/Get methods for vtkSMStringVectorProperty.
vtkSMInputProperty * InputProperty
vtkSMDoubleVectorProperty * DoubleVectorProperty
property representing pointer(s) to vtkObject(s)
vtkSMProxyProperty * ProxyProperty
void setUseUnchecked(bool useUnchecked)
#define VTKREMOTINGSERVERMANAGER_EXPORT
property representing a vector of strings
vtkSMIdTypeVectorProperty * IdTypeVectorProperty
vtkSMStringVectorProperty * StringVectorProperty
superclass for all SM properties
void Set(vtkSMProxy *value, unsigned int outputport=0)
Set/Get methods for vtkSMProxyProperty or vtkSMInputProperty.
int vtkIdType
vtkSMVectorProperty * VectorProperty
void Set(double value)
Set/Get methods with double API.
property representing a vector of integers
abstract superclass for all vector properties
name
void RemoveAllValues()
Equivalent to SetNumberOfElements(0).
property representing a vector of integers
const int NONE
std::vector< T > GetArray() const
Templated method to call GetIntArray(), GetDoubleArray(), GetIdTypeArray().
vtkSMProperty * Property
T GetAs(unsigned int index=0) const
Templated method to call GetAsInt(), GetAsDouble(), GetAsIdType() Note, we only provide implementatio...
property representing a vector of doubles
source
void SetUseUnchecked(bool val)
Get/Set whether to use unchecked properties.
proxy for a VTK object(s) on a server
Definition: vtkSMProxy.h:152
value
void Set(int value)
Set/Get methods with int API.
index
vtkSMIntVectorProperty * IntVectorProperty
proxy representing inputs to a filter
key
helper class to get/set property values.