Newer
Older
*
* All rights reserved.
*
* This file is part of Obarun. It is subject to the license terms in
* the LICENSE file found in the top-level directory of this
* distribution.
* This file may not be copied, modified, propagated, or distributed
* except according to the terms contained in the LICENSE file./
*/
#include <string.h>
#include <wchar.h>
#include <oblibs/log.h>
#include <oblibs/sastr.h>
#include <oblibs/string.h>
#include <oblibs/types.h>
#include <oblibs/stack.h>
#include <skalibs/types.h>
#include <skalibs/stralloc.h>
#include <skalibs/lolstdio.h>
#include <skalibs/buffer.h>
#include <66/resolve.h>
#include <66/ssexec.h>
#include <66/tree.h>
#include <66/info.h>
#include <66/constants.h>
#include <66/config.h>
#include <66/state.h>
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
static wchar_t const field_suffix[] = L" :" ;
static char fields[INFO_NKEY][INFO_FIELD_MAXLEN] = {{ 0 }} ;
static void info_display_string(char const *field, char const *str, uint32_t element, uint8_t check)
{
info_display_field_name(field) ;
if (check && !element) {
if (!bprintf(buffer_1,"%s%s", log_color->warning, "None"))
log_dieusys(LOG_EXIT_SYS, "write to stdout") ;
} else {
if (!buffer_puts(buffer_1, str + element))
log_dieusys(LOG_EXIT_SYS, "write to stdout") ;
}
if (buffer_putsflush(buffer_1, "\n") == -1)
log_dieusys(LOG_EXIT_SYS, "write to stdout") ;
}
static void info_display_int(char const *field, uint32_t element)
{
info_display_field_name(field) ;
char ui[UINT_FMT] ;
ui[uint_fmt(ui, element)] = 0 ;
if (!buffer_puts(buffer_1, ui))
log_dieusys(LOG_EXIT_SYS, "write to stdout") ;
if (buffer_putsflush(buffer_1, "\n") == -1)
log_dieusys(LOG_EXIT_SYS, "write to stdout") ;
}
int ssexec_tree_resolve(int argc, char const *const *argv, ssexec_t *info)

Eric Vidal
committed
char const *treename = 0 ;
resolve_wrapper_t_ref wres = 0 ;
resolve_tree_t tres = RESOLVE_TREE_ZERO ;
resolve_tree_master_t mres = RESOLVE_TREE_MASTER_ZERO ;
argc-- ;
argv++ ;
if (argc < 1)

Eric Vidal
committed
treename = *argv ;
char tree_buf[MAXOPTS][INFO_FIELD_MAXLEN] = {
"name",
"depends" ,
"requiredby",
"allow",
"groups",
"contents",
"ndepends",
"nrequiredby",
"nallow",
"ngroups",
"ncontents",
//"init" ,
//"supervised", // 13
if (treename[0] == '/') {
_alloc_stk_(basename, strlen(treename) + 1) ;
_alloc_stk_(dirname, strlen(treename) + 1) ;
if (!ob_basename(basename.s, treename))
log_dieusys(LOG_EXIT_SYS, "get basename of: ", treename) ;
if (!strcmp(basename.s, SS_MASTER + 1)) {
master = 1 ;
wres = resolve_set_struct(DATA_TREE_MASTER, &mres) ;
} else {
wres = resolve_set_struct(DATA_TREE, &tres) ;
}
if (!ob_dirname(dirname.s, treename))
log_dieu(LOG_EXIT_SYS, "get dirname of: ", treename) ;
if (resolve_read_cdb(wres, dirname.s, basename.s) <= 0)
log_dieusys(LOG_EXIT_SYS, "read resolve file") ;
if (!strcmp(treename, SS_MASTER + 1)) {
master = 1 ;
wres = resolve_set_struct(DATA_TREE_MASTER, &mres) ;

Eric Vidal
committed
} else {
wres = resolve_set_struct(DATA_TREE, &tres) ;
r = tree_isvalid(info->base.s, treename) ;
if (r < 0)
log_dieu(LOG_EXIT_SYS, "check validity of tree: ", treename) ;
if (!r)
log_dieusys(LOG_EXIT_SYS, "find tree: ", treename) ;
}
if (resolve_read_g(wres, info->base.s, treename) <= 0)
log_dieusys(LOG_EXIT_SYS, "read resolve file") ;
}
info_field_align(tree_buf, fields, field_suffix,MAXOPTS) ;
if (!master) {
unsigned int m = 0 ;
info_display_string(fields[m++], tres.sa.s, tres.name, 0) ;
info_display_int(fields[m++], tres.enabled) ;
info_display_string(fields[m++], tres.sa.s, tres.depends, 1) ;
info_display_string(fields[m++], tres.sa.s, tres.requiredby, 1) ;
info_display_string(fields[m++], tres.sa.s, tres.allow, 1) ;
info_display_string(fields[m++], tres.sa.s, tres.groups, 1) ;
info_display_string(fields[m++], tres.sa.s, tres.contents, 1) ;
info_display_int(fields[m++], tres.ndepends) ;
info_display_int(fields[m++], tres.nrequiredby) ;
info_display_int(fields[m++], tres.nallow) ;
info_display_int(fields[m++], tres.ngroups) ;
info_display_int(fields[m++], tres.ncontents) ;
//info_display_int(fields[m++], tres.init) ;
//info_display_int(fields[m++], tres.supervised) ;
info_display_string(fields[13], tres.sa.s, tres.rversion, 1) ;
} else {
info_display_string(fields[0], mres.sa.s, mres.name, 1) ;
info_display_string(fields[4], mres.sa.s, mres.allow, 1) ;
info_display_string(fields[12], mres.sa.s, mres.current, 1) ;
info_display_string(fields[6], mres.sa.s, mres.contents, 1) ;
info_display_int(fields[9], mres.nallow) ;
info_display_int(fields[11], mres.ncontents) ;
info_display_string(fields[13], mres.sa.s, mres.rversion, 1) ;
}
resolve_free(wres) ;
return 0 ;
}