tizen 2.4 release
[framework/web/wrt-commons.git] / modules / test / include / dpl / test / abstract_input_parser.h
1 /*
2  * Copyright (c) 2013 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        abstract_input_parser.h
18  * @author      Tomasz Iwanek (t.iwanek@samsung.com)
19  * @brief       Simple parser abstraction to be included into reader
20  */
21
22 #ifndef ABSTRACT_INPUT_PARSER_H
23 #define ABSTRACT_INPUT_PARSER_H
24
25 #include <dpl/exception.h>
26
27 #include <memory>
28
29 namespace DPL {
30
31 /**
32  * Abstract class of parser that produces some higher level abstraction
33  * basing on incoming tokens
34  */
35 template<class Result, class Token> class AbstractInputParser
36 {
37 public:
38     class Exception
39     {
40     public:
41         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
42         DECLARE_EXCEPTION_TYPE(Base, ParserError)
43     };
44
45     typedef Result ResultType;
46     typedef Token TokenType;
47
48     virtual ~AbstractInputParser() {}
49
50     virtual void ConsumeToken(std::unique_ptr<Token> && token) = 0;
51     virtual bool IsStateValid() = 0;
52     virtual Result GetResult() const = 0;
53 };
54
55 }
56
57 #endif