a2209d8c0cec95f989b732dcdb6672025eb00fa1
[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 #ifndef NFCTERMINAL_H_
17 #define NFCTERMINAL_H_
18
19 /* standard library header */
20
21 /* Tizen library header */
22 #include "nfc.h"
23
24 /* local header */
25 #include "Terminal.h"
26 #include "Lock.h"
27
28 namespace smartcard_service_api
29 {
30         class NFCTerminal: public Terminal
31         {
32         private:
33                 PMutex mutex;
34                 nfc_se_h seHandle;
35                 bool opening;
36                 bool closed;
37
38                 NFCTerminal();
39                 ~NFCTerminal();
40
41                 bool checkClosed();
42
43         public:
44                 static NFCTerminal *getInstance();
45
46                 bool initialize();
47                 void finalize();
48
49                 bool open();
50                 bool isClosed() const;
51                 void close();
52
53                 bool isSecureElementPresence() const;
54
55                 int transmitSync(const ByteArray &command, ByteArray &response);
56                 int getATRSync(ByteArray &atr);
57
58                 int transmit(const ByteArray &command, terminalTransmitCallback callback, void *userParam) { return -1; };
59                 int getATR(terminalGetATRCallback callback, void *userParam) { return -1; }
60         };
61 } /* namespace smartcard_service_api */
62 #endif /* NFCTERMINAL_H_ */