0698d5cd701f7512d568ea4f32858df0f7fb7192
[framework/web/wrt-plugins-common.git] / src / modules / tizen / VConf / Node.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 "Node.h"
17 #include <cassert>
18 #include <Commons/Exception.h>
19
20 namespace WrtDeviceApis {
21 namespace VConf {
22 Node::Node(keynode_t* node) : m_node(node)
23 {
24     assert(m_node && "Node cannot be NULL.");
25
26     m_name = vconf_keynode_get_name(m_node);
27     m_type = static_cast<Type>(vconf_keynode_get_type(m_node));
28     if ((m_type != TYPE_BOOL) && (m_type != TYPE_INT) &&
29         (m_type != TYPE_DOUBLE) && (m_type != TYPE_STRING)) {
30         Throw(Commons::UnsupportedException);
31     }
32 }
33
34 std::string Node::getName() const
35 {
36     return m_name;
37 }
38
39 Node::Type Node::getType() const
40 {
41     return m_type;
42 }
43 } // VConf
44 } // WrtDeviceApis