Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / Tizen / NFC / NdefMessage.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 _NDEFMESSAGE_H_
20 #define _NDEFMESSAGE_H_
21
22 #include <API/NFC/INdefMessage.h>
23 #include <nfc.h>
24
25 using namespace TizenApis::Api::NFC;
26
27 namespace TizenApis {
28 namespace Platform {
29 namespace NFC {
30
31 class NdefMessage : public INdefMessage
32 {
33         friend class  NFCFactory;
34     public:
35                 NdefMessage();
36                 NdefMessage(void *messageHandle);
37                 NdefMessage(const std::vector<void *> ndefRcords);
38                 NdefMessage(const std::vector<unsigned char> rawdata);
39         virtual  ~NdefMessage();
40
41         virtual void *getHandle();
42         virtual void *getRecordHandle(const long index);
43         virtual std::vector<unsigned char> toByte();
44         virtual long getRecordCount();
45         virtual NdefRecordData getNDEFRecord(const long index);
46         virtual bool insertNDEFRecord(const long index, const void *recordHandle);
47         virtual bool appendNDEFRecord(const void *recordHandle);
48         virtual bool removeNDEFRecord(const long index);
49         virtual void changeAllRecords(const std::vector<void *> ndefRcords);
50     private:
51         nfc_ndef_message_h handle;
52         bool _copyNDEFRecord(nfc_ndef_record_h *srcHandle, nfc_ndef_record_h *destHandle);
53         void _makeMessage(const std::vector<void *> ndefRcords);
54 };
55
56 }
57 }
58 }
59
60 #endif /* _NDEFMESSAGE_H_ */