Generate Licence file
[platform/core/telephony/tel-plugin-at_standard.git] / src / at_sim.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_sim.h>
31
32 #include "at_sim.h"
33
34 static struct tcore_sim_operations sim_ops = {
35         .verify_pins = NULL,
36         .verify_puks = NULL,
37         .change_pins = NULL,
38         .get_facility_status = NULL,
39         .enable_facility = NULL,
40         .disable_facility = NULL,
41         .get_lock_info = NULL,
42         .read_file = NULL,
43         .update_file = NULL,
44         .transmit_apdu = NULL,
45         .get_atr = NULL,
46         .req_authentication = NULL,
47 };
48
49 gboolean at_sim_init(TcorePlugin *cp)
50 {
51         CoreObject *co;
52         Server *server;
53
54         co = tcore_sim_new(cp, &sim_ops, NULL);
55         if (co == NULL)
56                 return FALSE;
57
58         server = tcore_plugin_ref_server(cp);
59         tcore_server_add_template_object(server, co);
60
61         return TRUE;
62 }
63
64 void at_sim_exit(TcorePlugin *cp)
65 {
66         CoreObject *co;
67
68         if (cp == NULL)
69                 return;
70
71         co = tcore_plugin_ref_core_object(cp, CORE_OBJECT_TYPE_SIM);
72         if (co == NULL)
73                 return;
74
75         tcore_object_free(co);
76 }