Beta merge 2
[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/Account/AccountServices.h>
27 #include <API/Call/CallHistoryEntryProperties.h>
28 #include <API/Call/RemoteParty.h>
29 #include <API/Call/CallServiceFilter.h>
30 #include "CallMultiCallback.h"
31
32 namespace TizenApis {
33 namespace Tizen1_0 {
34 class Converter : public WrtDeviceApis::CommonsJavaScript::Converter
35 {
36 public:
37         using WrtDeviceApis::CommonsJavaScript::Converter::toJSValueRef;
38
39 public:
40         explicit Converter(JSContextRef context);
41
42         std::vector<unsigned long> toVectorOfULongs(const JSValueRef& arg);
43
44         Api::Call::CallHistoryEntryList toVectorOfCallHistoryEntryProperties(const JSValueRef& arg);
45
46         Api::Call::StringArrayPtr toStringArray(const JSValueRef &jsValue);
47
48         Api::Call::RemotePartyListPtr toRemotePartyList(const JSValueRef &jsValue);
49
50         Api::Call::RemotePartyPtr toRemoteParty(const JSValueRef &jsValue);
51
52         Api::Call::CallServiceFilterPtr toCallServiceFilter(const JSValueRef &jsValue);
53
54         Api::Call::CallHistoryEntryPropertiesPtr toCallHistoryEntryProperties(const JSValueRef &jsValue);
55
56         EventCallHistoryListenerPrivateDataPtr toEventCallHistoryListenerPrivateData(JSValueRef successParam, JSContextRef context);
57
58         JSValueRef toJSValueRef(const Api::Call::CallHistoryEntryListPtr &arg, JSContextRef context);
59
60         JSValueRef toJSValueRef(const Api::Call::StringArrayPtr &arg, JSContextRef context);
61
62         JSValueRef toJSValueRef(const Api::Call::RemotePartyListPtr& arg, JSContextRef context);
63
64         JSValueRef toJSValueRef(const Api::Account::AccountServicesArrayPtr& arg, JSContextRef context);
65
66 private:
67         bool initializeAllowedProperties();
68         static std::vector<std::string> m_allowedCallHistoryEntryProperties;
69         static std::vector<std::string> m_allowedRemoteParty;
70         static std::vector<std::string> m_allowedCallServiceFilter;
71 };
72
73 typedef WrtDeviceApis::CommonsJavaScript::ConverterFactory<Converter> ConverterFactory;
74 typedef ConverterFactory::ConverterType ConverterPtr;
75 }
76 }
77
78 #endif