Remove some bogus error checking and return void instead of int.
[project/opkg-lede.git] / libopkg / opkg_conf.h
1 /* opkg_conf.h - 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 #ifndef OPKG_CONF_H
19 #define OPKG_CONF_H
20
21 typedef struct opkg_conf opkg_conf_t;
22
23 #include "hash_table.h"
24 #include "args.h"
25 #include "pkg.h"
26 #include "pkg_hash.h"
27 #include "pkg_src_list.h"
28 #include "pkg_dest_list.h"
29 #include "nv_pair_list.h"
30
31 #define OPKG_CONF_DEFAULT_TMP_DIR_BASE "/tmp"
32 #define OPKG_CONF_TMP_DIR_SUFFIX "opkg-XXXXXX"
33 #define OPKG_CONF_LISTS_DIR OPKG_STATE_DIR_PREFIX "/lists"
34 #define OPKG_CONF_PENDING_DIR OPKG_STATE_DIR_PREFIX "/pending"
35
36 /* In case the config file defines no dest */
37 #define OPKG_CONF_DEFAULT_DEST_NAME "root"
38 #define OPKG_CONF_DEFAULT_DEST_ROOT_DIR "/"
39
40 #define OPKG_CONF_DEFAULT_HASH_LEN 1024
41
42 struct opkg_conf
43 {
44 int lock_fd; /* file descriptor for the lock file */
45 pkg_src_list_t pkg_src_list;
46 pkg_dest_list_t pkg_dest_list;
47 nv_pair_list_t arch_list;
48
49 int restrict_to_default_dest;
50 pkg_dest_t *default_dest;
51
52 char *tmp_dir;
53 char *lists_dir;
54 char *pending_dir;
55
56 /* options */
57 int autoremove;
58 int force_depends;
59 int force_defaults;
60 int force_maintainer;
61 int force_overwrite;
62 int force_downgrade;
63 int force_reinstall;
64 int force_space;
65 int force_removal_of_dependent_packages;
66 int force_removal_of_essential_packages;
67 int check_signature;
68 int nodeps; /* do not follow dependences */
69 char *offline_root;
70 char *offline_root_path;
71 char *offline_root_pre_script_cmd;
72 char *offline_root_post_script_cmd;
73 int query_all;
74 int verbosity;
75 int noaction;
76 char *cache;
77
78 #ifdef HAVE_SSLCURL
79 /* some options could be used by
80 * wget if curl support isn't builtin
81 * If someone want to try...
82 */
83 char *ssl_engine;
84 char *ssl_cert;
85 char *ssl_cert_type;
86 char *ssl_key;
87 char *ssl_key_type;
88 char *ssl_key_passwd;
89 char *ssl_ca_file;
90 char *ssl_ca_path;
91 int ssl_dont_verify_peer;
92 #endif
93 #ifdef HAVE_PATHFINDER
94 int check_x509_path;
95 #endif
96
97 /* proxy options */
98 char *http_proxy;
99 char *ftp_proxy;
100 char *no_proxy;
101 char *proxy_user;
102 char *proxy_passwd;
103
104 char *signature_ca_file;
105 char *signature_ca_path;
106
107 hash_table_t pkg_hash;
108 hash_table_t file_hash;
109 hash_table_t obs_file_hash;
110 };
111
112 enum opkg_option_type {
113 OPKG_OPT_TYPE_BOOL,
114 OPKG_OPT_TYPE_INT,
115 OPKG_OPT_TYPE_STRING
116 };
117 typedef enum opkg_option_type opkg_option_type_t;
118
119 typedef struct opkg_option opkg_option_t;
120 struct opkg_option {
121 const char *name;
122 const opkg_option_type_t type;
123 const void *value;
124 };
125
126 int opkg_conf_init(opkg_conf_t *conf, const args_t *args);
127 void opkg_conf_deinit(opkg_conf_t *conf);
128
129 int opkg_conf_write_status_files(opkg_conf_t *conf);
130 char *root_filename_alloc(opkg_conf_t *conf, char *filename);
131
132
133 void opkg_init_options_array(const opkg_conf_t *conf, opkg_option_t **options);
134
135 #endif