7362258cb3c4a768625624cc815f35cb13cd1e33
[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 #include "nfc_internal.h"
24
25 /* local header */
26 #include "Terminal.h"
27 #include "Lock.h"
28
29 namespace smartcard_service_api
30 {
31         class NFCTerminal: public Terminal
32         {
33         private:
34                 PMutex mutex;
35                 nfc_se_h seHandle;
36                 bool present;
37                 int referred;
38
39                 NFCTerminal();
40                 ~NFCTerminal();
41
42         public:
43                 static NFCTerminal *getInstance();
44
45                 bool initialize();
46                 void finalize();
47
48                 bool open();
49                 void close();
50
51                 bool isSecureElementPresence() const { return present; }
52
53                 int transmitSync(const ByteArray &command, ByteArray &response);
54                 int getATRSync(ByteArray &atr);
55
56                 int transmit(const ByteArray &command, terminalTransmitCallback callback, void *userParam) { return SCARD_ERROR_NOT_SUPPORTED; };
57                 int getATR(terminalGetATRCallback callback, void *userParam) { return SCARD_ERROR_NOT_SUPPORTED; }
58         };
59 } /* namespace smartcard_service_api */
60 #endif /* NFCTERMINAL_H_ */