libgexf  0.1.3
filewriter.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 _WRITER_H
30 #define _WRITER_H
31 
32 #include "gexf.h"
33 #include <libxml/xmlwriter.h>
34 #include <string>
35 
36 namespace libgexf {
37 
41 class FileWriter {
42 public:
46  enum ElemType { NODE, EDGE };
47 public:
48  FileWriter();
49 
56  FileWriter(const std::string& filepath, GEXF* gexf);
57 
61  FileWriter(const FileWriter& orig);
62 
63  virtual ~FileWriter();
64 
65 
72 
79  void init(const std::string& filepath, libgexf::GEXF* gexf);
80 
85  void write();
86 private:
87  void writeGexfNode(xmlTextWriterPtr writer);
88  void writeMetaNode(xmlTextWriterPtr writer);
89 
90  void writeGraphNode(xmlTextWriterPtr writer);
91  void writeNodesNode(xmlTextWriterPtr writer);
92  void writeNodeNode(xmlTextWriterPtr writer, const std::string& node_id, const std::string& label="");
93  void writeEdgesNode(xmlTextWriterPtr writer);
94  void writeEdgeNode(xmlTextWriterPtr writer, const std::string& edge_id, const std::string& source_id, const std::string& target_id, const std::string& cardinal="1", const std::string& type="undirected");
95 
96  void writeAttributesNode(xmlTextWriterPtr writer, const std::string& element_class);
97  void writeAttributeNode(xmlTextWriterPtr writer, const std::string& id, const std::string& title, const std::string& type, const std::string& default_value="", const std::string& options="");
98  void writeAttributeDefaultNode(xmlTextWriterPtr writer, const std::string& default_value);
99  void writeAttvaluesNode(xmlTextWriterPtr writer, const ElemType type, const std::string& id);
100  void writeAttvalueNode(xmlTextWriterPtr writer, const std::string& attribute_id, const std::string& value);
101 private:
102  GEXF* _gexf;
103  std::string _filepath;
104  static const char* _ENCODING;
105 };
106 
107 
108 } /* namespace libgexf */
109 
110 #endif /* _WRITER_H */
111 
Definition: abstractiter.h:32
libgexf::GEXF getGEXFCopy()
Get a duplicated instance of the internal GEXF data.
Definition: filewriter.cpp:61
ElemType
Possible type of element.
Definition: filewriter.h:46
void write()
Write the file.
Definition: filewriter.cpp:75
Write a GEXF 1.1 file (Gephi 0.7+).
Definition: filewriter.h:41
GEXF class, just a container.
Definition: gexf.h:53
void init(const std::string &filepath, libgexf::GEXF *gexf)
Initialize the file writer.
Definition: filewriter.cpp:67