File: XmlOptions.cpp

package info (click to toggle)
qtop 2.3.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,976 kB
  • sloc: cpp: 40,477; makefile: 7
file content (226 lines) | stat: -rw-r--r-- 6,980 bytes parent folder | download | duplicates (3)
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/******************************************************************************
*
* Copyright (C) 2002 Hugo PEREIRA <mailto: hugo.pereira@free.fr>
*
* This 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 software 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, see <http://www.gnu.org/licenses/>.
*
*******************************************************************************/

#include "XmlOptions.h"
#include "XmlOptions_p.h"

#include "CppUtil.h"
#include "Options.h"
#include "XmlDocument.h"
#include "XmlOption.h"

#include <QFile>

//____________________________________________________________________
Private::XmlOptionsSingleton& XmlOptions::_singleton()
{
    static Private::XmlOptionsSingleton singleton;
    return singleton;
}

namespace Private
{

    //____________________________________________________________________
    bool XmlOptionsSingleton::_differs( const Options& first, const Options& second ) const
    {

        // check special options
        for( Options::SpecialMap::const_iterator firstIter = first.specialOptions().constBegin(); firstIter != first.specialOptions().constEnd(); ++firstIter )
        {

            // skip empty special options
            if( firstIter.value().isEmpty() ) continue;

            // get matching options in the second set
            if( !second.isSpecialOption( firstIter.key() ) ) return true;
            Options::List options( second.specialOptions( firstIter.key() ) );

            // loop over options in first list
            for( const auto& option:firstIter.value() )
            {
                // skip non recordable options
                if( !option.isRecordable() ) continue;

                // find in second list
                if( options.indexOf( option ) < 0 ) return true;

            }

        }

        // loop over options and check existence in other map
        for( Options::Map::const_iterator firstIter = first.options().constBegin(); firstIter != first.options().constEnd(); ++firstIter )
        {

            // skip non recordable options
            if( !firstIter.value().isRecordable() ) continue;

            const Options::Map::const_iterator secondIter( second.options().constFind( firstIter.key() ) );
            if( secondIter == second.options().constEnd() )
            {

                if( !firstIter.value().isDefault() ) return true;

            } else if( firstIter.value() != secondIter.value() ) return true;

        }

        return false;

    }

}

//____________________________________________________________________
const File& XmlOptions::file()
{ return _singleton().file(); }

//____________________________________________________________________
const XmlError& XmlOptions::error()
{ return _singleton().error_; }

//____________________________________________________________________
void XmlOptions::setFile( const File& file )
{

    // make sure file is hidden (windows only)
    if( !_singleton().setFile( file ) ) return;
    if( _singleton().file().localName().startsWith( '.' ) )
    { _singleton().file().setHidden(); }

}

//____________________________________________________________________
Options& XmlOptions::get()
{ return _singleton().options_; }

//____________________________________________________________________
bool XmlOptions::read()
{

    // check filename is valid
    if( _singleton().file().isEmpty() ) return false;

    // parse the file
    XmlDocument document;
    QFile qtfile( _singleton().file() );
    if ( !document.setContent( &qtfile, _singleton().error_ ) ) return false;
    else return _read( document, _singleton().options_ );

}

//________________________________________________
bool XmlOptions::write()
{

    // check filename is valid
    if( _singleton().file().isEmpty() ) return false;

    // create document and read
    XmlDocument document;
    {
        QFile qtfile( _singleton().file() );
        document.setContent( &qtfile );
    }

    // read old options from xml document
    Options options;
    _read( document, options );
    if( !_singleton().differs( options ) ) return true;

    // create main element
    auto top = document.createElement( Base::Xml::Options ).toElement();

    // write options
    for( auto&& iter = _singleton().options_.specialOptions().begin(); iter != _singleton().options_.specialOptions().end(); ++iter )
    {

        for( const auto& option:iter.value() )
        {

            if( option.hasFlag( Option::Flag::Recordable ) && option.isSet() )
            { top.appendChild( XmlOption( iter.key(), option ).domElement( document.get() ) ); }

        }

    }

    // write standard options
    for( auto&& iter = _singleton().options_.options().begin(); iter != _singleton().options_.options().end(); ++iter )
    {

        if( iter.value().hasFlag( Option::Flag::Recordable ) && iter.value().isSet() && !iter.value().isDefault() )
        { top.appendChild( XmlOption( iter.key(), iter.value() ).domElement( document.get() ) ); }

    }

    // append topNode to document and write
    document.replaceChild( top );

    // write
    {
        QFile qfile( _singleton().file() );
        if( !qfile.open( QIODevice::WriteOnly ) ) return false;
        qfile.write( document.toByteArray() );
    }

    return true;

}

//________________________________________________
bool XmlOptions::_read( const XmlDocument& document, Options& options )
{

    // look for relevant element
    auto topNodes = document.elementsByTagName( Base::Xml::Options );
    if( topNodes.isEmpty() ) return false;

    for(QDomNode node = topNodes.at(0).firstChild(); !node.isNull(); node = node.nextSibling() )
    {
        QDomElement element = node.toElement();
        if( element.isNull() ) continue;

        // special options
        if( element.tagName() == Base::Xml::SpecialOption )
        {

            // retrieve Value attribute
            QString value( element.attribute( Base::Xml::Value ) );
            if( value.size() ) options.keep( value );

        } else if( element.tagName() == Base::Xml::Option ) {

            XmlOption option( element );
            if( options.isSpecialOption( option.name() ) )
            {

                static QRegExp invalidOptionRegExp( "\\(0b\\d+\\)$" );
                if( invalidOptionRegExp.indexIn( option.raw() ) < 0 )
                { options.add( option.name(), (Option) option ); }

            } else options.set( option.name(), (Option) option );

        }
    }

    return true;

}