wrt-plugins-tizen_0.4.23
[framework/web/wrt-plugins-tizen.git] / src / Common / JSTizenExceptionFactory.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 "JSTizenExceptionFactory.h"
19 #include <dpl/assert.h>
20 #include <CommonsJavaScript/JSUtils.h>
21 #include "TizenExceptionData.h"
22 #include "JSWebAPIError.h"
23 #include "JSWebAPIException.h"
24 #include "Logger.h"
25
26 namespace DeviceAPI {
27 namespace Common {
28
29                 JSTizenExceptionFactory::JSTizenExceptionFactory() {
30                 }
31
32                 JSTizenExceptionFactory::~JSTizenExceptionFactory() {
33                 }
34
35                 JSObjectRef JSTizenExceptionFactory::makeErrorObject(JSContextRef context, const std::string& name, const std::string& message) {
36
37                         int code = JSWebAPIError::convertToWebAPIErrorCode(name);
38
39                         JSWebAPIError::PrivateObject::ObjectType data(new TizenExceptionData(code, name, message));
40                         return WrtDeviceApis::CommonsJavaScript::JSUtils::makeObject(context, JSWebAPIError::getClassRef(), data);
41                 }
42
43                 JSValueRef JSTizenExceptionFactory::postException(JSContextRef context, JSValueRef* exception, const std::string& name, const std::string& message) {
44                         Assert(exception && "Exception object can't be NULL.");
45
46                         int code = JSWebAPIException::convertToWebAPIExceptionCode(name);
47
48                         JSWebAPIError::PrivateObject::ObjectType data(new TizenExceptionData(code, name, message));
49                         *exception = WrtDeviceApis::CommonsJavaScript::JSUtils::makeObject(context, JSWebAPIException::getClassRef(), data);
50                         return JSValueMakeUndefined(context);
51                 }
52 }// Common
53 }// DeviceAP