Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ConfigIO.h « app « src « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15f3cd07575df21beca4f2a4fdac2340c46611a5 (plain)
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
//
//  Filename         : ConfigIO.h
//  Author(s)        : Emmanuel Turquin
//  Purpose          : Configuration management
//  Date of creation : 26/02/2003
//
///////////////////////////////////////////////////////////////////////////////


//
//  Copyright (C) : Please refer to the COPYRIGHT file distributed 
//   with this source distribution. 
//
//  This program is free software; you can redistribute it and/or
//  modify it under the terms of the GNU General Public License
//  as published by the Free Software Foundation; either version 2
//  of the License, or (at your option) any later version.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with this program; if not, write to the Free Software
//  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
//
///////////////////////////////////////////////////////////////////////////////

#ifndef  CONFIGIO_H
# define CONFIGIO_H

# include <qstring.h>
# include <qstringlist.h>
# include <qtextstream.h>
# include <qdom.h>
# include "../system/FreestyleConfig.h"

class ConfigIO
{
 public:

  ConfigIO(QString filename = "",
	   const QString& doc_type = "config_file",
	   bool automatic = false,
	   const QString& sep = "/");
  ~ConfigIO();

  QString	getDefaultFile() const;
  void		setDefaultFile(const QString& filename);

  bool		getAuto() const;
  void		setAuto(bool automatic);

  QString	getPathSep() const;
  void		setPathSep(const QString& sep);

  int		loadFile(const QString& filename = "");
  int		saveFile(const QString& filename = "") const;

  template <class T> int	getValue(const QString& path, T& res) const;
  template <class T> int	setValue(const QString& path, const T& src);

 private:

  QString		_path_sep;
  QString		_default_file;
  bool			_automatic;

  QDomDocument		_tree;
  QString		_doc_type;
};


//
// Implementation of templated methods
//
///////////////////////////////////////////////////

namespace Internal {

  template <class T>
  struct	readValue {
    void operator()(const QString &value, T &res) {
        QTextStream((QString *)&value, QIODevice::ReadOnly)>> res;
    }
  };

  template <>
  struct	readValue<QString> {
    void operator()(const QString& value, QString& res) {
      res = value;
    }
  };

  template <>
  struct	readValue<bool> {
    void operator()(const QString& value, bool& res) {
      short res_tmp;
      QTextStream((QString *)&value, QIODevice::ReadOnly) >> res_tmp;
      res = res_tmp;
    }
  };

} // end of namespace Internal


template <class T>
int	ConfigIO::getValue(const QString& path, T& res) const {

  // Split path
  QStringList strlist;
  strlist = path.split(_path_sep);

  unsigned size = strlist.size();
  if (size-- < 2)
    return 1;

  // try to find the right element
  QDomElement right_node;
  QDomElement node = _tree.documentElement().firstChild().toElement();
  for (unsigned i = 0;
       !node.isNull() && i < size;
       node = node.firstChild().toElement(), i++) {
    while (!node.isNull() && node.tagName() != strlist[i])
      node = node.nextSibling().toElement();
    right_node = node;
  }

  // and the right attribute
  if (right_node.hasAttribute(strlist[size])) {
    QString value = right_node.attribute(strlist[size]);
    Internal::readValue<T> rv;
    rv(value, res);
    return 0;
  }

  return 1;
}


template <class T>
int	ConfigIO::setValue(const QString& path, const T& src) {

  // Split path
  QStringList strlist = path.split(_path_sep);

  unsigned size = strlist.size();
  if (size-- < 2)
    return 1;

  // verify that the tree isn't empty
  // if so, create a root
  QDomElement node = _tree.documentElement();
  if (node.isNull()) {
      node = _tree.createElement(_doc_type);
      _tree.appendChild(node);
  }
  
  // find the right element
  QDomElement child = node.firstChild().toElement();
  for (unsigned i = 0;
       i < size;
       node = child, child = child.firstChild().toElement(), i++) {
    while (!child.isNull() && child.tagName() != strlist[i])
      child = child.nextSibling().toElement();
    if (child.isNull()) {
      child = _tree.createElement(strlist[i]);
      node.appendChild(child);
    }
  }

  // and set the attribute
  QString value;
  QTextStream(&value, QIODevice::WriteOnly) << src;
  node.setAttribute(strlist[size], value);

  return 0;
}

#endif // CONFIGIO_H