upload tizen1.0 source
[profile/ivi/tel-plugin-dbus_tapi.git] / src / util.c
1 /*
2  * tel-plugin-dbus-tapi
3  *
4  * Copyright (c) 2012 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Ja-young Gu <jygu@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20
21 #include <stdio.h>
22 #include <string.h>
23 #include <assert.h>
24 #include <unistd.h>
25 #include <stdlib.h>
26 #include <glib.h>
27
28 #include <tcore.h>
29 #include <plugin.h>
30 #include <server.h>
31 #include <storage.h>
32 #include <user_request.h>
33 #include <co_sim.h>
34
35 #include <TapiCommon.h>
36
37 #include "tel_cs_conn.h"
38 #include "common.h"
39 #include "ts_utility.h"
40 #include "ts_common.h"
41 #include "ts_svr_req.h"
42 #include "modules.h"
43
44 void dbus_request_util(struct custom_data *ctx, TcorePlugin *plugin, int tapi_service_function, GArray* in_param1,
45                 GArray* in_param2, GArray* in_param3, GArray* in_param4, GArray** out_param1, GArray** out_param2,
46                 GArray** out_param3, GArray** out_param4, GError** error)
47 {
48         int api_err = TAPI_API_SUCCESS;
49
50         switch (tapi_service_function) {
51
52                 default:
53                         api_err = TAPI_API_NOT_SUPPORTED;
54                         break;
55         }
56
57         g_array_append_vals(*out_param1, &api_err, sizeof(int));
58 }
59
60 TReturn dbus_response_util(struct custom_data *ctx, UserRequest *ur, const char *appname,
61                 enum tcore_response_command command, unsigned int data_len, const void *data)
62 {
63         dbg("command = 0x%x", command);
64
65         switch (command) {
66                 default:
67                         break;
68         }
69
70         return TRUE;
71 }
72
73 TReturn dbus_notification_util(struct custom_data *ctx, CoreObject *source, enum tcore_notification_command command,
74                 unsigned int data_len, const void *data)
75 {
76         dbg("command = 0x%x", command);
77
78         switch (command) {
79                 default:
80                         break;
81         }
82
83         return TRUE;
84 }