Generate Licence file
[platform/core/telephony/tel-plugin-at_standard.git] / src / at_sap.c
1 /*
2  * tel-plugin-at_standard
3  *
4  * Copyright (c) 2012 Intel Corporation. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <unistd.h>
23
24 #include <glib.h>
25
26 #include <tcore.h>
27 #include <server.h>
28 #include <plugin.h>
29 #include <core_object.h>
30 #include <co_sap.h>
31
32 #include "at_sap.h"
33
34 static struct tcore_sap_operations sap_ops =
35 {
36         .connect = NULL,
37         .disconnect = NULL,
38         .req_status = NULL,
39         .set_transport_protocol = NULL,
40         .set_power = NULL,
41         .get_atr = NULL,
42         .transfer_apdu = NULL,
43         .get_cardreader_status = NULL,
44 };
45
46 gboolean at_sap_init(TcorePlugin *cp)
47 {
48         CoreObject *co;
49         Server *server;
50
51         co = tcore_sap_new(cp, &sap_ops, NULL);
52         if (co == NULL)
53                 return FALSE;
54
55         server = tcore_plugin_ref_server(cp);
56         tcore_server_add_template_object(server, co);
57
58         return TRUE;
59 }
60
61 void at_sap_exit(TcorePlugin *cp)
62 {
63         CoreObject *co;
64
65         if (cp == NULL)
66                 return;
67
68         co = tcore_plugin_ref_core_object(cp, CORE_OBJECT_TYPE_SAP);
69         if (co == NULL)
70                 return;
71
72         tcore_object_free(co);
73 }