tizen beta release
[framework/web/wrt-commons.git] / modules / ace / engine / NodeFactory.cpp
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 #include <dpl/ace/NodeFactory.h>
17
18 NodeFactory* NodeFactory::pInstance = NULL;
19
20 AbstractTreeElement* NodeFactory::create(std::istream& is,
21         TreeNode::TypeID id)
22 {
23     AbstractTreeElement* node;
24
25     switch (id) {
26     case TreeNode::Policy:
27         node = new Policy(is);
28         break;
29     case TreeNode::PolicySet:
30         node = new PolicySet(is);
31         break;
32     case TreeNode::Rule:
33         node = new Rule(is);
34         break;
35     default:
36         node = NULL;
37         break;
38     }
39
40     return node;
41 }
42
43 NodeFactory* NodeFactory::getInstance()
44 {
45     if (pInstance == NULL) {
46         pInstance = new NodeFactory;
47     }
48     return pInstance;
49 }