Generate Licence file
[platform/core/telephony/tel-plugin-at_standard.git] / src / at_ss.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_ss.h>
31
32 #include "at_ss.h"
33
34 static struct tcore_ss_operations ss_ops = {
35         .barring_activate = NULL,
36         .barring_deactivate = NULL,
37         .barring_change_password = NULL,
38         .barring_get_status = NULL,
39         .forwarding_activate = NULL,
40         .forwarding_deactivate = NULL,
41         .forwarding_register = NULL,
42         .forwarding_deregister = NULL,
43         .forwarding_get_status = NULL,
44         .waiting_activate = NULL,
45         .waiting_deactivate = NULL,
46         .waiting_get_status = NULL,
47         .cli_activate = NULL,
48         .cli_deactivate = NULL,
49         .cli_get_status = NULL,
50         .send_ussd = NULL,
51         .set_aoc = NULL,
52         .get_aoc = NULL,
53 };
54
55 gboolean at_ss_init(TcorePlugin *cp)
56 {
57         CoreObject *co;
58         Server *server;
59
60         co = tcore_ss_new(cp, &ss_ops, NULL);
61         if (co == NULL)
62                 return FALSE;
63
64         server = tcore_plugin_ref_server(cp);
65         tcore_server_add_template_object(server, co);
66
67         return TRUE;
68 }
69
70 void at_ss_exit(TcorePlugin *cp)
71 {
72         CoreObject *co;
73
74         if (cp == NULL)
75                 return;
76
77         co = tcore_plugin_ref_core_object(cp, CORE_OBJECT_TYPE_SS);
78         if (co == NULL)
79                 return;
80
81         tcore_object_free(co);
82 }
83