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
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
|
/*
*
* Copyright (c) 2012 - 2013 Samsung Electronics Co., Ltd. All rights reserved.
*
* 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.
*
*/
#ifndef __ACCOUNT_H__
#define __ACCOUNT_H__
#include <account-types.h>
#include <account-error.h>
#ifdef __cplusplus
extern "C"
{
#endif
#ifndef ACCOUNT_API
#define ACCOUNT_API __attribute__ ((visibility("default")))
#endif
/**
* @file account.h
* @brief This file contains the Account API for account management.
*/
/**
* @addtogroup CAPI_ACCOUNT_MANAGER_MODULE
* @{
*/
/**
* @brief Called once for each account from the database.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] user_data The user data passed from the foreach function
*
* @return @c true to continue with the next iteration of the loop, \n
* otherwise @c false to break out of the loop
*
* @pre account_foreach_account_from_db(), account_query_account_by_account_id(), account_query_account_by_user_name() or account_query_account_by_package_name() must be called.
*
* @see account_foreach_account_from_db()
* @see account_query_account_by_account_id()
* @see account_query_account_by_user_name()
* @see account_query_account_by_package_name()
*/
typedef bool (*account_cb)(account_h account, void *user_data);
/**
* @brief Called once for each capability of an account in the database.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] capability_type The capability type
* @param[in] capability_state The capability state
* @param[in] user_data The user data passed from the foreach function
*
* @return @c true to continue with the next iteration of the loop, \n
* otherwise @c false to break out of the loop
*
* @pre account_query_capability_by_account_id() must be called.
*
* @see account_query_capability_by_account_id()
*/
typedef bool (*capability_cb)(const char* capability_type, account_capability_state_e capability_state, void *user_data);
/**
* @brief Called once for each custom data of an account in the database.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] key The user custom key
* @param[in] value The user custom value of the specific key
* @param[in] user_data The user data passed
*
* @return @c true to continue with the next iteration of the loop, \n
* otherwise @c false to break out of the loop
*
* @pre account_query_capability_by_account_id() must be called.
*
* @see account_query_capability_by_account_id()
*/
typedef bool (*account_custom_cb)(char* key, char* value, void *user_data);
/**
* @brief Called once for each account provider in the database.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account_type The account provider handle
* @param[in] user_data The user data passed
*
* @return @c true to continue with the next iteration of the loop, \n
* otherwise @c false to break out of the loop
*
* @pre account_type_foreach_account_type_from_db(), account_type_query_by_provider_feature() must be called.
*
* @see account_type_foreach_account_type_from_db()
* @see account_type_query_by_provider_feature()
*/
typedef bool (*account_type_cb)(account_type_h account_type, void *user_data);
/**
* @brief Called once for each account label.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] app_id The application ID
* @param[in] label The name of the account depends on the specified locale
* @param[in] locale The locale is specified as an ISO 3166 alpha-2 two letter country-code followed by ISO 639-1 for the two-letter language code.\n
* For example, "ko_KR" for Korean, "en_US" for American English.
* @param[in] user_data The user data passed
*
* @return @c true to continue with the next iteration of the loop, \n
* otherwise @c false to break out of the loop
*
* @pre account_type_get_label(), account_type_query_label_by_app_id() must be called.
*
* @see account_type_get_label()
* @see account_type_query_label_by_app_id()
*/
typedef bool (*account_label_cb)(char* app_id, char* label, char* locale, void *user_data);
/**
* @brief Called once for each capability of an account provider in the database.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] app_id The application ID
* @param[in] key The user custom key
* @param[in] user_data The user data passed
*
* @return @c true to continue with the next iteration of the loop, \n
* otherwise @c false to break out of the loop
*
* @pre account_type_query_provider_feature_by_app_id(), account_type_get_provider_feature_all() must be called.
*
* @see account_type_query_provider_feature_by_app_id()
* @see account_type_get_provider_feature_all()
*/
typedef bool (*provider_feature_cb)(char* app_id, char* key, void* user_data);
/**
* @brief Called once when an event occurs.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] event_type The account event type
* @param[in] account_id The account ID to update
* @param[in] user_data The user data passed
*
* @return @c true to continue with the next iteration of the loop, \n
* otherwise @c false to break out of the loop
*
* @pre account_subscribe_notification() must be called.
*
* @see account_subscribe_notification()
*/
typedef bool (*account_event_cb)(const char* event_type, int account_id, void* user_data);
/**
* @deprecated Deprecated since Tizen 2.4.\n
* This API is not necessary to use since Tizen 2.4.
* @brief Connects to the account database by readwrite mode.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read \n
* %http://tizen.org/privilege/account.wirte
* @remarks This API need both privileges
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED DB is not connected
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
*
* @see account_disconnect()
*/
int account_connect(void);
/**
* @deprecated Deprecated since Tizen 2.4.\n
* This API is not necessary to use since Tizen 2.4.
* @brief Connects to the account database by readonly mode.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED DB is not connected
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
*
* @see account_disconnect()
*/
int account_connect_readonly(void);
/**
* @deprecated Deprecated since Tizen 2.4.\n
* This API is not necessary to use since Tizen 2.4.
* @brief Disconnects from the account database.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite busy handler exprired
*
* @see account_connect()
* @see account_connect_readonly()
*/
int account_disconnect(void);
/**
* @brief Creates a handle to the account.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks Release @a account using account_destroy().
* @remarks The created handle is not added to the account database until account_insert_to_db() is called.
*
* @param[in] account The account handle
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_destroy()
*/
int account_create(account_h *account);
/**
* @brief Destroys the account handle and releases all its resources.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_create()
*/
int account_destroy(account_h account);
/**
* @brief Inserts the account details to the account database.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read \n
* %http://tizen.org/privilege/account.write
* @remarks This API need both privileges
* @param[in] account The account handle
* @param[out] account_db_id The account ID to be assigned to an account
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_DUPLICATED Same user name exists in your application
* @retval #ACCOUNT_ERROR_NOT_ALLOW_MULTIPLE Tried to add an account in spite of multiple false accounts
* @retval #ACCOUNT_ERROR_NOT_REGISTERED_PROVIDER Tried to add an account though you did not register the account type in manifest
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_delete_from_db_by_id()
* @see account_delete_from_db_by_user_name()
* @see account_delete_from_db_by_package_name()
* @see account_update_to_db_by_id()
* @see account_update_to_db_by_user_name()
*/
int account_insert_to_db(account_h account, int *account_db_id);
/**
* @brief Deletes an account from the account database by account DB ID.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read \n
* %http://tizen.org/privilege/account.write
* @remarks This API need both privileges \n
* Only can delete an account which was added by same package applications
* @param[in] account_db_id The account ID to delete
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED The account owner is different from the caller or DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_insert_to_db()
* @see account_delete_from_db_by_user_name()
* @see account_delete_from_db_by_package_name()
* @see account_update_to_db_by_id()
* @see account_update_to_db_by_user_name()
*/
int account_delete_from_db_by_id(int account_db_id);
/**
* @brief Deletes an account from the account database by user name.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read \n
* %http://tizen.org/privilege/account.write
* @remarks This API need both privileges \n
* Only can delete accounts which were added by same package applications
* @param[in] user_name The user name of the account to delete
* @param[in] package_name The package name of the account to delete
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_insert_to_db()
* @see account_delete_from_db_by_id()
* @see account_delete_from_db_by_package_name()
* @see account_update_to_db_by_id()
* @see account_update_to_db_by_user_name()
*/
int account_delete_from_db_by_user_name(char *user_name, char *package_name);
/**
* @brief Deletes an account from the account database by package name.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read \n
* %http://tizen.org/privilege/account.write
* @remarks This API need both privileges \n
* Only can delete accounts which was added by same package applications
* @param[in] package_name The package name of account(s) to delete
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_insert_to_db()
* @see account_delete_from_db_by_id()
* @see account_delete_from_db_by_user_name()
* @see account_update_to_db_by_id()
* @see account_update_to_db_by_user_name()
*/
int account_delete_from_db_by_package_name(const char *package_name);
/**
* @brief Updates the account details to the account database.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read \n
* %http://tizen.org/privilege/account.write
* @remarks This API need both privileges \n
* Only can update an account which was added by same package applications
* @param[in] account The account handle
* @param[in] account_id The account ID to update
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_RECORD_NOT_FOUND The account to update does not exist
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_insert_to_db()
* @see account_delete_from_db_by_id()
* @see account_delete_from_db_by_user_name()
* @see account_delete_from_db_by_package_name()
* @see account_update_to_db_by_user_name()
*/
int account_update_to_db_by_id(account_h account, int account_id);
/**
* @brief Updates the account details to the account database.
* The provider permission check has been added since tizen 2.4.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read \n
* %http://tizen.org/privilege/account.write
* @remarks This API need both privileges \n
* Only can update an account which was added by same package applications
* @param[in] account The account handle
* @param[in] account_id The account ID to update
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_RECORD_NOT_FOUND The account to update does not exist
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_insert_to_db()
* @see account_delete_from_db_by_id()
* @see account_delete_from_db_by_user_name()
* @see account_delete_from_db_by_package_name()
* @see account_update_to_db_by_user_name()
*/
int account_update_to_db_by_id_ex(account_h account, int account_id);
/**
* @brief Updates the account details to the account database.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read \n
* %http://tizen.org/privilege/account.write
* @remarks This API need both privileges \n
* Only can update accounts which were added by same package applications
* @param[in] account The account handle
* @param[in] user_name The user name of the account to update
* @param[in] package_name The package name for the user name
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_RECORD_NOT_FOUND The account to update does not exist
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_insert_to_db()
* @see account_delete_from_db_by_id()
* @see account_delete_from_db_by_user_name()
* @see account_delete_from_db_by_package_name()
* @see account_update_to_db_by_id()
*
*/
int account_update_to_db_by_user_name(account_h account, const char *user_name, const char *package_name);
/**
* @brief Gets the ID of an account.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[out] account_id The account ID
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
*/
int account_get_account_id(account_h account, int *account_id);
/**
* @brief Gets the user name of an account.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a user_name using free().
*
* @param[in] account The account handle
* @param[out] user_name The user name of the account
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @see account_set_user_name()
*/
int account_get_user_name(account_h account, char **user_name);
/**
* @brief Sets the user name of an account.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] user_name The string to set as user name
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_user_name()
*/
int account_set_user_name(account_h account, const char *user_name);
/**
* @brief Gets the display name of an account.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a display_name using free().
*
* @param[in] account The account handle
* @param[out] display_name The display name of the account
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @see account_get_display_name()
*/
int account_get_display_name(account_h account, char **display_name);
/**
* @brief Sets the display name of an account.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] display_name The text string to set as the display name
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_display_name()
*/
int account_set_display_name(account_h account, const char *display_name);
/**
* @brief Gets the capability detail of an account.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] capability_type The capability type to get the capability value
* @param[out] capability_value The capability value (on/off) of the specified capability_type
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_RECORD_NOT_FOUND There is no given capability_type in the account
*
* @see account_set_capability()
*/
int account_get_capability(account_h account, const char* capability_type, account_capability_state_e* capability_value);
/**
* @brief Gets all the capabilities of an account.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] callback The callback function
* @param[in] user_data The user data to be passed to the callback function
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_set_capability()
*/
int account_get_capability_all(account_h account, capability_cb callback, void *user_data);
/**
* @brief Sets the capability.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] capability_type The capability type
* @param[in] capability_state The capability state
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_capability()
*/
int account_set_capability(account_h account, const char* capability_type, account_capability_state_e capability_state);
/**
* @brief Gets the icon path.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a icon_path using free().
*
* @param[in] account The account handle
* @param[out] icon_path The icon path
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @see account_set_icon_path()
*/
int account_get_icon_path(account_h account, char **icon_path);
/**
* @brief Sets the icon path.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] icon_path The text string to set as the icon path
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_icon_path()
*/
int account_set_icon_path(account_h account, const char *icon_path);
/**
* @brief Gets the domain name.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a domain_name using free().
*
* @param[in] account The account handle
* @param[out] domain_name The domain name
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @see account_set_domain_name()
*/
int account_get_domain_name(account_h account, char **domain_name);
/**
* @brief Sets the domain name.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] domain_name The text string to set as the domain name
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_domain_name()
*/
int account_set_domain_name(account_h account, const char *domain_name);
/**
* @brief Gets the email address.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a email_address using free().
*
* @param[in] account The account handle
* @param[out] email_address The email address
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @see account_set_email_address()
*/
int account_get_email_address(account_h account, char **email_address);
/**
* @brief Sets the email address.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] email_address The text string to set as the email address
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_email_address()
*/
int account_set_email_address(account_h account, const char *email_address);
/**
* @brief Gets the package name.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a package_name using free().
*
* @param[in] account The account handle
* @param[out] package_name The package name
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @see account_set_package_name()
*/
int account_get_package_name(account_h account, char **package_name);
/**
* @brief Sets the package name.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] package_name The text string to set as the package name
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_email_address()
*/
int account_set_package_name(account_h account, const char *package_name);
/**
* @brief Gets the access token. Access token field is used to store account secrets (such as password or master token).
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a access_token using free().
*
* @param[in] account The account handle
* @param[out] access_token The access token
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @remarks Access token field is used for storing account secret (password / master token etc)
* Only account owner application can retrieve account password / access_token. For others this field will be null.
* @see account_set_access_token()
*/
int account_get_access_token(account_h account, char **access_token);
/**
* @brief Sets the access token. Access token field is used to store account secrets (such as password or master token).
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] access_token The text string to set as the access token
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @remarks Only account owner application can retrieve account password / access_token. For others this field will be null.
* @see account_get_access_token()
*/
int account_set_access_token(account_h account, const char *access_token);
/**
* @brief Gets the user text.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a user_text using free().
*
* @param[in] account The account handle
* @param[in] user_text_index The index of the user text (range: 0 ~ 4)
* @param[out] user_text The user text
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @see account_set_user_text()
*/
int account_get_user_text(account_h account, int user_text_index, char **user_text);
/**
* @brief Sets the user text.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] user_text_index The index of the user text (must be in range from @c 0 to @c 4)
* @param[in] user_text The text string to set as the user text
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_user_text()
*/
int account_set_user_text(account_h account, int user_text_index, const char *user_text);
/**
* @brief Gets the user integer.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] user_int_index The index of the user integer (must be in range from @c 0 to @c 4)
* @param[out] user_integer The user integer
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_set_user_int()
*/
int account_get_user_int(account_h account, int user_int_index, int *user_integer);
/**
* @brief Sets the user integer.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] user_int_index The index of the user integer (must be in range from @c 0 to @c 4)
* @param[in] user_integer The integer to set as the user integer
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_user_int()
*/
int account_set_user_int(account_h account, int user_int_index, int user_integer);
/**
* @brief Gets the auth type.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[out] auth_type The auth type
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_set_auth_type()
*/
int account_get_auth_type(account_h account, account_auth_type_e *auth_type);
/**
* @brief Sets the auth type.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] auth_type The integer to be set as the auth type
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_auth_type()
*/
int account_set_auth_type(account_h account, const account_auth_type_e auth_type);
/**
* @brief Gets the secret.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[out] secret The secret
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_set_secret()
*/
int account_get_secret(account_h account, account_secrecy_state_e *secret);
/**
* @brief Sets the secret.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] secret The secrecy to be set
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_secret()
*/
int account_set_secret(account_h account, const account_secrecy_state_e secret);
/**
* @brief Gets the sync support.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[out] sync_support The sync support
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_set_sync_support()
*/
int account_get_sync_support(account_h account, account_sync_state_e *sync_support);
/**
* @brief Sets the sync support.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] sync_support The sync state to be set
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_sync_support()
*/
int account_set_sync_support(account_h account, const account_sync_state_e sync_support);
/**
* @brief Gets the source.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a user_text using free().
*
* @param[in] account The account handle
* @param[out] source The source
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @see account_set_source()
*/
int account_get_source(account_h account, char **source);
/**
* @brief Sets the source.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] source The text string to set as the source
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_source()
*/
int account_set_source(account_h account, const char *source);
/**
* @brief Sets the custom.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] key The user custom key for the specific value
* @param[in] value The user custom value about the given key
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_get_custom()
*/
int account_set_custom(account_h account, const char* key, const char* value);
/**
* @brief Gets the user specific custom text of an account key.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] key The key to retrieve custom text
* @param[out] value The text of the given key
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_RECORD_NOT_FOUND There is no given capability type in the account
*
* @see account_set_custom()
*/
int account_get_custom(account_h account, const char* key, char** value);
/**
* @brief Gets all the user custom texts of an account.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account The account handle
* @param[in] callback The callback function to retrieve all custom text \n
* The callback function gives the key and value.
* @param[in] user_data The user data to be passed to the callback function
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_set_custom()
*/
int account_get_custom_all(account_h account, account_custom_cb callback, void* user_data);
/**
* @brief Retrieves all accounts details by invoking the given callback function iteratively.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] callback The callback function to invoke
* @param[in] user_data The user data to be passed to the callback function
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_RECORD_NOT_FOUND Related record does not exist
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
* @post This function invokes account_cb().
*
* @see account_connect()
* @see account_query_account_by_account_id()
* @see account_query_account_by_user_name()
* @see account_query_account_by_package_name()
* @see account_query_account_by_capability()
*/
int account_foreach_account_from_db(account_cb callback, void *user_data);
/**
* @brief Retrieve an account with the account ID.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] account_db_id The account database ID to search
* @param[out] account The account handle \n
* Must be allocated by account_create() and freed after using by account_destroy().
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_query_account_by_user_name()
* @see account_query_account_by_package_name()
* @see account_query_account_by_capability()
*/
int account_query_account_by_account_id(int account_db_id, account_h *account);
/**
* @brief Retrieves all accounts with the user name.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] callback The callback function to invoke
* @param[in] user_name The user name to search
* @param[in] user_data The user data to be passed to the callback function
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
* @post This function invokes account_cb().
*
* @see account_connect()
* @see account_foreach_account_from_db()
* @see account_query_account_by_account_id()
* @see account_query_account_by_package_name()
* @see account_query_account_by_capability()
*
*/
int account_query_account_by_user_name(account_cb callback, const char* user_name, void* user_data);
/**
* @brief Retrieves all accounts with the package name.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] callback The callback function to invoke
* @param[in] package_name The package name to search
* @param[in] user_data The user data to be passed to the callback function
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
* @post This function invokes account_cb().
*
* @see account_connect()
* @see account_foreach_account_from_db()
* @see account_query_account_by_account_id()
* @see account_query_account_by_user_name()
* @see account_query_account_by_capability()
*/
int account_query_account_by_package_name(account_cb callback, const char *package_name, void *user_data);
/**
* @brief Retrieves all accounts with the capability type and capability value.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] callback The callback function to invoke
* @param[in] capability_type The capability type to search
* @param[in] capability_value The capability value to search
* @param[in] user_data The user data to be passed to the callback function
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
* @post This function invokes account_cb().
*
* @see account_connect()
* @see account_foreach_account_from_db()
* @see account_query_account_by_account_id()
* @see account_query_account_by_user_name()
* @see account_query_account_by_package_name()
*/
int account_query_account_by_capability(account_cb callback, const char* capability_type, account_capability_state_e capability_value, void *user_data);
/**
* @brief Retrieves all accounts with the capability type.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] callback The callback function to invoke
* @param[in] capability_type The capability type to search
* @param[in] user_data The user data to be passed to the callback function
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
* @post This function invokes account_cb().
*
* @see account_connect()
* @see account_foreach_account_from_db()
* @see account_query_account_by_account_id()
* @see account_query_account_by_user_name()
* @see account_query_account_by_package_name()
*/
int account_query_account_by_capability_type(account_cb callback, const char* capability_type, void* user_data);
/**
* @brief Retrieves all capabilities with the account database ID.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] callback The callback function to invoke
* @param[in] account_db_id The account database ID to search
* @param[in] user_data The user data to be passed to the callback function
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
* @post This function invokes capability_cb().
*
* @see account_connect()
* @see account_get_capability()
* @see account_set_capability()
*/
int account_query_capability_by_account_id(capability_cb callback, int account_db_id, void *user_data);
/**
* @brief Gets the count of accounts in the account database.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[out] count The out parameter for count of all accounts
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
*/
int account_get_total_count_from_db(int *count);
/**
* @brief Updates the sync status of an account with the given account ID.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read \n
* %http://tizen.org/privilege/account.write
* @remarks This API need both privileges \n
* Only can update an account which was added by same package applications
* @param[in] account_db_id The account ID for which sync status needs to be changed
* @param[in] sync_status The new sync status
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
*/
int account_update_sync_status_by_id(int account_db_id, const account_sync_state_e sync_status);
/* Account type API */
/**
* @brief Creates a handle to the account provider.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a account_type handle using account_type_destroy().\n
*
* @param[in] account_type The account provider handle
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_type_destroy()
*/
int account_type_create(account_type_h *account_type);
/**
* @brief Destroys the account provider handle and releases all its resources.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
*
* @remarks When you get @a account_type_h using account_type_create(), you must release the handle using account_destroy() to avoid the memory leak.
*
* @param[in] account_type The account provider handle
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_type_create()
*/
int account_type_destroy(account_type_h account_type);
/**
* @brief Retrieves capability information with your application ID.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] callback The callback function carries the capability name of an app ID
* @param[in] app_id The application ID to search
* @param[in] user_data The user data \n
* If you have your private data to carry into callback function, then you can use it.
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_disconnect()
*/
int account_type_query_provider_feature_by_app_id(provider_feature_cb callback, const char* app_id, void *user_data );
/**
* @brief Checks whether the given application ID supports the capability.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @remarks The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
* @param[in] app_id The application ID
* @param[in] capability The capability \n
* For example, ACCOUNT_SUPPORTS_CAPABILITY_CONTACT or "http://tizen.org/account/capability/contact"
*
* @return @c TRUE if the application supports the given capability, \n
* otherwise @c FALSE if the application does not support the given capability
* @retval @c TRUE means the application supports the given capability
* @retval @c FALSE means the application does not support the given capability
* @exception #ACCOUNT_ERROR_NONE Successful
* @exception #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @exception #ACCOUNT_ERROR_RECORD_NOT_FOUND Related record does not exist
* @excaption #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @exception #ACCOUNT_ERROR_PERMISSION_DENIED DB access fail by permission
* @excaption #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @excaption #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_disconnect()
*/
bool account_type_query_supported_feature(const char* app_id, const char* capability);
/**
* @brief Gets the application ID of an account provider.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a app_id using free().
*
* @param[in] account_type The account provider handle \n
* It should be given by account_type_query_* functions or account_type_foreach_account_type_from_db().
* @param[out] app_id The application ID of an account provider item
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @see account_type_foreach_account_type_from_db()
* @see account_type_query_by_app_id()
*/
int account_type_get_app_id(account_type_h account_type, char **app_id);
/**
* @brief Gets the service provider ID of an account provider.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a service_provider_id using free().
*
* @param[in] account_type The account provider handle \n
* It should be given by account_type_query_* functions or account_type_foreach_account_type_from_db().
* @param[out] service_provider_id The service provider text ID of an account provider item
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @see account_type_foreach_account_type_from_db()
* @see account_type_query_by_app_id()
*/
int account_type_get_service_provider_id(account_type_h account_type, char **service_provider_id);
/**
* @brief Gets the icon path of an account provider.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a icon_path using free().
*
* @param[in] account_type The account provider handle \n
* It should be given by account_type_query_* functions or account_type_foreach_account_type_from_db().
* @param[out] icon_path The icon path of the account provider item
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @see account_type_foreach_account_type_from_db()
* @see account_type_query_by_app_id()
*/
int account_type_get_icon_path(account_type_h account_type, char **icon_path);
/**
* @brief Gets the small icon path of an account provider.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a small_icon_path using free().
*
* @param[in] account_type The account provider handle\n
* It should be given by account_type_query_* functions or account_type_foreach_account_type_from_db().
* @param[out] small_icon_path The small icon path of the account provider item
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @see account_type_foreach_account_type_from_db()
* @see account_type_query_by_app_id()
*/
int account_type_get_small_icon_path(account_type_h account_type, char **small_icon_path);
/**
* @brief Checks whether the given account provider supports multiple accounts.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account_type The account provider handle \n
* It should be given by account_type_query_* functions or account_type_foreach_account_type_from_db.
* @param[out] multiple_account_support The flag indicating support for multiple accounts accounts\n
* TRUE or FALSE.
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of memory
*
* @see account_type_foreach_account_type_from_db()
* @see account_type_query_by_app_id()
*/
int account_type_get_multiple_account_support(account_type_h account_type, int *multiple_account_support);
/**
* @brief Gets capability information with the given account provider handle.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account_type The account provider handle\n
* It should be given by account_type_query_* functions or account_type_foreach_account_type_from_db().
* @param[in] callback The callback function that carries the capability name of the app ID
* @param[in] user_data The user data \n
* If you have your private data to carry into callback function, then you can use it.
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_disconnect()
*/
int account_type_get_provider_feature_all(account_type_h account_type, provider_feature_cb callback, void* user_data);
/**
* @brief Gets the specific label information detail of an account provider.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account_type The account provider handle\n
* It should be given by account_type_query_* functions or account_type_foreach_account_type_from_db().
* @param[in] locale The locale is specified as an ISO 3166 alpha-2 two letter country-code followed by ISO 639-1 for the two-letter language code.\n
* For example, "ko_KR" or "ko-kr" for Korean, "en_US" or "en-us" for American English.
* @param[out] label The label text given for the locale
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_RECORD_NOT_FOUND No label for the given locale
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_type_foreach_account_type_from_db()
* @see account_type_query_by_app_id()
*/
int account_type_get_label_by_locale(account_type_h account_type, const char* locale, char** label);
/**
* @brief Gets the label information detail of an account provider.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @param[in] account_type The account provider handle\n
* It should be given by account_type_query_* functions or account_type_foreach_account_type_from_db().
* @param[in] callback The callback function carrying the label information
* @param[in] user_data The user data to be passed to the callback function
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_type_foreach_account_type_from_db()
* @see account_type_query_by_app_id()
*/
int account_type_get_label(account_type_h account_type, account_label_cb callback, void *user_data);
/**
* @brief Retrieves the label information with your application ID.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] callback The callback function that carries label_h for label information \n
* label_h contains label info as parameter.
* @param[in] app_id The application ID to search
* @param[in] user_data The user data \n
* If you have your private data to carry into callback function, then you can use it.
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_type_query_by_app_id()
* @see account_type_foreach_account_type_from_db()
* @see account_disconnect()
*/
int account_type_query_label_by_app_id(account_label_cb callback, const char* app_id, void *user_data );
/**
* @brief Retrieves the account provider information with your application ID.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] app_id The application ID to search
* @param[in/out] account_type The account handle which has to be created by account_type_create() before calling this function and released by account_type_destroy() after calling this function.
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_RECORD_NOT_FOUND Queried data does not exist
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_type_create()
* @see account_type_get_app_id()
* @see account_type_get_service_provider_id()
* @see account_type_get_icon_path()
* @see account_type_get_small_icon_path()
* @see account_type_get_multiple_account_support()
* @see account_type_get_label()
* @see account_type_destroy()
*/
int account_type_query_by_app_id(const char* app_id, account_type_h *account_type);
/**
* @brief Retrieves all account priovider information.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] callback The account provider information \n
* You can get the account information through account_type_get_* with the carried account_type_handle.
* @param[in] user_data The user data \n
* It will be carried through your callback function.
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
* @see account_type_create()
* @see account_type_get_app_id()
* @see account_type_get_service_provider_id()
* @see account_type_get_icon_path()
* @see account_type_get_small_icon_path()
* @see account_type_get_multiple_account_support()
* @see account_type_get_label()
* @see account_type_destroy()
*/
int account_type_foreach_account_type_from_db(account_type_cb callback, void *user_data);
/**
* @brief Retrieves the label information with the given application ID and locale.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] app_id The application ID
* @param[in] locale The locale is specified as an ISO 3166 alpha-2 two letter country-code followed by ISO 639-1 for the two-letter language code.\n
* For example, "ko_KR" or "ko-kr" for Korean, "en_US" or "en-us" for American English.
* @param[out] label The label text corresponding app_id and locale \n
* It must be free text.
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
*/
int account_type_query_label_by_locale(const char* app_id, const char* locale, char** label);
/**
* @brief Retrieves account provider information with the capability name.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] callback The callback function to retrieve account provider information
* @param[in] key The capability value to search account provider \n
* For example, ACCOUNT_SUPPORTS_CAPABILITY_CONTACT or "http://tizen.org/account/capability/contact"
* @param[in] user_data If you have your private data to carry into callback function, then you can use it
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_RECORD_NOT_FOUND Record not found
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_connect()
*/
int account_type_query_by_provider_feature(account_type_cb callback, const char* key, void* user_data);
/**
* @brief Checks whether the given app_id exists in the account provider DB.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read
* @param[in] app_id The application ID to check
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_RECORD_NOT_FOUND Record not found
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid app ID
* @retval #ACCOUNT_ERROR_DB_FAILED Database operation failed
* @retval #ACCOUNT_ERROR_PERMISSION_DENIED DB Access fail by permission
* @retval #ACCOUNT_ERROR_DATABASE_BUSY SQLite handler is busy
* @retval #ACCOUNT_ERROR_DB_NOT_OPENED Account database did not opened
*
* @pre This function requires an open connection to an account service by account_connect().
*
* @see account_type_query_by_app_id()
*/
int account_type_query_app_id_exist(const char* app_id);
/* End of account provider API */
/**
* @brief Creates a handle for the account event subscription.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @remarks You must release @a account_subscribe handle using account_unsubscribe_notification().
*
* @param[in] account_subscribe The account subscription handle
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_OUT_OF_MEMORY Out of Memory
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @see account_unsubscribe_notification()
* @see account_subscribe_notification()
*/
int account_subscribe_create(account_subscribe_h* account_subscribe);
/**
* @brief Starts to subscribe account event through the given callback function.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read \n
* @param[in] account_subscribe The account subscription handle
* @param[in] callback The callback function that is called when an account is removed and a data of account is updated from the account database \n
* It will be called with event message and account ID.
* @param[in] user_data The user_data that is delivered to callback
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_EVENT_SUBSCRIPTION_FAIL Subscription fail
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
*
* @pre account_subscribe_create()
*
* @see account_unsubscribe_notification()
* @see account_subscribe_notification()
*/
int account_subscribe_notification(account_subscribe_h account_subscribe, account_event_cb callback, void* user_data);
/**
* @brief Destroys the account subscribe handle and releases all its resources.
*
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.4 @endif
* @privlevel public
* @privilege %http://tizen.org/privilege/account.read \n
* @remarks You must call @a account_unsubscribe_notification when you do not need to subscribe account event.
*
* @param[in] account_subscribe The account subscription handle
*
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ACCOUNT_ERROR_NONE Successful
* @retval #ACCOUNT_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ACCOUNT_ERROR_EVENT_SUBSCRIPTION_FAIL Unsubscription failed
*
* @see account_create()
*/
int account_unsubscribe_notification(account_subscribe_h account_subscribe);
#ifdef __cplusplus
}
#endif
#endif //__ACCOUNT_H_
|