Modify terminal interface
[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 present;
36                 int referred;
37
38                 NFCTerminal();
39                 ~NFCTerminal();
40
41         public:
42                 static NFCTerminal *getInstance();
43
44                 bool initialize();
45                 void finalize();
46
47                 bool open();
48                 void close();
49
50                 bool isSecureElementPresence() const { return present; }
51
52                 int transmitSync(const ByteArray &command, ByteArray &response);
53                 int getATRSync(ByteArray &atr);
54
55                 int transmit(const ByteArray &command, terminalTransmitCallback callback, void *userParam) { return SCARD_ERROR_NOT_SUPPORTED; };
56                 int getATR(terminalGetATRCallback callback, void *userParam) { return SCARD_ERROR_NOT_SUPPORTED; }
57         };
58 } /* namespace smartcard_service_api */
59 #endif /* NFCTERMINAL_H_ */