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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
|
/*
* 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 <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <glib.h>
#include <app_common.h>
#include <iotcon.h>
#include "log.h"
#include "connectivity.h"
#include "webutil.h"
#include "controller_util.h"
#define DEFAULT_RESOURCE_TYPE "org.tizen.door"
#define BUFSIZE 1024
#define URI_PATH_LEN 64
#define URI_PATH "/door/1"
#define PATH "path"
#define IOTCON_DB_FILENAME "iotcon-test-svr-db-server.dat"
struct _connectivity_resource {
char *path;
char *type;
connectivity_protocol_e protocol_type;
GHashTable *value_hash;
union {
struct {
iotcon_resource_h res;
iotcon_observers_h observers;
} iotcon_data;
struct {
/* Nothing */
char *reserve;
} http_data;
} conn_data;
};
typedef enum {
DATA_VAL_TYPE_BOOL = 0,
DATA_VAL_TYPE_INT,
DATA_VAL_TYPE_DOUBLE,
DATA_VAL_TYPE_STRING
} conn_data_val_type_e;
typedef struct _conn_data_value_s {
conn_data_val_type_e type;
union {
bool b_val;
int i_val;
double d_val;
char *s_val;
};
} conn_data_value_s;
static connectivity_protocol_e ProtocolType = CONNECTIVITY_PROTOCOL_DEFAULT;
static int connectivity_iotcon_intialized = 0;
static int connectivity_http_intialized = 0;
static void _print_iotcon_error(int err_no)
{
switch (err_no) {
case IOTCON_ERROR_NOT_SUPPORTED:
_E("IOTCON_ERROR_NOT_SUPPORTED");
break;
case IOTCON_ERROR_PERMISSION_DENIED:
_E("IOTCON_ERROR_PERMISSION_DENIED");
break;
case IOTCON_ERROR_INVALID_PARAMETER:
_E("IOTCON_ERROR_INVALID_PARAMETER");
break;
default:
_E("Error : [%d]", err_no);
break;
}
return;
}
static void _copy_file(const char *in_filename, const char *out_filename)
{
char buf[BUFSIZE] = { 0, };
size_t nread = 0;
FILE *in = NULL;
FILE *out = NULL;
ret_if(!in_filename);
ret_if(!out_filename);
in = fopen(in_filename, "r");
ret_if(!in);
out = fopen(out_filename, "w");
goto_if(!out, error);
rewind(in);
while ((nread = fread(buf, 1, sizeof(buf), in)) > 0) {
if (fwrite(buf, 1, nread, out) < nread) {
_E("critical error to copy a file");
break;
}
}
fclose(in);
fclose(out);
return;
error:
fclose(out);
return;
}
static bool _query_cb(const char *key, const char *value, void *user_data)
{
_D("Key : [%s], Value : [%s]", key, value);
return IOTCON_FUNC_CONTINUE;
}
static int _handle_query(iotcon_request_h request)
{
iotcon_query_h query = NULL;
int ret = -1;
ret = iotcon_request_get_query(request, &query);
retv_if(IOTCON_ERROR_NONE != ret, -1);
if (query) iotcon_query_foreach(query, _query_cb, NULL);
return 0;
}
static int _handle_request_by_crud_type(iotcon_request_h request, connectivity_resource_s *resource_info)
{
iotcon_request_type_e type;
int ret = -1;
ret = iotcon_request_get_request_type(request, &type);
retv_if(IOTCON_ERROR_NONE != ret, -1);
switch (type) {
case IOTCON_REQUEST_GET:
_I("Do not support 'get' query");
break;
case IOTCON_REQUEST_PUT:
_I("Do not support 'put' query");
break;
case IOTCON_REQUEST_POST:
_I("Do not support 'post' query");
break;
case IOTCON_REQUEST_DELETE:
_I("Do not support 'delete' query");
break;
default:
_E("Cannot reach here");
ret = -1;
break;
}
retv_if(0 != ret, -1);
return 0;
}
static int _handle_observer(iotcon_request_h request, iotcon_observers_h observers)
{
iotcon_observe_type_e observe_type;
int ret = -1;
int observe_id = -1;
ret = iotcon_request_get_observe_type(request, &observe_type);
retv_if(IOTCON_ERROR_NONE != ret, -1);
if (IOTCON_OBSERVE_REGISTER == observe_type) {
ret = iotcon_request_get_observe_id(request, &observe_id);
retv_if(IOTCON_ERROR_NONE != ret, -1);
_I("Add an observer : %d", observe_id);
ret = iotcon_observers_add(observers, observe_id);
retv_if(IOTCON_ERROR_NONE != ret, -1);
} else if (IOTCON_OBSERVE_DEREGISTER == observe_type) {
ret = iotcon_request_get_observe_id(request, &observe_id);
retv_if(IOTCON_ERROR_NONE != ret, -1);
_I("Remove an observer : %d", observe_id);
ret = iotcon_observers_remove(observers, observe_id);
retv_if(IOTCON_ERROR_NONE != ret, -1);
}
return 0;
}
static int _send_response(iotcon_request_h request, iotcon_representation_h representation, iotcon_response_result_e result)
{
int ret = -1;
iotcon_response_h response;
ret = iotcon_response_create(request, &response);
retv_if(IOTCON_ERROR_NONE != ret, -1);
ret = iotcon_response_set_result(response, result);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_response_set_representation(response, representation);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_response_send(response);
goto_if(IOTCON_ERROR_NONE != ret, error);
iotcon_response_destroy(response);
return 0;
error:
iotcon_response_destroy(response);
return -1;
}
static void _request_resource_handler(iotcon_resource_h resource, iotcon_request_h request, void *user_data)
{
connectivity_resource_s *resource_info = user_data;
int ret = -1;
char *host_address = NULL;
ret_if(!request);
ret = iotcon_request_get_host_address(request, &host_address);
goto_if(IOTCON_ERROR_NONE != ret, error);
_D("Host address : %s", host_address);
ret = _handle_query(request);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = _handle_request_by_crud_type(request, resource_info);
goto_if(0 != ret, error);
ret = _handle_observer(request, resource_info->conn_data.iotcon_data.observers);
goto_if(0 != ret, error);
return;
error:
_send_response(request, NULL, IOTCON_RESPONSE_ERROR);
return;
}
static int __init_iotcon(connectivity_resource_s *resource_info)
{
int ret = -1;
iotcon_resource_types_h resource_types = NULL;
iotcon_resource_interfaces_h ifaces = NULL;
uint8_t policies = IOTCON_RESOURCE_NO_POLICY;
char res_path[PATH_MAX] = {0,};
char data_path[PATH_MAX] = {0,};
char *prefix = NULL;
retv_if(!resource_info, -1);
retv_if(resource_info->protocol_type != CONNECTIVITY_PROTOCOL_IOTIVITY, -1);
prefix = app_get_resource_path();
retv_if(!prefix, -1);
snprintf(res_path, sizeof(res_path)-1, "%s%s", prefix, IOTCON_DB_FILENAME);
free(prefix);
prefix = NULL;
prefix = app_get_data_path();
retv_if(!prefix, -1);
snprintf(data_path, sizeof(data_path)-1, "%s%s", prefix, IOTCON_DB_FILENAME);
free(prefix);
_copy_file(res_path, data_path);
ret = iotcon_initialize(data_path);
retv_if(IOTCON_ERROR_NONE != ret, -1);
/* TODO : If we have to set device name, naming it more gorgeous one */
ret = iotcon_set_device_name(DEFAULT_RESOURCE_TYPE);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_resource_types_create(&resource_types);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_resource_types_add(resource_types, resource_info->type);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_resource_interfaces_create(&ifaces);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_resource_interfaces_add(ifaces, IOTCON_INTERFACE_DEFAULT);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_resource_interfaces_add(ifaces, IOTCON_INTERFACE_BATCH);
goto_if(IOTCON_ERROR_NONE != ret, error);
policies =
IOTCON_RESOURCE_DISCOVERABLE |
IOTCON_RESOURCE_OBSERVABLE |
IOTCON_RESOURCE_SECURE;
ret = iotcon_resource_create(URI_PATH,
resource_types,
ifaces,
policies,
_request_resource_handler,
resource_info,
&resource_info->conn_data.iotcon_data.res);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_observers_create(&resource_info->conn_data.iotcon_data.observers);
goto_if(IOTCON_ERROR_NONE != ret, error);
iotcon_resource_types_destroy(resource_types);
iotcon_resource_interfaces_destroy(ifaces);
connectivity_iotcon_intialized = 1;
return 0;
error:
if (resource_types) iotcon_resource_types_destroy(resource_types);
if (ifaces) iotcon_resource_interfaces_destroy(ifaces);
if (resource_info->conn_data.iotcon_data.res) iotcon_resource_destroy(resource_info->conn_data.iotcon_data.res);
iotcon_deinitialize();
return -1;
}
static int __init_http(connectivity_resource_s *resource_info)
{
int ret = 0;
ret = web_util_noti_init();
if (!ret)
connectivity_http_intialized = 1;
return ret;
}
#ifdef PRINT_DEBUG_DETAIL
static bool __print_attributes_cb(iotcon_attributes_h attributes, const char *key, void *user_data)
{
iotcon_type_e type = IOTCON_TYPE_NONE;
iotcon_attributes_get_type(attributes, key, &type);
switch (type) {
case IOTCON_TYPE_INT: {
int value = 0;
iotcon_attributes_get_int(attributes, key, &value);
_D("key[%s] - int value [%d]", key, value);
}
break;
case IOTCON_TYPE_BOOL: {
bool value = 0;
iotcon_attributes_get_bool(attributes, key, &value);
_D("key[%s] - bool value [%d]", key, value);
}
break;
case IOTCON_TYPE_DOUBLE: {
double value = 0;
iotcon_attributes_get_double(attributes, key, &value);
_D("key[%s] - double value [%lf]", key, value);
}
break;
case IOTCON_TYPE_STR: {
char *value = 0;
iotcon_attributes_get_str(attributes, key, &value);
_D("key[%s] - string value [%s]", key, value);
}
break;
case IOTCON_TYPE_NONE:
case IOTCON_TYPE_BYTE_STR:
case IOTCON_TYPE_NULL:
case IOTCON_TYPE_LIST:
case IOTCON_TYPE_ATTRIBUTES:
default:
_W("unhandled key[%s] type[%d]", key, type);
break;
}
return IOTCON_FUNC_CONTINUE;
}
#endif
static void __print_attribute(iotcon_attributes_h attributes)
{
#ifdef PRINT_DEBUG_DETAIL
ret_if(!attributes);
iotcon_attributes_foreach(attributes, __print_attributes_cb, NULL);
#endif
return;
}
static void _destroy_representation(iotcon_representation_h representation)
{
ret_if(!representation);
iotcon_representation_destroy(representation);
return;
}
static iotcon_representation_h _create_representation_with_bool(connectivity_resource_s *resource_info, const char *key, bool value)
{
iotcon_attributes_h attributes = NULL;
iotcon_representation_h representation = NULL;
char *uri_path = NULL;
int ret = -1;
ret = iotcon_resource_get_uri_path(resource_info->conn_data.iotcon_data.res, &uri_path);
retv_if(IOTCON_ERROR_NONE != ret, NULL);
ret = iotcon_representation_create(&representation);
retv_if(IOTCON_ERROR_NONE != ret, NULL);
ret = iotcon_attributes_create(&attributes);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_representation_set_uri_path(representation, uri_path);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_attributes_add_str(attributes, PATH, resource_info->path);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_attributes_add_bool(attributes, key, value);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_representation_set_attributes(representation, attributes);
goto_if(IOTCON_ERROR_NONE != ret, error);
iotcon_attributes_destroy(attributes);
return representation;
error:
if (attributes) iotcon_attributes_destroy(attributes);
if (representation) iotcon_representation_destroy(representation);
return NULL;
}
static iotcon_representation_h _create_representation_with_int(connectivity_resource_s *resource_info, const char *key, int value)
{
iotcon_attributes_h attributes = NULL;
iotcon_representation_h representation = NULL;
char *uri_path = NULL;
int ret = -1;
ret = iotcon_resource_get_uri_path(resource_info->conn_data.iotcon_data.res, &uri_path);
retv_if(IOTCON_ERROR_NONE != ret, NULL);
ret = iotcon_representation_create(&representation);
retv_if(IOTCON_ERROR_NONE != ret, NULL);
ret = iotcon_attributes_create(&attributes);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_representation_set_uri_path(representation, uri_path);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_attributes_add_str(attributes, PATH, resource_info->path);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_attributes_add_int(attributes, key, value);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_representation_set_attributes(representation, attributes);
goto_if(IOTCON_ERROR_NONE != ret, error);
iotcon_attributes_destroy(attributes);
return representation;
error:
if (attributes) iotcon_attributes_destroy(attributes);
if (representation) iotcon_representation_destroy(representation);
return NULL;
}
static iotcon_representation_h _create_representation_with_double(connectivity_resource_s *resource_info, const char *key, double value)
{
iotcon_attributes_h attributes = NULL;
iotcon_representation_h representation = NULL;
char *uri_path = NULL;
int ret = -1;
ret = iotcon_resource_get_uri_path(resource_info->conn_data.iotcon_data.res, &uri_path);
retv_if(IOTCON_ERROR_NONE != ret, NULL);
ret = iotcon_representation_create(&representation);
retv_if(IOTCON_ERROR_NONE != ret, NULL);
ret = iotcon_attributes_create(&attributes);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_representation_set_uri_path(representation, uri_path);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_attributes_add_str(attributes, PATH, resource_info->path);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_attributes_add_double(attributes, key, value);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_representation_set_attributes(representation, attributes);
goto_if(IOTCON_ERROR_NONE != ret, error);
iotcon_attributes_destroy(attributes);
return representation;
error:
if (attributes) iotcon_attributes_destroy(attributes);
if (representation) iotcon_representation_destroy(representation);
return NULL;
}
static iotcon_representation_h _create_representation_with_string(connectivity_resource_s *resource_info, const char *key, const char *value)
{
iotcon_attributes_h attributes = NULL;
iotcon_representation_h representation = NULL;
char *uri_path = NULL;
int ret = -1;
ret = iotcon_resource_get_uri_path(resource_info->conn_data.iotcon_data.res, &uri_path);
retv_if(IOTCON_ERROR_NONE != ret, NULL);
ret = iotcon_representation_create(&representation);
retv_if(IOTCON_ERROR_NONE != ret, NULL);
ret = iotcon_attributes_create(&attributes);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_representation_set_uri_path(representation, uri_path);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_attributes_add_str(attributes, PATH, resource_info->path);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_attributes_add_str(attributes, key, (char *)value);
goto_if(IOTCON_ERROR_NONE != ret, error);
ret = iotcon_representation_set_attributes(representation, attributes);
goto_if(IOTCON_ERROR_NONE != ret, error);
iotcon_attributes_destroy(attributes);
return representation;
error:
if (attributes) iotcon_attributes_destroy(attributes);
if (representation) iotcon_representation_destroy(representation);
return NULL;
}
static inline void __noti_by_http(void)
{
char *json_data = NULL;
json_data = web_util_get_json_string();
if (json_data) {
const char *url = NULL;
controller_util_get_address(&url);
if (url)
web_util_noti_post(url, json_data);
else
_E("fail to get url");
free(json_data);
} else
_E("fail to get json_data");
return;
}
int connectivity_notify_bool(connectivity_resource_s *resource_info, const char *key, bool value)
{
int ret = -1;
retv_if(!resource_info, -1);
retv_if(!key, -1);
_D("Notify key[%s], value[%d]", key, value);
switch (resource_info->protocol_type) {
case CONNECTIVITY_PROTOCOL_IOTIVITY:
retv_if(!resource_info->conn_data.iotcon_data.res, -1);
retv_if(!resource_info->conn_data.iotcon_data.observers, -1);
{
iotcon_representation_h representation;
representation = _create_representation_with_bool(resource_info, key, value);
retv_if(!representation, -1);
ret = iotcon_resource_notify(resource_info->conn_data.iotcon_data.res,
representation, resource_info->conn_data.iotcon_data.observers, IOTCON_QOS_LOW);
if (IOTCON_ERROR_NONE != ret) {
_W("There are some troubles for notifying value[%d]", ret);
_print_iotcon_error(ret);
return -1;
}
_destroy_representation(representation);
}
break;
case CONNECTIVITY_PROTOCOL_HTTP:
ret = web_util_json_init();
retv_if(ret, -1);
ret = web_util_json_begin();
retv_if(ret, -1);
web_util_json_add_string("SensorPiID", resource_info->path);
web_util_json_add_string("SensorPiType", resource_info->type);
web_util_json_add_boolean(key, value);
web_util_json_end();
__noti_by_http();
web_util_json_fini();
break;
default:
_E("Unknown protocol type[%d]", resource_info->protocol_type);
return -1;
break;
}
return 0;
}
int connectivity_notify_int(connectivity_resource_s *resource_info, const char *key, int value)
{
int ret = -1;
retv_if(!resource_info, -1);
retv_if(!key, -1);
_D("Notify key[%s], value[%d]", key, value);
switch (resource_info->protocol_type) {
case CONNECTIVITY_PROTOCOL_IOTIVITY:
retv_if(!resource_info->conn_data.iotcon_data.res, -1);
retv_if(!resource_info->conn_data.iotcon_data.observers, -1);
{
iotcon_representation_h representation;
representation = _create_representation_with_int(resource_info, key, value);
retv_if(!representation, -1);
ret = iotcon_resource_notify(resource_info->conn_data.iotcon_data.res,
representation, resource_info->conn_data.iotcon_data.observers, IOTCON_QOS_LOW);
if (IOTCON_ERROR_NONE != ret) {
_W("There are some troubles for notifying value[%d]", ret);
_print_iotcon_error(ret);
return -1;
}
_destroy_representation(representation);
}
break;
case CONNECTIVITY_PROTOCOL_HTTP:
ret = web_util_json_init();
retv_if(ret, -1);
ret = web_util_json_begin();
retv_if(ret, -1);
web_util_json_add_string("SensorPiID", resource_info->path);
web_util_json_add_string("SensorPiType", resource_info->type);
web_util_json_add_int(key, value);
web_util_json_end();
__noti_by_http();
web_util_json_fini();
break;
default:
_E("Unknown protocol type[%d]", resource_info->protocol_type);
return -1;
break;
}
return 0;
}
int connectivity_notify_double(connectivity_resource_s *resource_info, const char *key, double value)
{
int ret = -1;
retv_if(!resource_info, -1);
retv_if(!key, -1);
_D("Notify key[%s], value[%lf]", key, value);
switch (resource_info->protocol_type) {
case CONNECTIVITY_PROTOCOL_IOTIVITY:
retv_if(!resource_info->conn_data.iotcon_data.res, -1);
retv_if(!resource_info->conn_data.iotcon_data.observers, -1);
{
iotcon_representation_h representation;
representation = _create_representation_with_double(resource_info, key, value);
retv_if(!representation, -1);
ret = iotcon_resource_notify(resource_info->conn_data.iotcon_data.res,
representation, resource_info->conn_data.iotcon_data.observers, IOTCON_QOS_LOW);
if (IOTCON_ERROR_NONE != ret) {
_W("There are some troubles for notifying value[%d]", ret);
_print_iotcon_error(ret);
return -1;
}
_destroy_representation(representation);
}
break;
case CONNECTIVITY_PROTOCOL_HTTP:
ret = web_util_json_init();
retv_if(ret, -1);
ret = web_util_json_begin();
retv_if(ret, -1);
web_util_json_add_string("SensorPiID", resource_info->path);
web_util_json_add_string("SensorPiType", resource_info->type);
web_util_json_add_double(key, value);
web_util_json_end();
__noti_by_http();
web_util_json_fini();
break;
default:
_E("Unknown protocol type[%d]", resource_info->protocol_type);
return -1;
break;
}
return 0;
}
int connectivity_notify_string(connectivity_resource_s *resource_info, const char *key, const char *value)
{
int ret = -1;
retv_if(!resource_info, -1);
retv_if(!key, -1);
retv_if(!value, -1);
_D("Notify key[%s], value[%s]", key, value);
switch (resource_info->protocol_type) {
case CONNECTIVITY_PROTOCOL_IOTIVITY:
retv_if(!resource_info->conn_data.iotcon_data.res, -1);
retv_if(!resource_info->conn_data.iotcon_data.observers, -1);
{
iotcon_representation_h representation;
representation = _create_representation_with_string(resource_info, key, value);
retv_if(!representation, -1);
ret = iotcon_resource_notify(resource_info->conn_data.iotcon_data.res,
representation, resource_info->conn_data.iotcon_data.observers, IOTCON_QOS_LOW);
if (IOTCON_ERROR_NONE != ret) {
_W("There are some troubles for notifying value[%d]", ret);
_print_iotcon_error(ret);
return -1;
}
_destroy_representation(representation);
}
break;
case CONNECTIVITY_PROTOCOL_HTTP:
ret = web_util_json_init();
retv_if(ret, -1);
ret = web_util_json_begin();
retv_if(ret, -1);
web_util_json_add_string("SensorPiID", resource_info->path);
web_util_json_add_string("SensorPiType", resource_info->type);
web_util_json_add_string(key, value);
web_util_json_end();
__noti_by_http();
web_util_json_fini();
break;
default:
_E("Unknown protocol type[%d]", resource_info->protocol_type);
return -1;
break;
}
return 0;
}
static void __hash_key_free(gpointer data)
{
free(data);
return;
}
static void __hash_value_free(gpointer data)
{
conn_data_value_s *value = data;
if (value && (value->type == DATA_VAL_TYPE_STRING))
free(value->s_val);
free(value);
return;
}
static int __add_value_to_hash(connectivity_resource_s *resource_info, const char *key, conn_data_value_s *value)
{
retv_if(!resource_info, -1);
retv_if(!key, -1);
retv_if(!value, -1);
if (!resource_info->value_hash) {
resource_info->value_hash = g_hash_table_new_full(g_str_hash, g_str_equal,
__hash_key_free, __hash_value_free);
retv_if(!resource_info->value_hash, -1);
}
g_hash_table_insert(resource_info->value_hash, strdup(key), value);
return 0;
}
int connectivity_attributes_add_bool(connectivity_resource_s *resource_info, const char *key, bool value)
{
conn_data_value_s *data_value = NULL;
retv_if(!resource_info, -1);
retv_if(!key, -1);
_D("adding key[%s] - value[%d]", key, value);
data_value = malloc(sizeof(conn_data_value_s));
retv_if(!data_value, -1);
data_value->type = DATA_VAL_TYPE_BOOL;
data_value->b_val = value;
return __add_value_to_hash(resource_info, key, data_value);
}
int connectivity_attributes_add_int(connectivity_resource_s *resource_info, const char *key, int value)
{
conn_data_value_s *data_value = NULL;
retv_if(!resource_info, -1);
retv_if(!key, -1);
_D("adding key[%s] - value[%d]", key, value);
data_value = malloc(sizeof(conn_data_value_s));
retv_if(!data_value, -1);
data_value->type = DATA_VAL_TYPE_INT;
data_value->i_val = value;
return __add_value_to_hash(resource_info, key, data_value);
}
int connectivity_attributes_add_double(connectivity_resource_s *resource_info, const char *key, double value)
{
conn_data_value_s *data_value = NULL;
retv_if(!resource_info, -1);
retv_if(!key, -1);
_D("adding key[%s] - value[%lf]", key, value);
data_value = malloc(sizeof(conn_data_value_s));
retv_if(!data_value, -1);
data_value->type = DATA_VAL_TYPE_DOUBLE;
data_value->d_val = value;
return __add_value_to_hash(resource_info, key, data_value);
}
int connectivity_attributes_add_string(connectivity_resource_s *resource_info, const char *key, const char *value)
{
conn_data_value_s *data_value = NULL;
retv_if(!resource_info, -1);
retv_if(!key, -1);
retv_if(!value, -1);
_D("adding key[%s] - value[%s]", key, value);
data_value = malloc(sizeof(conn_data_value_s));
retv_if(!data_value, -1);
data_value->type = DATA_VAL_TYPE_STRING;
data_value->s_val = strdup(value);
return __add_value_to_hash(resource_info, key, data_value);
}
int connectivity_attributes_remove_value_by_key(connectivity_resource_s *resource_info, const char *key)
{
retv_if(!resource_info, -1);
retv_if(!key, -1);
if (resource_info->value_hash)
g_hash_table_remove(resource_info->value_hash, key);
if (g_hash_table_size(resource_info->value_hash) == 0) {
g_hash_table_unref(resource_info->value_hash);
resource_info->value_hash = NULL;
}
return 0;
}
int connectivity_attributes_remove_all(connectivity_resource_s *resource_info)
{
retv_if(!resource_info, -1);
if (resource_info->value_hash) {
g_hash_table_destroy(resource_info->value_hash);
resource_info->value_hash = NULL;
}
return 0;
}
static void __json_add_data_iter_cb(gpointer key, gpointer value, gpointer user_data)
{
char *name = key;
conn_data_value_s *data = value;
int ret = 0;
ret_if(name);
ret_if(data);
switch (data->type) {
case DATA_VAL_TYPE_BOOL:
ret = web_util_json_add_boolean(name, data->b_val);
if (IOTCON_ERROR_NONE != ret)
_E("failed to add key[%s], value[%d]", name, data->b_val);
break;
case DATA_VAL_TYPE_INT:
ret = web_util_json_add_int(name, data->i_val);
if (IOTCON_ERROR_NONE != ret)
_E("failed to add key[%s], value[%d]", name, data->i_val);
break;
case DATA_VAL_TYPE_DOUBLE:
ret = web_util_json_add_double(name, data->d_val);
if (IOTCON_ERROR_NONE != ret)
_E("failed to add key[%s], value[%lf]", name, data->d_val);
break;
case DATA_VAL_TYPE_STRING:
ret = web_util_json_add_string(name, data->s_val);
if (IOTCON_ERROR_NONE != ret)
_E("failed to add key[%s], value[%s]", name, data->s_val);
break;
default:
_E("Unknown data type [%d]", data->type);
break;
}
return;
}
static void __attr_add_data_iter_cb(gpointer key, gpointer value, gpointer user_data)
{
char *name = key;
conn_data_value_s *data = value;
iotcon_attributes_h attr = user_data;
int ret = 0;
ret_if(name);
ret_if(data);
ret_if(attr);
switch (data->type) {
case DATA_VAL_TYPE_BOOL:
ret = iotcon_attributes_add_bool(attr, name, data->b_val);
if (IOTCON_ERROR_NONE != ret)
_E("failed to add key[%s], value[%d]", name, data->b_val);
break;
case DATA_VAL_TYPE_INT:
ret = iotcon_attributes_add_int(attr, name, data->i_val);
if (IOTCON_ERROR_NONE != ret)
_E("failed to add key[%s], value[%d]", name, data->i_val);
break;
case DATA_VAL_TYPE_DOUBLE:
ret = iotcon_attributes_add_double(attr, name, data->d_val);
if (IOTCON_ERROR_NONE != ret)
_E("failed to add key[%s], value[%lf]", name, data->d_val);
break;
case DATA_VAL_TYPE_STRING:
ret = iotcon_attributes_add_str(attr, name, data->s_val);
if (IOTCON_ERROR_NONE != ret)
_E("failed to add key[%s], value[%s]", name, data->s_val);
break;
default:
_E("Unknown data type [%d]", data->type);
break;
}
return;
}
static int __create_attributes(connectivity_resource_s *resource_info, iotcon_attributes_h *attributes)
{
int ret = 0;
iotcon_attributes_h attr = NULL;
ret = iotcon_attributes_create(&attr);
if (IOTCON_ERROR_NONE != ret) {
_print_iotcon_error(ret);
return -1;
}
ret = iotcon_attributes_add_str(attr, PATH, resource_info->path);
if (IOTCON_ERROR_NONE != ret) {
_print_iotcon_error(ret);
iotcon_attributes_destroy(attr);
return -1;
}
if (resource_info->value_hash)
g_hash_table_foreach(resource_info->value_hash, __attr_add_data_iter_cb, attr);
*attributes = attr;
return 0;
}
int connectivity_attributes_notify_all(connectivity_resource_s *resource_info)
{
int ret = 0;
retv_if(!resource_info, -1);
if (resource_info->value_hash == NULL) {
_W("You have nothing to notify now");
return 0;
}
switch (resource_info->protocol_type) {
case CONNECTIVITY_PROTOCOL_IOTIVITY:
retv_if(!resource_info->conn_data.iotcon_data.res, -1);
retv_if(!resource_info->conn_data.iotcon_data.observers, -1);
{
char *uri_path = NULL;
iotcon_representation_h representation = NULL;
iotcon_attributes_h attributes = NULL;
int iotcon_ret = 0;
iotcon_ret = iotcon_resource_get_uri_path(resource_info->conn_data.iotcon_data.res, &uri_path);
retv_if(IOTCON_ERROR_NONE != iotcon_ret, -1);
iotcon_ret = iotcon_representation_create(&representation);
retv_if(IOTCON_ERROR_NONE != iotcon_ret, -1);
iotcon_ret = iotcon_representation_set_uri_path(representation, uri_path);
if (IOTCON_ERROR_NONE != iotcon_ret) {
_print_iotcon_error(iotcon_ret);
ret = -1;
}
iotcon_ret = __create_attributes(resource_info, &attributes);
if (iotcon_ret) {
_E("failed to create attributes");
ret = -1;
}
__print_attribute(attributes);
iotcon_ret = iotcon_representation_set_attributes(representation, attributes);
if (IOTCON_ERROR_NONE != iotcon_ret) {
_print_iotcon_error(iotcon_ret);
ret = -1;
}
iotcon_ret = iotcon_resource_notify(resource_info->conn_data.iotcon_data.res, representation,
resource_info->conn_data.iotcon_data.observers, IOTCON_QOS_LOW);
if (IOTCON_ERROR_NONE != iotcon_ret) {
_print_iotcon_error(iotcon_ret);
ret = -1;
}
iotcon_representation_destroy(representation);
iotcon_attributes_destroy(attributes);
}
break;
case CONNECTIVITY_PROTOCOL_HTTP:
ret = web_util_json_init();
retv_if(ret, -1);
ret = web_util_json_begin();
retv_if(ret, -1);
web_util_json_add_string("SensorPiID", resource_info->path);
web_util_json_add_string("SensorPiType", resource_info->type);
g_hash_table_foreach(resource_info->value_hash, __json_add_data_iter_cb, NULL);
web_util_json_end();
__noti_by_http();
web_util_json_fini();
break;
default:
break;
}
g_hash_table_destroy(resource_info->value_hash);
resource_info->value_hash = NULL;
return ret;
}
void connectivity_unset_resource(connectivity_resource_s *resource_info)
{
ret_if(!resource_info);
switch (resource_info->protocol_type) {
case CONNECTIVITY_PROTOCOL_IOTIVITY:
if (resource_info->conn_data.iotcon_data.observers) iotcon_observers_destroy(resource_info->conn_data.iotcon_data.observers);
if (resource_info->conn_data.iotcon_data.res) iotcon_resource_destroy(resource_info->conn_data.iotcon_data.res);
iotcon_deinitialize();
connectivity_iotcon_intialized = 0;
break;
case CONNECTIVITY_PROTOCOL_HTTP:
web_util_noti_fini();
connectivity_http_intialized = 0;
break;
default:
break;
}
if (resource_info->path) free(resource_info->path);
if (resource_info->type) free(resource_info->type);
free(resource_info);
return;
}
int connectivity_set_resource(const char *path, const char *type, connectivity_resource_s **out_resource_info)
{
connectivity_resource_s *resource_info = NULL;
int ret = -1;
retv_if(!path, -1);
retv_if(!type, -1);
retv_if(!out_resource_info, -1);
resource_info = calloc(1, sizeof(connectivity_resource_s));
retv_if(!resource_info, -1);
resource_info->path = strdup(path);
goto_if(!resource_info->path, error);
resource_info->type = strdup(type);
goto_if(!resource_info->type, error);
resource_info->protocol_type = ProtocolType;
_D("Path[%s], Type[%s], protocol_type[%d]" , resource_info->path, resource_info->type, resource_info->protocol_type);
switch (resource_info->protocol_type) {
case CONNECTIVITY_PROTOCOL_DEFAULT:
_D("default protocol type is iotivity\n \
To set connectivity use connectivity_set_protocol_type() function");
resource_info->protocol_type = CONNECTIVITY_PROTOCOL_IOTIVITY;
case CONNECTIVITY_PROTOCOL_IOTIVITY:
ret = __init_iotcon(resource_info);
goto_if(ret, error);
break;
case CONNECTIVITY_PROTOCOL_HTTP:
ret = __init_http(resource_info);
goto_if(ret, error);
break;
default:
goto error;
break;
}
*out_resource_info = resource_info;
return 0;
error:
if (resource_info->path) free(resource_info->path);
if (resource_info->type) free(resource_info->type);
if (resource_info) free(resource_info);
return -1;
}
int connectivity_set_protocol(connectivity_protocol_e protocol_type)
{
int ret = 0;
retv_if(protocol_type >= CONNECTIVITY_PROTOCOL_MAX, -1);
switch (protocol_type) {
case CONNECTIVITY_PROTOCOL_DEFAULT:
case CONNECTIVITY_PROTOCOL_IOTIVITY:
if (connectivity_iotcon_intialized) {
_E("protocol type[%d] aleady initialized", protocol_type);
return -1;
}
ProtocolType = CONNECTIVITY_PROTOCOL_IOTIVITY;
break;
case CONNECTIVITY_PROTOCOL_HTTP:
if (connectivity_http_intialized) {
_E("protocol type[%d] aleady initialized", protocol_type);
return -1;
}
ProtocolType = CONNECTIVITY_PROTOCOL_HTTP;
break;
default:
_E("unknown protocol type[%d]", protocol_type);
return -1;
break;
}
return ret;
}
|