wrt-plugins-tizen_0.4.23
[framework/web/wrt-plugins-tizen.git] / src / Systeminfo / EventGetSysteminfo.cpp
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 #include <Commons/IEvent.h>
19 #include <dpl/shared_ptr.h>
20 #include <CommonsJavaScript/Converter.h>
21 #include <CommonsJavaScript/JSCallbackManager.h>
22
23 #include "EventGetSysteminfo.h"
24
25 namespace DeviceAPI {
26 namespace Systeminfo {
27
28 EventGetSysteminfo::EventGetSysteminfo()
29 {
30 }
31
32 EventGetSysteminfo::~EventGetSysteminfo()
33 {
34 }
35
36 void EventGetSysteminfo::setBasePropertyPtr(const BasePropertyPtr& baseProperty)
37 {
38     m_BaseProperty = baseProperty;
39 }
40
41 JSValueRef EventGetSysteminfo::getValue() const
42 {
43     return m_value;
44 }
45
46 const char * EventGetSysteminfo::getProperty() const
47 {
48     return m_BaseProperty->getProperty();
49 }
50
51 void EventGetSysteminfo::processGetValue(void* handle)
52 {
53     LoggerD("enter");
54     if (!m_BaseProperty) {
55         LoggerE("property is not set");
56         setExceptionCode(WrtDeviceApis::Commons::ExceptionCodes::ConversionException);
57     } else {
58         WrtDeviceApis::CommonsJavaScript::JSCallbackManagerPtr m_callbackManager = DPL::StaticPointerCast<WrtDeviceApis::CommonsJavaScript::JSCallbackManager >(getPrivateData());
59         if (!m_callbackManager) {
60             LoggerE("property is not set");
61             setExceptionCode(WrtDeviceApis::Commons::ExceptionCodes::NullPointerException);
62         } else {
63             JSContextRef context = m_callbackManager->getContext();
64             m_value = m_BaseProperty->getValue(context, handle);
65         }
66     }
67 }
68
69 }
70 }