2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * @file element_parser.h
18 * @author Lukasz Wrzosek (l.wrzosek@samsung.com)
22 #ifndef ELEMENT_PARSER_H_
23 #define ELEMENT_PARSER_H_
30 #include <dpl/fast_delegate.h>
31 #include <dpl/exception.h>
32 #include <dpl/optional.h>
33 #include <dpl/string.h>
34 #include <dpl/shared_ptr.h>
35 #include <dpl/enable_shared_from_this.h>
63 typedef std::shared_ptr<ElementParser> ElementParserPtr;
65 class ElementParser : public std::enable_shared_from_this<ElementParser>
71 DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
72 DECLARE_EXCEPTION_TYPE(Base, ParseError)
74 typedef DPL::FastDelegate0<ElementParserPtr> ActionFunc;
75 typedef std::map<DPL::String, ActionFunc> FuncMap;
77 virtual void Accept(const Element&) = 0;
78 virtual void Accept(const XmlAttribute&) = 0;
79 virtual void Accept(const Text&) = 0;
80 virtual void Verify() = 0;
81 virtual ActionFunc GetElementParser(const DPL::String &ns,
82 const DPL::String &name) = 0;
83 virtual ~ElementParser()
93 #endif // ELEMENT_PARSER_H_