Tizen 2.1 base
[platform/core/connectivity/smartcard-plugin-nfc.git] / include / NFCTerminal.h
1 /*
2 * Copyright (c) 2012, 2013 Samsung Electronics Co., Ltd.
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 NFCTERMINAL_H_
19 #define NFCTERMINAL_H_
20
21 /* standard library header */
22
23 /* SLP library header */
24 #include "net_nfc_typedef.h"
25
26 /* local header */
27 #include "Terminal.h"
28 #include "Lock.h"
29
30 namespace smartcard_service_api
31 {
32         class NFCTerminal: public Terminal
33         {
34         private:
35                 PMutex mutex;
36                 net_nfc_target_handle_h seHandle;
37                 bool closed;
38                 /* temporary data for sync function */
39                 ByteArray response;
40                 int error;
41
42                 NFCTerminal();
43                 ~NFCTerminal();
44
45                 static void nfcResponseCallback(net_nfc_message_e message, net_nfc_error_e result, void *data , void *userContext, void *transData);
46
47         public:
48
49                 static NFCTerminal *getInstance();
50
51                 bool initialize();
52                 void finalize();
53
54                 bool open();
55                 bool isClosed();
56                 void close();
57
58                 bool isSecureElementPresence();
59
60                 int transmitSync(ByteArray command, ByteArray &response);
61                 int getATRSync(ByteArray &atr);
62
63                 int transmit(ByteArray command, terminalTransmitCallback callback, void *userParam) { return -1; };
64                 int getATR(terminalGetATRCallback callback, void *userParam) { return -1; }
65
66                 friend void nfcResponseCallback(net_nfc_message_e message, net_nfc_error_e result, void *data , void *userContext, void *transData);
67         };
68
69 } /* namespace smartcard_service_api */
70 #endif /* NFCTERMINAL_H_ */