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
|
/*=========================================================================
Program: ParaView
Module: vtkPVOptions.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.
=========================================================================*/
/**
* @class vtkPVOptions
* @brief ParaView options storage
*
* An object of this class represents a storage for ParaView options
*
* These options can be retrieved during run-time, set using configuration file
* or using Command Line Arguments.
*/
#ifndef vtkPVOptions_h
#define vtkPVOptions_h
#include "vtkCommandOptions.h"
#include "vtkPVClientServerCoreCoreModule.h" //needed for exports
class vtkPVOptionsInternal;
class VTKPVCLIENTSERVERCORECORE_EXPORT vtkPVOptions : public vtkCommandOptions
{
protected:
friend class vtkPVOptionsXMLParser;
public:
static vtkPVOptions* New();
vtkTypeMacro(vtkPVOptions, vtkCommandOptions);
void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
//@{
/**
* Convenience method to get the local process's host name.
*/
vtkGetStringMacro(HostName);
//@}
vtkGetMacro(ConnectID, int);
vtkGetMacro(UseOffscreenRendering, int);
vtkGetMacro(EGLDeviceIndex, int);
vtkGetMacro(UseStereoRendering, int);
vtkGetStringMacro(StereoType);
vtkGetMacro(ReverseConnection, int);
vtkGetMacro(UseRenderingGroup, int);
vtkGetVector2Macro(TileDimensions, int);
vtkGetVector2Macro(TileMullions, int);
//@{
/**
* This is the argument specified by --data on the command line. Additionally,
* this can also correspond to the last argument specified on the command
* line if the argument is unknown.
*/
vtkGetStringMacro(ParaViewDataName);
//@}
//@{
/**
* State file to load on startup.
*/
// See Bug #5711
vtkGetStringMacro(StateFileName);
//@}
//@{
/**
* Servers file to load on startup.
*/
vtkGetStringMacro(ServersFileName);
//@}
//@{
/**
* Valid on PVSERVER and PVDATA_SERVER only. It denotes the time (in minutes)
* since the time that the connection was established with the server that the
* server may timeout. timeout <= 0 means no timeout.
*/
vtkGetMacro(Timeout, int);
//@}
//@{
/**
* Clients need to set the ConnectID so they can handle server connections
* after the client has started.
*/
vtkSetMacro(ConnectID, int);
//@}
//@{
/**
* Log filename.
*/
vtkSetStringMacro(LogFileName);
vtkGetStringMacro(LogFileName);
//@}
//@{
/**
* vtkPVProcessModule needs to set this.
*/
vtkSetVector2Macro(TileDimensions, int);
vtkSetVector2Macro(TileMullions, int);
vtkSetMacro(UseOffscreenRendering, int);
//@}
/**
* Is this server was started for collaboration meaning that it allow
* several clients to connect to the same server and share the same
* pipeline and visualization.
*/
virtual int GetMultiClientMode()
{
return (this->MultiClientMode || this->MultiClientModeWithErrorMacro) ? 1 : 0;
}
virtual int IsMultiClientModeDebug() { return this->MultiClientModeWithErrorMacro; }
//@{
/**
* Is this client allow multiple server connection in parallel
*/
vtkGetMacro(MultiServerMode, int);
//@}
//@{
/**
* Indicates if the application is in symmetric mpi mode.
* This is applicable only to PVBATCH type of processes.
* Typically, when set to true, the python script is run on satellites as
* well, otherwise only the root node processes the python script. Disabled by
* default.
*/
vtkGetMacro(SymmetricMPIMode, int);
vtkSetMacro(SymmetricMPIMode, int);
//@}
//@{
/**
* Should this run print the version numbers and exit.
*/
vtkGetMacro(TellVersion, int);
//@}
/// Provides access to server-url if specified on the command line.
vtkGetStringMacro(ServerURL);
//@{
/**
* This is used when user want to open a file at startup
*/
vtkSetStringMacro(ParaViewDataName);
//@}
//@{
/**
* Until streaming becomes mainstream, we enable streaming support by passing
* a command line argument to all processes.
*/
vtkGetMacro(EnableStreaming, int);
//@}
//@{
/**
* Include originating process id text into server to client messages.
*/
vtkSetMacro(SatelliteMessageIds, int);
vtkGetMacro(SatelliteMessageIds, int);
//@}
//@{
/**
* Should this process just print monitor information and exit?
*/
vtkGetMacro(PrintMonitors, int);
//@}
//@{
/**
* Adding ability to test plugins by loading them at command line
*/
vtkGetStringMacro(TestPlugin);
vtkGetStringMacro(TestPluginPath);
//@}
//@{
/**
* Flag for controlling auto generation of stack trace on POSIX
* systems after crash.
*/
vtkGetMacro(EnableStackTrace, int);
vtkSetMacro(EnableStackTrace, int);
//@}
//@{
/**
* Flag for disabling loading of options and settings stored by the
* application. Often used for testing.
*/
vtkGetMacro(DisableRegistry, int);
//@}
//@{
/**
* XDisplay test on server processes during initialization sometimes happens
* too early and may result in remote rendering prematurely disabled. When
* this flag is set, ParaView will skip such X-display tests. Note, if the
* display is truly inaccessible when ParaView tries to connect to the server,
* we will indeed get runtimes errors, including segfaults.
*/
vtkGetMacro(DisableXDisplayTests, int);
//@}
enum ProcessTypeEnum
{
PARAVIEW = 0x2,
PVCLIENT = 0x4,
PVSERVER = 0x8,
PVRENDER_SERVER = 0x10,
PVDATA_SERVER = 0x20,
PVBATCH = 0x40,
ALLPROCESS = PARAVIEW | PVCLIENT | PVSERVER | PVRENDER_SERVER | PVDATA_SERVER | PVBATCH
};
protected:
/**
* Default constructor.
*/
vtkPVOptions();
/**
* Destructor.
*/
virtual ~vtkPVOptions();
/**
* Initialize arguments.
*/
virtual void Initialize() VTK_OVERRIDE;
/**
* After parsing, process extra option dependencies.
*/
virtual int PostProcess(int argc, const char* const* argv) VTK_OVERRIDE;
/**
* This method is called when wrong argument is found. If it returns 0, then
* the parsing will fail.
*/
virtual int WrongArgument(const char* argument) VTK_OVERRIDE;
/**
* This method is called when a deprecated argument is found. If it returns 0, then
* the parsing will fail.
*/
virtual int DeprecatedArgument(const char* argument) VTK_OVERRIDE;
//@{
/**
* Subclasses may need to access these
*/
char* ParaViewDataName;
char* ServerURL; // server URL information
int ServerMode;
int ClientMode;
int RenderServerMode;
int MultiClientMode;
int MultiClientModeWithErrorMacro;
int MultiServerMode;
int SymmetricMPIMode;
char* ServersFileName;
char* StateFileName; // loading state file(Bug #5711)
char* TestPlugin; // to load plugins from command line for tests
char* TestPluginPath;
int DisableXDisplayTests;
//@}
// inline setters
vtkSetStringMacro(ServerURL);
vtkSetStringMacro(ServersFileName);
vtkSetStringMacro(StateFileName);
vtkSetStringMacro(TestPlugin);
vtkSetStringMacro(TestPluginPath);
private:
int ConnectID;
int UseOffscreenRendering;
int EGLDeviceIndex;
int UseStereoRendering;
int ReverseConnection;
int TileDimensions[2];
int TileMullions[2];
int UseRenderingGroup;
int Timeout;
char* LogFileName;
int TellVersion;
char* StereoType;
int EnableStreaming;
int SatelliteMessageIds;
int PrintMonitors;
int EnableStackTrace;
int DisableRegistry;
int ForceMPIInitOnClient;
int ForceNoMPIInitOnClient;
int DummyMesaFlag;
// inline setters
vtkSetStringMacro(StereoType);
private:
vtkPVOptions(const vtkPVOptions&) VTK_DELETE_FUNCTION;
void operator=(const vtkPVOptions&) VTK_DELETE_FUNCTION;
vtkSetStringMacro(HostName);
char* HostName;
};
#endif
|