Generate Licence file
[platform/core/telephony/tel-plugin-at_standard.git] / src / at_gps.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_gps.h>
31
32 #include "at_gps.h"
33
34 static struct tcore_gps_operations gps_ops = {
35         .confirm_measure_pos = NULL,
36 };
37
38 gboolean at_gps_init(TcorePlugin *cp)
39 {
40         CoreObject *co;
41         Server *server;
42
43         co = tcore_gps_new(cp, &gps_ops, NULL);
44         if (co == NULL)
45                 return FALSE;
46
47         server = tcore_plugin_ref_server(cp);
48         tcore_server_add_template_object(server, co);
49
50         return TRUE;
51 }
52
53 void at_gps_exit(TcorePlugin *cp)
54 {
55         CoreObject *co;
56
57         if (cp == NULL)
58                 return;
59
60         co = tcore_plugin_ref_core_object(cp, CORE_OBJECT_TYPE_GPS);
61         if (co == NULL)
62                 return;
63
64         tcore_object_free(co);
65 }