/usr/include/paraview/vtkClientServerStream.h is in paraview-dev 5.0.1+dfsg1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 | /*=========================================================================
Program: ParaView
Module: vtkClientServerStream.h
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.
=========================================================================*/
// .NAME vtkClientServerStream - Store messages for the interpreter.
// .SECTION Description
// vtkClientServerStream will store zero or more almost arbitrary
// messages in a platform-independent manner. The stream's data may
// be copied from one platform to another via GetData/SetData methods,
// and the message represented will remain unchanged. Messages are
// used to represent both commands and results for
// vtkClientServerInterpreter, but they may be used for any purpose.
#ifndef vtkClientServerStream_h
#define vtkClientServerStream_h
#include "vtkClientServerID.h"
#include "vtkVariant.h"
class vtkClientServerStreamInternals;
class VTKCLIENTSERVER_EXPORT vtkClientServerStream
{
public:
// Description:
// Constructor/Destructor manage references of vtk objects stored in
// the stream along with the rest of the stream data.
vtkClientServerStream(vtkObjectBase* owner=0);
~vtkClientServerStream();
// Description:
// Copy constructor and assignment operator copy all stream data.
vtkClientServerStream(const vtkClientServerStream&, vtkObjectBase* owner=0);
vtkClientServerStream& operator=(const vtkClientServerStream&);
// Description:
// Enumeration of message types that may be stored in a stream.
// This must be kept in sync with the string table in this class's
// .cxx file.
enum Commands { New, Invoke, Delete, Assign,
Reply, Error, EndOfCommands};
// Description:
// Enumeration of data types that may be stored in a stream. This
// must be kept in sync with the string table in this class's .cxx
// file.
enum Types {
int8_value, int8_array,
int16_value, int16_array,
int32_value, int32_array,
int64_value, int64_array,
uint8_value, uint8_array,
uint16_value, uint16_array,
uint32_value, uint32_array,
uint64_value, uint64_array,
float32_value, float32_array,
float64_value, float64_array,
bool_value,
string_value,
id_value,
vtk_object_pointer,
stream_value,
LastResult,
End
};
// Description:
// Ask the stream to allocate at least the given size in memory to
// avoid too many reallocations during stream construction.
void Reserve(size_t size);
// Description:
// Reset the stream to an empty state.
void Reset();
// Description:
// Copy the stream contents from another stream.
void Copy(const vtkClientServerStream* source);
//--------------------------------------------------------------------------
// Stream reading methods:
// Description:
// Get the number of complete messages currently stored in the
// stream.
int GetNumberOfMessages() const;
// Description:
// Get the command in the message with the given index. Returns
// EndOfCommands if the given index is out of range.
vtkClientServerStream::Commands GetCommand(int message) const;
// Description:
// Get the number of arguments in the message with the given index.
// Returns a value less than 0 if the given index is out of range.
int GetNumberOfArguments(int message) const;
// Description:
// Get the type of the given argument in the given message. Returns
// End if either index is out of range.
vtkClientServerStream::Types GetArgumentType(int message, int argument) const;
// Description:
// Get the value of the given argument in the given message.
// Returns whether the argument could be converted to the requested
// type.
int GetArgument(int message, int argument, bool* value) const;
int GetArgument(int message, int argument, signed char* value) const;
int GetArgument(int message, int argument, char* value) const;
int GetArgument(int message, int argument, short* value) const;
int GetArgument(int message, int argument, int* value) const;
int GetArgument(int message, int argument, long* value) const;
int GetArgument(int message, int argument, unsigned char* value) const;
int GetArgument(int message, int argument, unsigned short* value) const;
int GetArgument(int message, int argument, unsigned int* value) const;
int GetArgument(int message, int argument, unsigned long* value) const;
int GetArgument(int message, int argument, float* value) const;
int GetArgument(int message, int argument, double* value) const;
#if defined(VTK_TYPE_USE_LONG_LONG)
int GetArgument(int message, int argument, long long* value) const;
int GetArgument(int message, int argument, unsigned long long* value) const;
#endif
#if defined(VTK_TYPE_USE___INT64)
int GetArgument(int message, int argument, __int64* value) const;
int GetArgument(int message, int argument, unsigned __int64* value) const;
#endif
int GetArgument(int message, int argument, signed char* value, vtkTypeUInt32 length) const;
int GetArgument(int message, int argument, char* value, vtkTypeUInt32 length) const;
int GetArgument(int message, int argument, short* value, vtkTypeUInt32 length) const;
int GetArgument(int message, int argument, int* value, vtkTypeUInt32 length) const;
int GetArgument(int message, int argument, long* value, vtkTypeUInt32 length) const;
int GetArgument(int message, int argument, unsigned char* value, vtkTypeUInt32 length) const;
int GetArgument(int message, int argument, unsigned short* value, vtkTypeUInt32 length) const;
int GetArgument(int message, int argument, unsigned int* value, vtkTypeUInt32 length) const;
int GetArgument(int message, int argument, unsigned long* value, vtkTypeUInt32 length) const;
int GetArgument(int message, int argument, float* value, vtkTypeUInt32 length) const;
int GetArgument(int message, int argument, double* value, vtkTypeUInt32 length) const;
#if defined(VTK_TYPE_USE_LONG_LONG)
int GetArgument(int message, int argument, long long* value, vtkTypeUInt32 length) const;
int GetArgument(int message, int argument, unsigned long long* value, vtkTypeUInt32 length) const;
#endif
#if defined(VTK_TYPE_USE___INT64)
int GetArgument(int message, int argument, __int64* value, vtkTypeUInt32 length) const;
int GetArgument(int message, int argument, unsigned __int64* value, vtkTypeUInt32 length) const;
#endif
int GetArgument(int message, int argument, const char** value) const;
int GetArgument(int message, int argument, char** value) const;
int GetArgument(int message, int argument, vtkStdString* value) const;
int GetArgument(int message, int argument, std::string* value) const;
int GetArgument(int message, int argument, vtkClientServerStream* value) const;
int GetArgument(int message, int argument, vtkClientServerID* value) const;
int GetArgument(int message, int argument, vtkObjectBase** value) const;
// Description:
// Get the value of the given argument in the given message.
// Returns whether the argument could be converted to the requested
// type.
//
// Note that this version modifies the \a argument number as a vtkVariant
// is passed in the stream as a composite type with a variable
// number of primitive stream entries required to describe it.
int GetArgument(int message, int& argument, vtkVariant* value) const;
// Description:
// Get the length of an argument of an array type. Returns whether
// the argument is really an array type.
int GetArgumentLength(int message, int argument, vtkTypeUInt32* length) const;
// Description:
// Get the given argument in the given message as an object of a
// particular vtkObjectBase type. Returns whether the argument is
// really of the requested type.
int GetArgumentObject(int message, int argument, vtkObjectBase** value,
const char* type) const;
// Description:
// Proxy-object returned by the two-argument form of GetArgument.
// This is suitable to be stored in another stream.
struct Argument
{
const unsigned char* Data;
size_t Size;
};
// Description:
// Get the given argument of the given message in a form that can be
// sent to another stream. Returns an empty argument if it either
// index is out of range.
vtkClientServerStream::Argument GetArgument(int message,
int argument) const;
// Description:
// Get a pointer to the stream data and its length. The values are
// suitable for passing to another stream's SetData method, but are
// invalidated when any further writing to the stream is done.
// Returns whether the stream is currently valid.
int GetData(const unsigned char** data, size_t* length) const;
//--------------------------------------------------------------------------
// Stream writing methods:
// Description:
// Proxy-object returned by InsertArray and used to insert
// array data into the stream.
struct Array
{
Types Type;
vtkTypeUInt32 Length;
vtkTypeUInt32 Size;
const void* Data;
};
// Description:
// Stream operators for special types.
vtkClientServerStream& operator << (vtkClientServerStream::Commands);
vtkClientServerStream& operator << (vtkClientServerStream::Types);
vtkClientServerStream& operator << (vtkClientServerStream::Argument);
vtkClientServerStream& operator << (vtkClientServerStream::Array);
vtkClientServerStream& operator << (const vtkClientServerStream&);
vtkClientServerStream& operator << (vtkClientServerID);
vtkClientServerStream& operator << (vtkObjectBase*);
vtkClientServerStream& operator << (const vtkStdString&);
vtkClientServerStream& operator << (const vtkVariant&);
// Description:
// Stream operators for native types.
vtkClientServerStream& operator << (bool value);
vtkClientServerStream& operator << (char value);
vtkClientServerStream& operator << (short value);
vtkClientServerStream& operator << (int value);
vtkClientServerStream& operator << (long value);
vtkClientServerStream& operator << (signed char value);
vtkClientServerStream& operator << (unsigned char value);
vtkClientServerStream& operator << (unsigned short value);
vtkClientServerStream& operator << (unsigned int value);
vtkClientServerStream& operator << (unsigned long value);
#if defined(VTK_TYPE_USE_LONG_LONG)
vtkClientServerStream& operator << (long long value);
vtkClientServerStream& operator << (unsigned long long value);
#endif
#if defined(VTK_TYPE_USE___INT64)
vtkClientServerStream& operator << (__int64 value);
vtkClientServerStream& operator << (unsigned __int64 value);
#endif
vtkClientServerStream& operator << (float value);
vtkClientServerStream& operator << (double value);
vtkClientServerStream& operator << (const char *value);
// Description:
// Allow arrays to be passed into the stream.
static vtkClientServerStream::Array InsertArray(const char*, int);
static vtkClientServerStream::Array InsertArray(const short*, int);
static vtkClientServerStream::Array InsertArray(const int*, int);
static vtkClientServerStream::Array InsertArray(const long*, int);
static vtkClientServerStream::Array InsertArray(const signed char*, int);
static vtkClientServerStream::Array InsertArray(const unsigned char*, int);
static vtkClientServerStream::Array InsertArray(const unsigned short*, int);
static vtkClientServerStream::Array InsertArray(const unsigned int*, int);
static vtkClientServerStream::Array InsertArray(const unsigned long*, int);
#if defined(VTK_TYPE_USE_LONG_LONG)
static vtkClientServerStream::Array InsertArray(const long long*, int);
static vtkClientServerStream::Array InsertArray(const unsigned long long*, int);
#endif
#if defined(VTK_TYPE_USE___INT64)
static vtkClientServerStream::Array InsertArray(const __int64*, int);
static vtkClientServerStream::Array InsertArray(const unsigned __int64*, int);
#endif
static vtkClientServerStream::Array InsertArray(const float*, int);
static vtkClientServerStream::Array InsertArray(const double*, int);
// Description:
// Construct the entire stream from the given data. This destroys
// any data already in the stream. Returns whether the stream is
// deemed valid. In the case of 0, the stream will have been reset.
int SetData(const unsigned char* data, size_t length);
//--------------------------------------------------------------------------
// Utility methods:
// Description:
// Get a string describing the given type. Returns "unknown" if the
// type value is invalid. If the type has multiple possible names,
// the second argument can be used to specify the index of the name
// to use. The higher the index, the more shorthand the name. If
// the index is too high, the last name is used.
static const char* GetStringFromType(vtkClientServerStream::Types type);
static const char* GetStringFromType(vtkClientServerStream::Types type,
int index);
// Description:
// Get the type named by the given string. Returns
// vtkClientServerStream::End if the type string is not recognized.
static vtkClientServerStream::Types GetTypeFromString(const char* name);
// Description:
// Get a string describing the given command. Returns "unknown" if
// the command value is invalid.
static const char* GetStringFromCommand(vtkClientServerStream::Commands cmd);
// Description:
// Get the command named by the given string. Returns
// vtkClientServerStream::EndOfCommands if the string is not
// recognized.
static
vtkClientServerStream::Commands GetCommandFromString(const char* name);
// Description:
// Print the contents of the stream in a human-readable form.
void Print(ostream&) const;
void Print(ostream&, vtkIndent) const;
void PrintMessage(ostream&, int message) const;
void PrintMessage(ostream&, int message, vtkIndent) const;
void PrintArgument(ostream&, int message, int argument) const;
void PrintArgument(ostream&, int message, int argument, vtkIndent) const;
void PrintArgumentValue(ostream&, int message, int argument) const;
// Description:
// Convert the stream to a string-based encoding.
const char* StreamToString() const;
void StreamToString(ostream& os) const;
// Description:
// Set the stream by parsing the given string. The syntax of the
// string must be that produced by the StreamToString method.
// Returns 1 if the string is successfully parsed and 0 otherwise.
int StreamFromString(const char* str);
protected:
// Write arbitrary data to the stream. Used internally.
vtkClientServerStream& Write(const void* data, size_t length);
// Data parsing utilities for SetData.
int ParseData();
unsigned char* ParseCommand(int order, unsigned char* data,
unsigned char* begin, unsigned char* end);
void ParseEnd();
unsigned char* ParseType(int order, unsigned char* data,
unsigned char* begin, unsigned char* end,
vtkClientServerStream::Types* type);
unsigned char* ParseValue(int order, unsigned char* data,
unsigned char* end, unsigned int wordSize);
unsigned char* ParseArray(int order, unsigned char* data,
unsigned char* end, unsigned int wordSize);
unsigned char* ParseString(int order, unsigned char* data,
unsigned char* end);
unsigned char* ParseStream(int order, unsigned char* data,
unsigned char* end);
// Enumeration of possible byte orderings of data in the stream.
enum { BigEndian, LittleEndian };
// Byte swap data in the given byte order to match the current
// machine's byte order.
void PerformByteSwap(int dataByteOrder, unsigned char* data,
unsigned int numWords, unsigned int wordSize);
// Get a pointer to the given value within the given message.
// Returns 0 if either index is out of range.
const unsigned char* GetValue(int message, int value) const;
// Get the number of values in the given message. The count
// includes the Command and End portions of the message. Returns 0
// if the given index is out of range.
int GetNumberOfValues(int message) const;
// Internal implementation shared between PrintArgument and
// PrintArgumentValue.
void PrintArgumentInternal(ostream&, int message, int argument,
int annotate, vtkIndent) const;
// String writing routines.
void StreamToString(ostream& os, vtkIndent indent) const;
void MessageToString(ostream& os, int m) const;
void MessageToString(ostream& os, int m, vtkIndent indent) const;
void ArgumentToString(ostream& os, int m, int a) const;
void ArgumentToString(ostream& os, int m, int a, vtkIndent indent) const;
void ArgumentValueToString(ostream& os, int m, int a,
vtkIndent indent) const;
// Allow strings without null terminators to be passed into the stream.
static vtkClientServerStream::Array InsertString(const char* begin,
const char* end);
// String reading routines.
static vtkClientServerStream::Types GetTypeFromString(const char* begin,
const char* end);
static
vtkClientServerStream::Commands GetCommandFromString(const char* begin,
const char* end);
int StreamFromStringInternal(const char* begin, const char* end);
int AddMessageFromString(const char* begin, const char* end,
const char** next);
int AddArgumentFromString(const char* begin, const char* end,
const char** next);
private:
vtkClientServerStreamInternals* Internal;
friend class vtkClientServerStreamInternals;
};
// Description:
// Get the given argument of the given message as a pointer to a
// vtkObjectBase instance of a specific type. Returns whether the
// argument was really of the requested type.
template <class T>
int
vtkClientServerStreamGetArgumentObject(const vtkClientServerStream& msg,
int message, int argument,
T** result, const char* type)
{
vtkObjectBase* obj;
if(msg.GetArgumentObject(message, argument, &obj, type))
{
*result = reinterpret_cast<T*>(obj);
return 1;
}
return 0;
}
#if defined(VTK_WRAPPING_CXX)
// Extract the given argument of the given message as a data array.
// This is for use only in generated wrappers.
template <class T>
class vtkClientServerStreamDataArg
{
public:
// Constructor checks the argument type and length, allocates
// memory, and extracts the data from the message.
vtkClientServerStreamDataArg(const vtkClientServerStream& msg,
int message, int argument): Data(0)
{
// Check the argument length.
vtkTypeUInt32 length = 0;
if(msg.GetArgumentLength(message, argument, &length) && length > 0)
{
// Allocate memory without throwing.
try
{
this->Data = new T[length];
}
catch(...)
{
}
}
// Extract the data into the allocated memory.
if(this->Data && !msg.GetArgument(message, argument, this->Data, length))
{
delete [] this->Data;
this->Data = 0;
}
}
// Destructor frees data memory.
~vtkClientServerStreamDataArg()
{
if(this->Data)
{
delete [] this->Data;
}
}
// Allow this object to be passed as if it were a pointer.
operator T*() { return this->Data; }
private:
T* Data;
};
#endif
#endif
// VTK-HeaderTest-Exclude: vtkClientServerStream.h
|