summaryrefslogtreecommitdiff
path: root/email-api/email-api-init.c
blob: 2adb5fb52989cea07a00564b9d64451007d36ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
*  email-service
*
* Copyright (c) 2012 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
*
* Contact: Kyuho Jo <kyuho.jo@samsung.com>, Sunghyun Kwon <sh0701.kwon@samsung.com>
* 
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/



/**
 *
 * This file contains the data structures and interfaces needed for application,
 * to interact with email-service.
 * @file		email-api-init.c
 * @brief 		This file contains the data structures and interfaces of Email FW intialization related Functionality provided by 
 *			email-service . 
 */
 
#include "string.h"
#include "email-convert.h"
#include "email-storage.h"
#include "email-ipc.h"
#include "email-core-task-manager.h"
#include "email-core-account.h"
#include "email-utilities.h"
#include "email-dbus-activation.h"
#include "email-core-container.h"
#include <sqlite3.h>
#include <gio/gio.h>

EXPORT_API int email_open_db(void)
{
	EM_DEBUG_API_BEGIN ();
	int error  = EMAIL_ERROR_NONE;
    char *multi_user_name = NULL;

    if ((error = emipc_get_user_name(&multi_user_name)) != EMAIL_ERROR_NONE) {
        EM_DEBUG_EXCEPTION("emipc_get_user_name failed : [%d]", error);
        return error;
    }

	if (emstorage_db_open(multi_user_name, &error) == NULL)
		EM_DEBUG_EXCEPTION("emstorage_db_open failed [%d]", error);

    EM_SAFE_FREE(multi_user_name);

	EM_DEBUG_API_END ("error[%d]", error);
	return error;	
}

EXPORT_API int email_close_db(void)
{
	EM_DEBUG_API_BEGIN ();
	int error  = EMAIL_ERROR_NONE;
    char *multi_user_name = NULL;

    if ((error = emipc_get_user_name(&multi_user_name)) != EMAIL_ERROR_NONE) {
        EM_DEBUG_EXCEPTION("emipc_get_user_name failed : [%d]", error);
        return error;
    }

	if (!emstorage_db_close(multi_user_name, &error)) 
		EM_DEBUG_EXCEPTION("emstorage_db_close failed [%d]", error);

    EM_SAFE_FREE(multi_user_name);

	EM_DEBUG_API_END ("error[%d]", error);
	return error;	
}


EXPORT_API int email_service_begin(void)
{
	EM_DEBUG_API_BEGIN ();
	int ret = -1;

	signal(SIGPIPE, SIG_IGN); /* to ignore signal 13(SIGPIPE) */
	
	ret = emipc_initialize_proxy();

	emcore_init_task_handler_array();

	EM_DEBUG_API_END ("err[%d]", ret);
	return ret;
}

extern GCancellable *cancel;

EXPORT_API int email_service_end(void)
{
	EM_DEBUG_API_BEGIN ();
	int ret = -1;

	if (cancel) {
		g_cancellable_cancel (cancel);
		while (cancel) usleep(1000000);
	}

	ret = emipc_finalize_proxy();

	EM_DEBUG_API_END ("err[%d]", ret);
	
	return ret;
}

/* API - Exposed to External Application- core team.Creates all Email DB tables [ EXTERNAL] */


EXPORT_API int email_init_storage(void)
{
	EM_DEBUG_API_BEGIN ();
	int error  = EMAIL_ERROR_NONE;
    char *multi_user_name = NULL;

    if ((error = emipc_get_user_name(&multi_user_name)) != EMAIL_ERROR_NONE) {
        EM_DEBUG_EXCEPTION("emipc_get_user_name failed : [%d]", error);
        return error;
    }

	if (!emstorage_create_table(multi_user_name, EMAIL_CREATE_DB_NORMAL, &error))  {
		EM_DEBUG_EXCEPTION("emstorage_create_table failed [%d]", error);
	}

    EM_SAFE_FREE(multi_user_name);

	EM_DEBUG_API_END ("error[%d]", error);
	return error;
}

EXPORT_API int email_ping_service(void)
{
	EM_DEBUG_API_BEGIN ();
	int error  = EMAIL_ERROR_NONE;
	HIPC_API hAPI = emipc_create_email_api(_EMAIL_API_PING_SERVICE);

	EM_IF_NULL_RETURN_VALUE(hAPI, EMAIL_ERROR_NULL_VALUE);
		
	if(emipc_execute_proxy_api(hAPI) != EMAIL_ERROR_NONE) {
		EM_DEBUG_EXCEPTION("emipc_execute_proxy_api failed");
		EM_PROXY_IF_NULL_RETURN_VALUE(0, hAPI, EMAIL_ERROR_IPC_SOCKET_FAILURE);
	}

	emipc_get_parameter(hAPI, ePARAMETER_OUT, 0, sizeof(int), &error);
	
	emipc_destroy_email_api(hAPI);

	hAPI = NULL;

	EM_DEBUG_API_END ("err[%d]", error);
	return error;
}