tizen 2.0 beta
[framework/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 #include "rua.h"
29
30 int __add_history(char *pkgname)
31 {
32         int ret = 0;
33         struct rua_rec rec;
34         char apppath[FILENAME_MAX] = "";
35
36         snprintf(apppath, "/opt/apps/%s", pkgname, FILENAME_MAX);
37         memset(&rec, 0, sizeof(rec));
38         rec.pkg_name = pkgname;
39         rec.app_path = apppath;
40
41         ret = rua_init();
42         if (ret) {
43                 fprintf(stderr, "error rua_init()\n");
44                 return -1;
45         }
46
47         ret = rua_add_history(&rec);
48
49         rua_fini();
50
51         return ret;
52
53 }
54
55 int main(int argc, char* argv[])
56 {
57         int ret = 0;
58
59         if (argc != 2)
60                 return 0;
61         ret = __add_history(argv[1]);
62         return 0;
63 }
64
65