Salome HOME
Copyright update 2022
[modules/paravis.git] / src / Plugins / JSONReader / plugin / JSONReaderModule / vtkJSONReader.h
1 // Copyright (C) 2015-2022  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author: Roman NIKOLAEV (roman.nikolaev@opencascade.com)
20
21 #ifndef __vtkJSONReader_h_
22 #define __vtkJSONReader_h_
23
24 #include <vtkTableAlgorithm.h>
25 #include <vtk_jsoncpp.h> // For json parser
26
27 //---------------------------------------------------
28 class VTK_EXPORT vtkJSONException : public std::exception
29 {
30 public:
31   vtkJSONException(const char* reason);
32   ~vtkJSONException() noexcept;
33   const char* what() const noexcept;
34
35 protected:
36   std::string Reason;
37 };
38
39 class vtkStringArray;
40
41 class VTK_EXPORT vtkJSONReader : public vtkTableAlgorithm
42 {
43 public:
44   static vtkJSONReader* New();
45   vtkTypeMacro(vtkJSONReader, vtkTableAlgorithm)
46   void PrintSelf(ostream& os, vtkIndent indent) override;
47
48   // Specifies the name of the file
49   vtkGetStringMacro(FileName);
50   vtkSetStringMacro(FileName);
51
52   // Request Data
53   int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
54
55 protected:
56   vtkJSONReader();
57   ~vtkJSONReader() override;
58
59   // Parse the Json Value corresponding to the root data from the file
60   virtual void Parse(Json::Value& root, vtkTable* theTable);
61
62   // Verify if file exists and can be read by the parser
63   // If exists, parse into Jsoncpp data structure
64   int CanParseFile(const char* fname, Json::Value& root);
65
66   // name of the file to read from
67   char* FileName;
68
69 private:
70   vtkJSONReader(const vtkJSONReader&) = delete;
71   void operator=(const vtkJSONReader&) = delete;
72 };
73
74 #endif //__vtkJSONReader_h_