~ubuntu-branches/ubuntu/gutsy/poco/gutsy

« back to all changes in this revision

Viewing changes to Util/src/PropertyFileConfiguration.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Burghardt
  • Date: 2007-04-27 18:33:48 UTC
  • Revision ID: james.westby@ubuntu.com-20070427183348-xgnpct0qd6a2ip34
Tags: upstream-1.2.9
ImportĀ upstreamĀ versionĀ 1.2.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// PropertyFileConfiguration.cpp
 
3
//
 
4
// $Id: //poco/1.2/Util/src/PropertyFileConfiguration.cpp#2 $
 
5
//
 
6
// Library: Util
 
7
// Package: Configuration
 
8
// Module:  PropertyFileConfiguration
 
9
//
 
10
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
 
11
// and Contributors.
 
12
//
 
13
// Permission is hereby granted, free of charge, to any person or organization
 
14
// obtaining a copy of the software and accompanying documentation covered by
 
15
// this license (the "Software") to use, reproduce, display, distribute,
 
16
// execute, and transmit the Software, and to prepare derivative works of the
 
17
// Software, and to permit third-parties to whom the Software is furnished to
 
18
// do so, all subject to the following:
 
19
// 
 
20
// The copyright notices in the Software and this entire statement, including
 
21
// the above license grant, this restriction and the following disclaimer,
 
22
// must be included in all copies of the Software, in whole or in part, and
 
23
// all derivative works of the Software, unless such copies or derivative
 
24
// works are solely in the form of machine-executable object code generated by
 
25
// a source language processor.
 
26
// 
 
27
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
28
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
29
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
 
30
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
 
31
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
 
32
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 
33
// DEALINGS IN THE SOFTWARE.
 
34
//
 
35
 
 
36
 
 
37
#include "Poco/Util/PropertyFileConfiguration.h"
 
38
#include "Poco/Exception.h"
 
39
#include "Poco/String.h"
 
40
#include "Poco/Path.h"
 
41
#include <fstream>
 
42
#include <locale>
 
43
 
 
44
 
 
45
using Poco::trim;
 
46
using Poco::Path;
 
47
 
 
48
 
 
49
namespace Poco {
 
50
namespace Util {
 
51
 
 
52
 
 
53
PropertyFileConfiguration::PropertyFileConfiguration()
 
54
{
 
55
}
 
56
 
 
57
 
 
58
PropertyFileConfiguration::PropertyFileConfiguration(std::istream& istr)
 
59
{
 
60
        load(istr);
 
61
}
 
62
 
 
63
        
 
64
PropertyFileConfiguration::PropertyFileConfiguration(const std::string& path)
 
65
{
 
66
        load(path);
 
67
}
 
68
 
 
69
 
 
70
PropertyFileConfiguration::~PropertyFileConfiguration()
 
71
{
 
72
}
 
73
 
 
74
        
 
75
void PropertyFileConfiguration::load(std::istream& istr)
 
76
{
 
77
        clear();
 
78
        while (!istr.eof())
 
79
        {
 
80
                parseLine(istr);
 
81
        }
 
82
}
 
83
 
 
84
        
 
85
void PropertyFileConfiguration::load(const std::string& path)
 
86
{
 
87
        std::ifstream istr(Path::transcode(path).c_str());
 
88
        if (istr.good())
 
89
                load(istr);
 
90
        else
 
91
                throw Poco::OpenFileException(path);
 
92
}
 
93
 
 
94
 
 
95
void PropertyFileConfiguration::save(std::ostream& ostr) const
 
96
{
 
97
        MapConfiguration::iterator it = begin();
 
98
        MapConfiguration::iterator ed = end();
 
99
        while (it != ed)
 
100
        {
 
101
                ostr << it->first << ": " << it->second << "\n";
 
102
                ++it;
 
103
        }
 
104
}
 
105
 
 
106
 
 
107
void PropertyFileConfiguration::save(const std::string& path) const
 
108
{
 
109
        std::ofstream ostr(Path::transcode(path).c_str());
 
110
        if (ostr.good())
 
111
        {
 
112
                save(ostr);
 
113
                ostr.flush();
 
114
                if (!ostr.good()) throw Poco::WriteFileException(path);
 
115
        }
 
116
        else throw Poco::CreateFileException(path);
 
117
}
 
118
 
 
119
 
 
120
void PropertyFileConfiguration::parseLine(std::istream& istr)
 
121
{
 
122
        static const int eof = std::char_traits<char>::eof(); 
 
123
        std::locale loc;
 
124
 
 
125
        int c = istr.get();
 
126
        while (c != eof && isspace((char) c, loc)) c = istr.get();
 
127
        if (c != eof)
 
128
        {
 
129
                if (c == '#' || c == '!')
 
130
                {
 
131
                        while (c != eof && c != '\n' && c != '\r') c = istr.get();
 
132
                }
 
133
                else
 
134
                {
 
135
                        std::string key;
 
136
                        while (c != eof && c != '=' && c != ':' && c != '\r' && c != '\n') { key += (char) c; c = istr.get(); }
 
137
                        std::string value;
 
138
                        if (c == '=' || c == ':')
 
139
                        {
 
140
                                c = readChar(istr);
 
141
                                while (c != eof && c) { value += (char) c; c = readChar(istr); }
 
142
                        }
 
143
                        setRaw(trim(key), trim(value));
 
144
                }
 
145
        }
 
146
}
 
147
 
 
148
 
 
149
int PropertyFileConfiguration::readChar(std::istream& istr)
 
150
{
 
151
        int c = istr.get();
 
152
        if (c == '\\')
 
153
        {
 
154
                c = istr.get();
 
155
                switch (c)
 
156
                {
 
157
                case 't':
 
158
                        return '\t';
 
159
                case 'r':
 
160
                        return '\r';
 
161
                case 'n':
 
162
                        return '\n';
 
163
                case 'f':
 
164
                        return '\f';
 
165
                case '\r':
 
166
                        if (istr.peek() == '\n')
 
167
                                istr.get();
 
168
                        return ' ';
 
169
                case '\n':
 
170
                        return ' ';
 
171
                default:
 
172
                        return c;
 
173
                }
 
174
        }
 
175
        else if (c == '\n' || c == '\r')
 
176
                return 0;
 
177
        else
 
178
                return c;
 
179
}
 
180
 
 
181
 
 
182
} } // namespace Poco::Util