tizen beta release
[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 name;
38     DPL::String value;
39     DPL::String ns;
40     DPL::String lang;
41 };
42
43 struct Element
44 {
45     DPL::String name;
46     DPL::String value;
47     DPL::String ns;
48     DPL::String lang;
49 };
50
51 struct Text
52 {
53     DPL::String value;
54     DPL::String ns;
55     DPL::String lang;
56 };
57
58 class ElementParser;
59
60 typedef DPL::SharedPtr<ElementParser> ElementParserPtr;
61
62 class ElementParser : public DPL::EnableSharedFromThis<ElementParser>
63 {
64   public:
65     class Exception
66     {
67       public:
68         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
69         DECLARE_EXCEPTION_TYPE(Base, ParseError)
70     };
71     typedef DPL::FastDelegate0<ElementParserPtr> ActionFunc;
72     typedef std::map<DPL::String, ActionFunc> FuncMap;
73
74     virtual void Accept(const Element&) = 0;
75     virtual void Accept(const XmlAttribute&) = 0;
76     virtual void Accept(const Text&) = 0;
77     virtual void Verify() = 0;
78     virtual ActionFunc GetElementParser(const DPL::String &ns,
79             const DPL::String &name) = 0;
80     virtual ~ElementParser()
81     {
82     }
83
84   protected:
85     ElementParser()
86     {
87     }
88 };
89
90 #endif // ELEMENT_PARSER_H_