/usr/include/paraview/vtkPVFileInformationHelper.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 | /*=========================================================================
Program: ParaView
Module: vtkPVFileInformationHelper.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 vtkPVFileInformationHelper - server side object used to gather information
// from, by vtkPVFileInformation.
// .SECTION Description
// When collection information, ProcessModule cannot pass parameters to
// the information object. In case of vtkPVFileInformation, we need data on
// the server side such as which directory/file are we concerned with.
// To make such information available, we use vtkPVFileInformationHelper.
// One creates a server side representation of vtkPVFileInformationHelper and
// sets attributes on it, then requests a gather information on the helper object.
#ifndef vtkPVFileInformationHelper_h
#define vtkPVFileInformationHelper_h
#include "vtkPVClientServerCoreDefaultModule.h" //needed for exports
#include "vtkObject.h"
class VTKPVCLIENTSERVERCOREDEFAULT_EXPORT vtkPVFileInformationHelper : public vtkObject
{
public:
static vtkPVFileInformationHelper* New();
vtkTypeMacro(vtkPVFileInformationHelper, vtkObject);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Get/Set the path to the directory/file whose information we are
// interested in. This is ignored when SpecialDirectories is set
// to True.
vtkSetStringMacro(Path);
vtkGetStringMacro(Path);
// Description:
// Get/Set the current working directory. This is needed if Path is
// relative. The relative path will be converted to absolute path using the
// working directory specified before obtaining information about it.
// If 0 (default), then the application's current working directory will be
// used to flatten relative paths.
vtkSetStringMacro(WorkingDirectory);
vtkGetStringMacro(WorkingDirectory);
// Description:
// Get/Set if the we should attempt to get the information
// of contents if Path is a directory.
// Default value is 0.
// This is ignored when SpecialDirectories is set to True.
vtkGetMacro(DirectoryListing, int);
vtkSetMacro(DirectoryListing, int);
vtkBooleanMacro(DirectoryListing, int);
// Description:
// Get/Set if the query is for special directories.
// Off by default. If set to true, Path and DirectoryListing
// are ignored and the vtkPVFileInformation object
// is populated with information about special directories
// such as "My Documents", "Desktop" etc on Windows systems
// and "Home" on Unix based systems.
vtkGetMacro(SpecialDirectories, int);
vtkSetMacro(SpecialDirectories, int);
vtkBooleanMacro(SpecialDirectories, int);
// Description:
// When on, while listing a directory,
// whenever a group of files is encountered, we verify
// the type/accessibility of only the first file in the group
// and assume that all other have similar permissions.
// On by default.
vtkGetMacro(FastFileTypeDetection, int);
vtkSetMacro(FastFileTypeDetection, int);
// Description:
// Returns the platform specific path separator.
vtkGetStringMacro(PathSeparator);
// Description:
// Returns if this->Path is a readable file.
bool GetActiveFileIsReadable();
// Description:
// Returns if this->Path is a directory.
bool GetActiveFileIsDirectory();
protected:
vtkPVFileInformationHelper();
~vtkPVFileInformationHelper();
char* Path;
char* WorkingDirectory;
int DirectoryListing;
int SpecialDirectories;
int FastFileTypeDetection;
char* PathSeparator;
vtkSetStringMacro(PathSeparator);
private:
vtkPVFileInformationHelper(const vtkPVFileInformationHelper&); // Not implemented.
void operator=(const vtkPVFileInformationHelper&); // Not implemented.
};
#endif
|