Git Init
[profile/ivi/wrt-plugins-tizen.git] / src / standards / Tizen / NFC / NFCConverter.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
19 #ifndef _JS_TIZEN10_NFC_CONVERTER_H_
20 #define _JS_TIZEN10_NFC_CONVERTER_H_
21
22 #include <vector>
23 #include <string>
24 #include <JavaScriptCore/JavaScript.h>
25 #include <CommonsJavaScript/Converter.h>
26 #include <API/NFC/TagFilter.h>
27 #include <API/NFC/NdefRecordProperties.h>
28 #include <API/NFC/NFCTagProperties.h>
29 #include "NFCChangedCallback.h"
30
31 using namespace TizenApis::Api::NFC;
32
33 namespace TizenApis {
34 namespace Tizen1_0 {
35
36
37 class NFCConverter : public WrtDeviceApis::CommonsJavaScript::Converter
38 {
39     public:
40         using WrtDeviceApis::CommonsJavaScript::Converter::toJSValueRef;
41     public:
42         explicit NFCConverter(JSContextRef context);
43         virtual  ~NFCConverter();
44         TagFilterPtr toNFCTagFilter(JSValueRef jsValue);
45         nfcTagType toNfcTagType(std::string typeString);
46         std::string toNfcTagTypeString(nfcTagType type);
47         nfcTextEncodeUTF toNfcTextEncodeUTF(std::string encodeString);
48         std::string toNfcTextEncodeUTFString(nfcTextEncodeUTF encode);
49         JSValueRef toJSValueRef(const std::vector<unsigned char>& arg);
50         JSValueRef toJSValueRef(NdefRecordProperties props);
51         JSValueRef toJSValueRef(std::vector<NFCTagProperties> props);
52         NdefRecordProperties toNdefRecordProperties(JSValueRef value, JSValueRef* exception);
53         std::vector<void *> toVectorOfRecordHandles(const JSValueRef& arg);
54         void *getRecordHandle(const JSValueRef& arg);
55         void *getMessageHandle(const JSValueRef& arg);
56         NFCChangedCallback toNFCChangedCallback(const JSValueRef& arg);
57
58   private:
59     bool initializeAllowedProperties();
60     static std::vector<std::string> m_allowedTagFilterProperties;
61 };
62
63 typedef WrtDeviceApis::CommonsJavaScript::ConverterFactory<NFCConverter> NFCConverterFactory;
64
65 }
66 }
67
68 #endif /* _JS_TIZEN10_NFC_CONVERTER_H_ */