Call initializers from descriptor
[platform/core/telephony/tel-plugin-at_standard.git] / src / at_sat.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_sat.h>
31
32 #include "at_sat.h"
33
34 gboolean at_sat_init(TcorePlugin *cp)
35 {
36         CoreObject *co;
37         Server *server;
38
39         co = tcore_sat_new(cp, NULL, NULL);
40         if (co == NULL)
41                 return FALSE;
42
43         server = tcore_plugin_ref_server(cp);
44         tcore_server_add_template_object(server, co);
45
46         return TRUE;
47 }
48
49 void at_sat_exit(TcorePlugin *cp)
50 {
51         CoreObject *co;
52
53         if (cp == NULL)
54                 return;
55
56         co = tcore_plugin_ref_core_object(cp, CORE_OBJECT_TYPE_SAT);
57         if (co == NULL)
58                 return;
59
60         tcore_object_free(co);
61 }