summaryrefslogtreecommitdiffstats
path: root/src/lua-apk.c
blob: 4bb579680a662f4243f3a8eebbba9b1e69380159 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>

#include "apk_defines.h"
#include "apk_version.h"
#include "apk_blob.h"
#include "apk_database.h"

#define LIBNAME "apk"

int apk_verbosity;
unsigned int apk_flags;

struct flagmap {
	const char *name;
	int flag;
};

struct flagmap opendb_flagmap[] = {
	{"read", 		APK_OPENF_READ},
	{"write", 		APK_OPENF_WRITE},
	{"create", 		APK_OPENF_CREATE},
	{"no_installed",	APK_OPENF_NO_INSTALLED},
	{"no_scripts",		APK_OPENF_NO_SCRIPTS},
	{"no_world",		APK_OPENF_NO_WORLD},
	{"no_sys_repos",	APK_OPENF_NO_SYS_REPOS},
	{"no_installed_repo",	APK_OPENF_NO_INSTALLED_REPO},
	{"no_repos",		APK_OPENF_NO_REPOS},
	{"no_state",		APK_OPENF_NO_STATE},
	{"no_scripts",		APK_OPENF_NO_SCRIPTS},
	{"no_world",		APK_OPENF_NO_WORLD},
	{NULL, 0}
};

/* version_validate(verstr) */
/* returns boolean */
static int Pversion_validate(lua_State *L)
{
	apk_blob_t ver;
	ver.ptr = (char *)luaL_checklstring(L, 1, &ver.len);
	lua_pushboolean(L, apk_version_validate(ver));
	return 1;
}

/* version_compare(verstr1, verstr2)
   returns either '<', '=' or '>'
*/
static int Pversion_compare(lua_State *L)
{
	apk_blob_t a, b;
	a.ptr = (char *)luaL_checklstring(L, 1, &a.len);
	b.ptr = (char *)luaL_checklstring(L, 2, &b.len);
	lua_pushstring(L, apk_version_op_string(apk_version_compare_blob(a, b)));
	return 1;
}

/* version_is_less(verstr1, verstr2)
   returns either '<', '=' or '>'
*/
static int Pversion_is_less(lua_State *L)
{
	apk_blob_t a, b;
	a.ptr = (char *)luaL_checklstring(L, 1, &a.len);
	b.ptr = (char *)luaL_checklstring(L, 2, &b.len);
	lua_pushboolean(L, apk_version_compare_blob(a, b) == APK_VERSION_LESS);
	return 1;
}

//static getfield(lua_State *L, const char *key)
//{
static const char *get_opt_string_field(lua_State *L, int index,
				        const char *key, const char *def)
{
	const char *value;
	lua_getfield(L, index, key);
	value = luaL_optstring(L, -1, def);
	lua_pop(L, 1);
	return value;
}

static int get_opt_int_field(lua_State *L, int index, const char *key, int def)
{
	int value;
	lua_getfield(L, index, key);
	value = luaL_optinteger(L, -1, def);
	lua_pop(L, 1);
	return value;
}

static int get_boolean_field(lua_State *L, int index, const char *key)
{
	int value;
	lua_getfield(L, index, key);
	value = lua_toboolean(L, -1);
	lua_pop(L, 1);
	return value;
}

static int get_dbopts(lua_State *L, int i, struct apk_db_options *o)
{
	struct flagmap *f;
	o->root = (char *)get_opt_string_field(L, i, "root", NULL);
	o->repositories_file = (char *)get_opt_string_field(L, i, "repositories_file", NULL);
	o->keys_dir = (char *)get_opt_string_field(L, i, "keys_dir", NULL);
	o->lock_wait = get_opt_int_field(L, i, "lock_wait", 0);
	for (f = opendb_flagmap; f->name != NULL; f++)
		if (get_boolean_field(L, i, f->name))
			o->open_flags |= f->flag;
	return 0;
}

static int Papk_db_open(lua_State *L)
{
	struct apk_db_options opts;
	memset(&opts, 0, sizeof(opts));
	if (lua_istable(L, 1))
		get_dbopts(L, 1, &opts);
	return 0;
}

static const luaL_reg R[] = {
	{"version_validate",	Pversion_validate},
	{"version_compare",	Pversion_compare},
	{"version_is_less",	Pversion_is_less},
	{"db_open",		Papk_db_open},
	{NULL,		NULL}
};

LUALIB_API int luaopen_apk(lua_State *L)
{
	luaL_register(L, LIBNAME, R);
	lua_pushliteral(L, "version");
	lua_pushliteral(L, APK_VERSION);
	lua_settable(L, -3);
	return 1;
}