Remove unused opkg_set_current_state bits.
[project/opkg-lede.git] / libopkg / pkg_dest.c
1 /* pkg_dest.c - the opkg package management system
2
3 Carl D. Worth
4
5 Copyright (C) 2001 University of Southern California
6
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2, or (at
10 your option) any later version.
11
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16 */
17
18 #include "includes.h"
19
20 #include "pkg_dest.h"
21 #include "file_util.h"
22 #include "str_util.h"
23 #include "sprintf_alloc.h"
24 #include "opkg_conf.h"
25 #include "opkg_cmd.h"
26 #include "opkg_defines.h"
27
28 int pkg_dest_init(pkg_dest_t *dest, const char *name, const char *root_dir,const char * lists_dir)
29 {
30 dest->name = strdup(name);
31
32 /* Guarantee that dest->root_dir ends with a '/' */
33 if (str_ends_with(root_dir, "/")) {
34 dest->root_dir = strdup(root_dir);
35 } else {
36 sprintf_alloc(&dest->root_dir, "%s/", root_dir);
37 }
38 file_mkdir_hier(dest->root_dir, 0755);
39
40 sprintf_alloc(&dest->opkg_dir, "%s%s",
41 dest->root_dir, OPKG_STATE_DIR_PREFIX);
42 file_mkdir_hier(dest->opkg_dir, 0755);
43
44 if (str_starts_with (lists_dir, "/"))
45 sprintf_alloc(&dest->lists_dir, "%s", lists_dir);
46 else
47 sprintf_alloc(&dest->lists_dir, "/%s", lists_dir);
48
49 file_mkdir_hier(dest->lists_dir, 0755);
50
51 sprintf_alloc(&dest->info_dir, "%s/%s",
52 dest->opkg_dir, OPKG_INFO_DIR_SUFFIX);
53 file_mkdir_hier(dest->info_dir, 0755);
54
55 sprintf_alloc(&dest->status_file_name, "%s/%s",
56 dest->opkg_dir, OPKG_STATUS_FILE_SUFFIX);
57
58 sprintf_alloc(&dest->status_file_tmp_name, "%s/%s.tmp",
59 dest->opkg_dir, OPKG_STATUS_FILE_SUFFIX);
60
61 dest->status_file = NULL;
62
63 return 0;
64 }
65
66 void pkg_dest_deinit(pkg_dest_t *dest)
67 {
68 free(dest->name);
69 dest->name = NULL;
70
71 free(dest->root_dir);
72 dest->root_dir = NULL;
73
74 free(dest->opkg_dir);
75 dest->opkg_dir = NULL;
76
77 free(dest->lists_dir);
78 dest->lists_dir = NULL;
79
80 free(dest->info_dir);
81 dest->info_dir = NULL;
82
83 free(dest->status_file_name);
84 dest->status_file_name = NULL;
85
86 free(dest->status_file_tmp_name);
87 dest->status_file_tmp_name = NULL;
88
89 if (dest->status_file) {
90 fclose(dest->status_file);
91 }
92 dest->status_file = NULL;
93
94 dest->root_dir = NULL;
95 }