6a87a9d437ecff1973e527c1b55bf834f548e16a
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / Call / Converter.h
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
17
18 #ifndef TIZEN_APIS_CALL_CONVERTER_H_
19 #define TIZEN_APIS_CALL_CONVERTER_H_
20
21 #include <vector>
22 #include <string>
23 #include <map>
24 #include <JavaScriptCore/JavaScript.h>
25 #include <CommonsJavaScript/Converter.h>
26 #include <API/Call/CallHistoryEntryProperties.h>
27
28 namespace TizenApis {
29 namespace Tizen1_0 {
30 class Converter : public WrtDeviceApis::CommonsJavaScript::Converter
31 {
32 public:
33         using WrtDeviceApis::CommonsJavaScript::Converter::toJSValueRef;
34
35 public:
36         explicit Converter(JSContextRef context);
37
38         std::vector<unsigned long> toVectorOfULongs(const JSValueRef& arg);
39
40         Api::Call::CallHistoryEntryList toVectorOfCallHistoryEntryProperties(const JSValueRef& arg);
41
42         Api::Call::stringArrayPtr toCallHistoryEntryStringArray(const JSValueRef &jsValue);
43
44         Api::Call::CallHistoryEntryPropertiesPtr toCallHistoryEntryProperties(const JSValueRef &jsValue);
45
46         JSValueRef toJSValueRef(const Api::Call::CallHistoryEntryListPtr &arg, JSContextRef context);
47
48         JSValueRef toJSValueRef(const Api::Call::stringArrayPtr &arg, JSContextRef context);
49
50 private:
51         bool initializeAllowedProperties();
52         static std::vector<std::string> m_allowedCallHistoryEntryProperties;
53 };
54
55 typedef WrtDeviceApis::CommonsJavaScript::ConverterFactory<Converter> ConverterFactory;
56 typedef ConverterFactory::ConverterType ConverterPtr;
57 }
58 }
59
60 #endif