Sync rua_stat feature with tizen 2.4
[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         const char *apppath = tzplatform_mkpath(TZ_SYS_RW_APP, pkgname);
38
39         memset(&rec, 0, sizeof(rec));
40         rec.pkg_name = pkgname;
41         rec.app_path = apppath;
42
43         ret = rua_init();
44         if (ret) {
45                 fprintf(stderr, "error rua_init()\n");
46                 return -1;
47         }
48
49         ret = rua_add_history(&rec);
50
51         rua_fini();
52
53         return ret;
54 }
55
56 int main(int argc, char* argv[])
57 {
58         int ret = 0;
59
60         if (argc != 2)
61                 return 0;
62         ret = __add_history(argv[1]);
63         return 0;
64 }