libgexf  0.1.3
filereader.h
Go to the documentation of this file.
1 
7 /*
8 # Copyright (c) <2009> <Sebastien Heymann>
9 #
10 # Permission is hereby granted, free of charge, to any person obtaining a copy
11 # of this software and associated documentation files (the "Software"), to deal
12 # in the Software without restriction, including without limitation the rights
13 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 # copies of the Software, and to permit persons to whom the Software is
15 # furnished to do so, subject to the following conditions:
16 #
17 # The above copyright notice and this permission notice shall be included in
18 # all copies or substantial portions of the Software.
19 #
20 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 # THE SOFTWARE.
27 */
28 
29 #ifndef _FILEREADER_H
30 #define _FILEREADER_H
31 
32 #include "gexf.h"
33 #include "abstractparser.h"
34 
35 
36 namespace libgexf {
37 
41 class FileReader {
42 public:
46 public:
47  FileReader();
48 
55  explicit FileReader(const std::string& filepath);
56 
60  FileReader(const FileReader& orig);
61 
62  virtual ~FileReader();
63 
64 
71 
78  void init(const std::string& filepath);
79 
84  void slurp();
85 
86  //int relaxNGValidate(const std::string schema);
87 private:
88  void createParser();
89  void streamFile();
90 private:
91  GEXF* _gexf;
92  AbstractParser* _parser;
93  std::string _filepath;
94 };
95 
96 } /* namespace libgexf */
97 
98 #endif /* _FILEREADER_H */
void slurp()
Read the given file in one pass.
Definition: filereader.cpp:81
Definition: abstractiter.h:32
libgexf::GEXF getGEXFCopy()
Get a duplicated instance of the internal GEXF data.
Definition: filereader.cpp:59
Read a GEXF file.
Definition: filereader.h:41
GEXF class, just a container.
Definition: gexf.h:53
void init(const std::string &filepath)
Initialize the file reader.
Definition: filereader.cpp:65
Parser Interface.
Definition: abstractparser.h:40