summaryrefslogtreecommitdiff
path: root/library/processXml.h
blob: 5f3f8ef950a0fdb1532b2cc2d7bdef04468364b0 (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
#ifndef PROCESSXML_H_INCLUDED
#define PROCESSXML_H_INCLUDED

#include "../FreeFileSync.h"
#include "tinyxml/tinyxml.h"

using namespace FreeFileSync;


namespace xmlAccess
{
    enum XmlType
    {
        XML_GUI_CONFIG,
        XML_BATCH_CONFIG,
        XML_GLOBAL_SETTINGS,
        XML_OTHER
    };

    XmlType getXmlType(const wxString& filename);


    struct XmlGuiConfig
    {
        XmlGuiConfig() : hideFilteredElements(false) {} //initialize values

        MainConfiguration mainCfg;
        std::vector<FolderPair> directoryPairs;

        bool hideFilteredElements;
    };


    struct XmlBatchConfig
    {
        XmlBatchConfig() :  silent(false) {}

        MainConfiguration mainCfg;
        std::vector<FolderPair> directoryPairs;

        bool silent;
    };

    int retrieveSystemLanguage();


    struct XmlGlobalSettings
    {
//---------------------------------------------------------------------
//internal structures:
        enum ColumnTypes
        {
            FILENAME = 0,
            REL_PATH,
            SIZE,
            DATE
        };

        struct ColumnAttrib
        {
            ColumnTypes type;
            bool        visible;
            unsigned    position;
            int         width;
        };
        typedef std::vector<ColumnAttrib> ColumnAttributes;

//---------------------------------------------------------------------
        struct _Global
        {
            _Global() :
                    programLanguage(retrieveSystemLanguage()),
#ifdef FFS_WIN
                    handleDstOnFat32(true),
#endif
                    folderDependCheckActive(true) {}

            int programLanguage;
#ifdef FFS_WIN
            bool handleDstOnFat32;
#endif
            bool folderDependCheckActive;
        } global;

//---------------------------------------------------------------------
        struct _Gui
        {
            _Gui() :
                    widthNotMaximized(wxDefaultCoord),
                    heightNotMaximized(wxDefaultCoord),
                    posXNotMaximized(wxDefaultCoord),
                    posYNotMaximized(wxDefaultCoord),
                    isMaximized(false),
#ifdef FFS_WIN
                    commandLineFileManager(wxT("explorer /select, %x"))
#elif defined FFS_LINUX
                    commandLineFileManager(wxT("konqueror \"%path\""))
#endif
            {}

            int widthNotMaximized;
            int heightNotMaximized;
            int posXNotMaximized;
            int posYNotMaximized;
            bool isMaximized;

            ColumnAttributes columnAttribLeft;
            ColumnAttributes columnAttribRight;
            std::vector<wxString> cfgFileHistory;
            wxString commandLineFileManager;
        } gui;

//---------------------------------------------------------------------
        //struct _Batch
    };


    inline
    bool sortByType(const XmlGlobalSettings::ColumnAttrib& a, const XmlGlobalSettings::ColumnAttrib& b)
    {
        return a.type < b.type;
    }


    inline
    bool sortByPositionOnly(const XmlGlobalSettings::ColumnAttrib& a, const XmlGlobalSettings::ColumnAttrib& b)
    {
        return a.position < b.position;
    }


    inline
    bool sortByPositionAndVisibility(const XmlGlobalSettings::ColumnAttrib& a, const XmlGlobalSettings::ColumnAttrib& b)
    {
        if (a.visible == false) //hidden elements shall appear at end of vector
            return false;
        if (b.visible == false)
            return true;
        return a.position < b.position;
    }


    XmlGuiConfig readGuiConfig(const wxString& filename);
    XmlBatchConfig readBatchConfig(const wxString& filename);
    XmlGlobalSettings readGlobalSettings();   //used for both GUI and batch mode, independent from configuration instance

    void writeGuiConfig(const wxString& filename, const XmlGuiConfig& outputCfg);
    void writeBatchConfig(const wxString& filename, const XmlBatchConfig& outputCfg);
    void writeGlobalSettings(const XmlGlobalSettings& outputCfg);

}


#endif // PROCESSXML_H_INCLUDED
bgstack15