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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
/*
* Copyright (c) 2017 Samsung Electronics Co., Ltd.
*
* Contact: Jin Yoon <jinny.yoon@samsung.com>
* Geunsun Lee <gs86.lee@samsung.com>
* Eunyoung Lee <ey928.lee@samsung.com>
* Junkyu Han <junkyu.han@samsung.com>
*
* Licensed under the Flora License, Version 1.1 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://floralicense.org/license/
*
* 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.
*/
#include <unistd.h>
#include <glib.h>
#include <Ecore.h>
#include <tizen.h>
#include <service_app.h>
#include "log.h"
#include "resource.h"
#include "connectivity.h"
#include "controller.h"
#include "controller_util.h"
#include "webutil.h"
#define CONNECTIVITY_KEY "opened"
#define SENSORING_TIME_INTERVAL 5.0f
#define CAMERA_TIME_INTERVAL 2
#define TEST_CAMERA_SAVE 0
#define CAMERA_ENABLED 0
typedef struct app_data_s {
Ecore_Timer *getter_timer;
connectivity_resource_s *resource_info;
} app_data;
static void __resource_camera_capture_completed_cb(const void *image, unsigned int size, void *user_data)
{
/* TODO */
const char *path = NULL;
const char *url = NULL;
controller_util_get_path(&path);
controller_util_get_image_address(&url);
web_util_noti_post_image_data(url, path, image, size);
#if TEST_CAMERA_SAVE
FILE *fp = NULL;
char *data_path = NULL;
char file[256];
data_path = app_get_data_path();
snprintf(file, sizeof(file), "%sjjoggoba.jpg", data_path);
free(data_path);
_D("File : %s", file);
fp = fopen(file, "w");
if (!fp) {
_E("Failed to open file: %s", file);
return;
}
if (fwrite(image, size, 1, fp) != 1) {
_E("Failed to write image to file");
return;
}
fclose(fp);
#endif
}
static Eina_Bool control_sensors_cb(void *data)
{
app_data *ad = data;
int value = 1;
int ret = 0;
#if CAMERA_ENABLED
static unsigned int count = 0;
if (count % CAMERA_TIME_INTERVAL == 0) {
ret = resource_capture_camera(__resource_camera_capture_completed_cb, NULL);
if (ret < 0)
_E("Failed to capture camera");
}
count++;
#endif
/* This is example, get value from sensors first */
if (connectivity_notify_int(ad->resource_info, "Motion", value) == -1)
_E("Cannot notify message");
return ECORE_CALLBACK_RENEW;
}
static bool service_app_create(void *data)
{
app_data *ad = data;
int ret = -1;
const char *path = NULL;
/**
* No modification required!!!
* Access only when modifying internal functions.
*/
controller_init_internal_functions();
/**
* Create a connectivity resource and registers the resource in server.
*/
connectivity_set_protocol(CONNECTIVITY_PROTOCOL_HTTP);
controller_util_get_path(&path);
if (path == NULL) {
_E("Failed to get path");
return false;
}
ret = connectivity_set_resource(path, "org.tizen.door", &ad->resource_info);
if (ret == -1) _E("Cannot broadcast resource");
/**
* Creates a timer to call the given function in the given period of time.
* In the control_sensors_cb(), each sensor reads the measured value or writes a specific value to the sensor.
*/
ad->getter_timer = ecore_timer_add(SENSORING_TIME_INTERVAL, control_sensors_cb, ad);
if (!ad->getter_timer) {
_E("Failed to add infrared motion getter timer");
return false;
}
return true;
}
static void service_app_terminate(void *data)
{
app_data *ad = (app_data *)data;
if (ad->getter_timer)
ecore_timer_del(ad->getter_timer);
/**
* Releases the resource about connectivity.
*/
connectivity_unset_resource(ad->resource_info);
/**
* No modification required!!!
* Access only when modifying internal functions.
*/
controller_fini_internal_functions();
free(ad);
}
static void service_app_control(app_control_h app_control, void *data)
{
// Todo: add your code here.
}
static void service_app_lang_changed(app_event_info_h event_info, void *user_data)
{
/*APP_EVENT_LANGUAGE_CHANGED*/
}
static void service_app_region_changed(app_event_info_h event_info, void *user_data)
{
/*APP_EVENT_REGION_FORMAT_CHANGED*/
}
static void service_app_low_battery(app_event_info_h event_info, void *user_data)
{
/*APP_EVENT_LOW_BATTERY*/
}
static void service_app_low_memory(app_event_info_h event_info, void *user_data)
{
/*APP_EVENT_LOW_MEMORY*/
}
int main(int argc, char* argv[])
{
app_data *ad = NULL;
int ret = 0;
service_app_lifecycle_callback_s event_callback;
app_event_handler_h handlers[5] = {NULL, };
ad = calloc(1, sizeof(app_data));
retv_if(!ad, -1);
event_callback.create = service_app_create;
event_callback.terminate = service_app_terminate;
event_callback.app_control = service_app_control;
service_app_add_event_handler(&handlers[APP_EVENT_LOW_BATTERY], APP_EVENT_LOW_BATTERY, service_app_low_battery, &ad);
service_app_add_event_handler(&handlers[APP_EVENT_LOW_MEMORY], APP_EVENT_LOW_MEMORY, service_app_low_memory, &ad);
service_app_add_event_handler(&handlers[APP_EVENT_LANGUAGE_CHANGED], APP_EVENT_LANGUAGE_CHANGED, service_app_lang_changed, &ad);
service_app_add_event_handler(&handlers[APP_EVENT_REGION_FORMAT_CHANGED], APP_EVENT_REGION_FORMAT_CHANGED, service_app_region_changed, &ad);
ret = service_app_main(argc, argv, &event_callback, ad);
return ret;
}
|