vtkPVLogInformation.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPVLogInformation.h
5 
6  Copyright (c) 2005,2006 Sandia Corporation, Kitware Inc.
7  All rights reserved.
8 
9  ParaView is a free software; you can redistribute it and/or modify it
10  under the terms of the ParaView license version 1.2.
11 
12  See License_v1.2.txt for the full ParaView license.
13  A copy of this license can be obtained by contacting
14  Kitware Inc.
15  28 Corporate Drive
16  Clifton Park, NY 12065
17  USA
18 
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
23 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 
31 ========================================================================*/
32 
33 #ifndef vtkPVLogInformation_h
34 #define vtkPVLogInformation_h
35 
36 #include "vtkClientServerStream.h"
37 #include "vtkPVInformation.h"
38 #include "vtkRemotingCoreModule.h" // needed for exports
39 
45 {
46 public:
47  static vtkPVLogInformation* New();
49  void PrintSelf(ostream& os, vtkIndent indent) override;
50 
54  void CopyFromObject(vtkObject*) override;
55 
59  void AddInformation(vtkPVInformation*) override;
60 
62 
65  void CopyToStream(vtkClientServerStream*) override;
66  void CopyFromStream(const vtkClientServerStream*) override;
68 
70 
79 
83  vtkGetMacro(Logs, const std::string&);
84 
88  vtkGetMacro(StartingLogs, const std::string&);
89 
93  vtkSetMacro(Rank, int);
94 
98  vtkGetMacro(Verbosity, int);
99 
100 protected:
101  vtkPVLogInformation() = default;
102  ~vtkPVLogInformation() override = default;
103 
104  int Rank = -1;
105  std::string Logs;
106  std::string StartingLogs;
107  int Verbosity = 20;
108 
109  vtkPVLogInformation(const vtkPVLogInformation&) = delete;
110  void operator=(const vtkPVLogInformation&) = delete;
111 };
112 
113 #endif // vtkPVLogInformation_h
virtual void CopyFromStream(const vtkClientServerStream *)
Manage a serialized version of the information.
virtual void CopyParametersToStream(vtkMultiProcessStream &)
Serialize/Deserialize the parameters that control how/what information is gathered.
void PrintSelf(ostream &os, vtkIndent indent) override
Store messages for the interpreter.
Gets the log of a specific rank as well as the verbosity level.
void operator=(const vtkPVInformation &)=delete
#define VTKREMOTINGCORE_EXPORT
virtual void CopyParametersFromStream(vtkMultiProcessStream &)
Serialize/Deserialize the parameters that control how/what information is gathered.
virtual void AddInformation(vtkPVInformation *)
Merge another information object.
virtual void CopyToStream(vtkClientServerStream *)=0
Manage a serialized version of the information.
virtual void CopyFromObject(vtkObject *)
Transfer information about a single object into this object.
static vtkObject * New()
Superclass for information objects.