2d741ae18cb838281bc76738a9f7dff1fefefb67
[platform/core/appfw/pkgmgr-server.git] / src / queue.c
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #define _XOPEN_SOURCE 500
19 #include <ftw.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <strings.h>
24 #include <unistd.h>
25 #include <sys/stat.h>
26 #include <sys/types.h>
27
28 #include <glib.h>
29
30 #include "pkgmgr-server.h"
31 #include "queue.h"
32
33 #define BACKEND_DIR "/etc/package-manager/backend"
34 #define NOPENFD 20
35
36 struct backend_queue {
37         char *path;
38         char *type;
39         int slot;
40         GList *job_list;
41 };
42
43 static GHashTable *queue_type_table;
44 static GHashTable *queue_slot_table;
45
46 int num_of_backends;
47
48 int _is_queue_empty(int pos)
49 {
50         struct backend_queue *queue;
51
52         queue = (struct backend_queue *)g_hash_table_lookup(queue_slot_table,
53                         (gconstpointer)pos);
54         if (queue == NULL) {
55                 ERR("cannot find queue of slot %d", pos);
56                 return -1;
57         }
58
59         if (queue->job_list == NULL)
60                 return 1;
61
62         return 0;
63 }
64
65 struct backend_job *_pop_queue(int pos)
66 {
67         struct backend_queue *queue;
68         struct backend_job *job;
69         GList *tmp;
70
71         queue = (struct backend_queue *)g_hash_table_lookup(queue_slot_table,
72                         (gconstpointer)pos);
73         if (queue == NULL) {
74                 ERR("cannot find queue of slot %d", pos);
75                 return NULL;
76         }
77
78         tmp = g_list_first(queue->job_list);
79         if (tmp == NULL)
80                 return NULL;
81         job = (struct backend_job *)tmp->data;
82         queue->job_list = g_list_delete_link(queue->job_list, tmp);
83
84         return job;
85 }
86
87 int _push_queue(uid_t uid, const char *req_id, int req_type,
88                 const char *queue_type, const char *pkgid, const char *args)
89 {
90         struct backend_queue *queue;
91         struct backend_job *job;
92
93         queue = (struct backend_queue *)g_hash_table_lookup(queue_type_table,
94                         (gconstpointer)queue_type);
95         if (queue == NULL) {
96                 ERR("no such queue: %s", queue_type);
97                 return -1;
98         }
99
100         job = calloc(1, sizeof(struct backend_job));
101         job->uid = uid;
102         if (req_id)
103                 job->req_id = strdup(req_id);
104         job->req_type = req_type;
105         if (pkgid)
106                 job->pkgid = strdup(pkgid);
107         if (args)
108                 job->args = strdup(args);
109         /* just assign pointer value */
110         job->backend_slot = queue->slot;
111         job->backend_type = queue->type;
112         job->backend_path = queue->path;
113
114         queue->job_list = g_list_append(queue->job_list, (gpointer)job);
115
116         return 0;
117 }
118
119 static int __init_backends(const char *fpath, const struct stat *sb,
120                 int typeflag, struct FTW *ftwbuf)
121 {
122         struct backend_queue *queue;
123
124         if (typeflag != FTW_F && typeflag != FTW_SL)
125                 return 0;
126
127         queue = calloc(1, sizeof(struct backend_queue));
128         if (typeflag == FTW_F) {
129                 queue->path = strdup(fpath);
130         } else if (typeflag == FTW_SL) {
131                 queue->path = malloc(sb->st_size + 1);
132                 if (readlink(fpath, queue->path, sb->st_size + 1) < 0) {
133                         ERR("failed to readlink for %s", fpath);
134                         free(queue->path);
135                         free(queue);
136                         return -1;
137                 }
138         }
139         queue->type = strdup(fpath + ftwbuf->base);
140         queue->slot = num_of_backends++;
141         g_hash_table_insert(queue_type_table, (gpointer)queue->type,
142                         (gpointer)queue);
143         g_hash_table_insert(queue_slot_table, (gpointer)queue->slot,
144                         (gpointer)queue);
145
146         DBG("backend detected: %s(%s)", queue->type, queue->path);
147
148         return 0;
149 }
150
151 static gboolean __str_equal(gconstpointer v1, gconstpointer v2)
152 {
153         const char *str1 = (const char *)v1;
154         const char *str2 = (const char *)v2;
155
156         /* ignore case */
157         return strcasecmp(str1, str2) == 0;
158 }
159
160 void _free_backend_job(struct backend_job *job)
161 {
162         free(job->req_id);
163         free(job->pkgid);
164         free(job->appid);
165         free(job->args);
166         free(job);
167 }
168
169 static void __free_backend_queue(gpointer data)
170 {
171         struct backend_queue *queue = (struct backend_queue *)data;
172
173         g_list_free_full(queue->job_list, (GDestroyNotify)_free_backend_job);
174         free(queue->path);
175         free(queue->type);
176         free(queue);
177 }
178
179 void _fini_backend_queue(void)
180 {
181         g_hash_table_destroy(queue_slot_table);
182         g_hash_table_destroy(queue_type_table);
183 }
184
185 int _init_backend_queue(void)
186 {
187         queue_type_table = g_hash_table_new_full(g_str_hash, __str_equal,
188                         NULL, __free_backend_queue);
189         queue_slot_table = g_hash_table_new(g_direct_hash, g_direct_equal);
190
191         if (nftw(BACKEND_DIR, __init_backends, NOPENFD, FTW_PHYS))
192                 return -1;
193
194         DBG("number of backends: %d", num_of_backends);
195
196         return 0;
197 }