Update wrt-installer_0.0.54
[framework/web/wrt-installer.git] / src / configuration_parser / element_parser.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file        element_parser.h
18  * @author      Lukasz Wrzosek (l.wrzosek@samsung.com)
19  * @version     0.1
20  * @brief
21  */
22 #ifndef ELEMENT_PARSER_H_
23 #define ELEMENT_PARSER_H_
24
25 #include <map>
26 #include <string>
27 #include <cstring>
28 #include <dpl/fast_delegate.h>
29 #include <dpl/exception.h>
30 #include <dpl/optional.h>
31 #include <dpl/string.h>
32 #include <dpl/shared_ptr.h>
33 #include <dpl/enable_shared_from_this.h>
34
35 struct XmlAttribute
36 {
37     DPL::String prefix;
38     DPL::String name;
39     DPL::String value;
40     DPL::String ns;
41     DPL::String lang;
42 };
43
44 struct Element
45 {
46     DPL::String name;
47     DPL::String value;
48     DPL::String ns;
49     DPL::String lang;
50 };
51
52 struct Text
53 {
54     DPL::String value;
55     DPL::String ns;
56     DPL::String lang;
57 };
58
59 class ElementParser;
60
61 typedef DPL::SharedPtr<ElementParser> ElementParserPtr;
62
63 class ElementParser : public DPL::EnableSharedFromThis<ElementParser>
64 {
65   public:
66     class Exception
67     {
68       public:
69         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
70         DECLARE_EXCEPTION_TYPE(Base, ParseError)
71     };
72     typedef DPL::FastDelegate0<ElementParserPtr> ActionFunc;
73     typedef std::map<DPL::String, ActionFunc> FuncMap;
74
75     virtual void Accept(const Element&) = 0;
76     virtual void Accept(const XmlAttribute&) = 0;
77     virtual void Accept(const Text&) = 0;
78     virtual void Verify() = 0;
79     virtual ActionFunc GetElementParser(const DPL::String &ns,
80             const DPL::String &name) = 0;
81     virtual ~ElementParser()
82     {
83     }
84
85   protected:
86     ElementParser()
87     {
88     }
89 };
90
91 #endif // ELEMENT_PARSER_H_