tizen 2.3.1 release
[framework/web/mobile/wrt-plugins-tizen.git] / src / NFC / NdefRecordText.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2013 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 #ifndef __TIZEN_NFC_NDEFRECORD_TEXT_H_
19 #define __TIZEN_NFC_NDEFRECORD_TEXT_H_
20
21 #include "NdefRecord.h"
22 #include <string>
23
24 namespace DeviceAPI {
25 namespace NFC {
26
27 class NdefRecordText;
28
29 typedef std::shared_ptr<NdefRecordText> NdefRecordTextPtr;
30
31 class NdefRecordText : public NdefRecord
32 {
33 public:
34     NdefRecordText();
35     NdefRecordText(const std::string &text, const std::string &language_code,
36         const nfc_encode_type_e encoding);
37     virtual ~NdefRecordText();
38
39     std::string getText() const;
40     std::string getLanguageCode() const;
41     nfc_encode_type_e getEncoding() const;
42     std::string convertToTextNfcEncodeUTF(const nfc_encode_type_e type) const;
43     static nfc_encode_type_e convertToNfcEncodeUTF(const std::string& encode_string);
44
45     static NdefRecordTextPtr getNdefRecord(nfc_ndef_message_h message,
46         const int index);
47     static std::string getTextFromHandle(nfc_ndef_record_h handle,
48         nfc_ndef_message_h message_handle = NULL);
49     static std::string getLanguageCodeFromHandle(nfc_ndef_record_h handle,
50         nfc_ndef_message_h message_handle = NULL);
51     static nfc_encode_type_e getEncodingFromHandle(nfc_ndef_record_h handle,
52         nfc_ndef_message_h message_handle = NULL);
53 private:
54     std::string m_text;
55     std::string m_language_code;
56     nfc_encode_type_e m_encoding;
57
58 };
59
60 } // NFC
61 } // DeviceAPI
62
63 #endif // __TIZEN_NFC_NDEFRECORD_TEXT_H_