Add multi-user support
[platform/core/appfw/librua.git] / test / rua-test.c
1 /*
2  *  RUA
3  *
4  * Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Jayoun Lee <airjany@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #include <stdio.h>
23 #include <getopt.h>
24 #include <time.h>
25 #include <stdlib.h>
26 #include <string.h>
27
28 /* For multi-user support */
29 #include <tzplatform_config.h>
30
31 #include "rua.h"
32
33 int __add_history(char *pkgname)
34 {
35         int ret = 0;
36         struct rua_rec rec;
37         char apppath[FILENAME_MAX] = "";
38
39         apppath = tzplatform_mkpath(TZ_SYS_RW_APP, pkgname);
40         memset(&rec, 0, sizeof(rec));
41         rec.pkg_name = pkgname;
42         rec.app_path = apppath;
43
44         ret = rua_init();
45         if (ret) {
46                 fprintf(stderr, "error rua_init()\n");
47                 return -1;
48         }
49
50         ret = rua_add_history(&rec);
51
52         rua_fini();
53
54         return ret;
55
56 }
57
58 int main(int argc, char* argv[])
59 {
60         int ret = 0;
61
62         if (argc != 2)
63                 return 0;
64         ret = __add_history(argv[1]);
65         return 0;
66 }
67
68