File: ConfPars.h

package info (click to toggle)
capi4hylafax 1%3A01.02.03-10sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,856 kB
  • ctags: 2,966
  • sloc: cpp: 20,126; sh: 7,703; makefile: 215; perl: 36
file content (86 lines) | stat: -rw-r--r-- 3,103 bytes parent folder | download
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
/*---------------------------------------------------------------------------*\

    Copyright (C) 2000 AVM GmbH. All rights reserved.

    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, and WITHOUT
    ANY LIABILITY FOR ANY DAMAGES arising out of or in connection
    with the use or performance of this software. See the
    GNU General Public License for further details.

\*---------------------------------------------------------------------------*/

#ifndef _CONFPARS_H_
#define _CONFPARS_H_

#include "LinePars.h"
#include "MultiStr.h"
#include "InfoType.h"

/*---------------------------------------------------------------------------*\
    tSInfo - Values
\*---------------------------------------------------------------------------*/

#define iErr_IniFile_WrongAssignCoding  CalculateInfoValue (infoType_IniFile, infoKind_Error, 1)
#define iErr_IniFile_TwoMuchSectionEnds CalculateInfoValue (infoType_IniFile, infoKind_Error, 2)
#define iErr_IniFile_ParamCombination   CalculateInfoValue (infoType_IniFile, infoKind_Error, 3)

/*===========================================================================*\
\*===========================================================================*/

class CConfigParserValue : public CPointerListElement {
public:
    CDynamicString  Name;
    CMultiString    DataList;
};

class CConfigParserSection : public CPointerListElement {
public:
    CConfigParserSection (void) {
        pUpperSection = 0;
    }
    virtual ~CConfigParserSection (void) {
        pUpperSection = 0;
    }

    CConfigParserSection *pUpperSection;
    CPointerList          SectionList;
    CPointerList          ValueList;
};

/*===========================================================================*\
\*===========================================================================*/

class CConfigGrammarParser : private CConfigLineParser {
public:
    CConfigGrammarParser (CConfigParserSection *pMainSection = 0);
    virtual ~CConfigGrammarParser (void);

    CConfigParserSection *GetMainSection (void);

    tSInfo ParseLine (CDynamicString *StrLine); // StrLine == 0 => Finish
    tSInfo ParseWords (CMultiString *WordList); // WordList == 0 => Finish

private:
    CConfigParserSection *pMainSec;
    CConfigParserSection *pCurSec;
};

/*===========================================================================*\
\*===========================================================================*/

inline CConfigParserSection *CConfigGrammarParser::GetMainSection (void) {
    return pMainSec;
}

/*===========================================================================*\
\*===========================================================================*/

#endif