Skip to content
Snippets Groups Projects
Commit 8b69700e authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

add requiredby key, remove longrun addservices key

parent 440708ec
No related branches found
No related tags found
No related merge requests found
...@@ -125,8 +125,6 @@ enum enum_key_section_regex_e ...@@ -125,8 +125,6 @@ enum enum_key_section_regex_e
KEY_REGEX_DIRECTORIES , KEY_REGEX_DIRECTORIES ,
KEY_REGEX_FILES , KEY_REGEX_FILES ,
KEY_REGEX_INFILES , KEY_REGEX_INFILES ,
KEY_REGEX_ADDSERVICES ,
KEY_REGEX_APPLYTO ,
KEY_REGEX_ENDOFKEY KEY_REGEX_ENDOFKEY
} ; } ;
......
...@@ -14,9 +14,7 @@ ...@@ -14,9 +14,7 @@
#include <66/enum.h> #include <66/enum.h>
#include <stddef.h> #include <string.h>
#include <oblibs/string.h>
#include <oblibs/log.h> #include <oblibs/log.h>
...@@ -34,10 +32,9 @@ char const *enum_str_key_section_main[] = { ...@@ -34,10 +32,9 @@ char const *enum_str_key_section_main[] = {
"@type" , "@type" ,
"@version" , "@version" ,
"@description" , "@description" ,
"@contents" ,
"@depends" , "@depends" ,
"@requiredby",
"@optsdepends" , "@optsdepends" ,
"@extdepends" ,
"@options" , "@options" ,
"@notify" , "@notify" ,
"@user" , "@user" ,
...@@ -78,7 +75,7 @@ char const *enum_str_key_section_logger[] = { ...@@ -78,7 +75,7 @@ char const *enum_str_key_section_logger[] = {
} ; } ;
char const *enum_str_key_section_environ[] = { char const *enum_str_key_section_environ[] = {
"@none" , "@environ" ,
0 0
} ; } ;
...@@ -87,14 +84,12 @@ char const *enum_str_key_section_regex[] = { ...@@ -87,14 +84,12 @@ char const *enum_str_key_section_regex[] = {
"@directories" , "@directories" ,
"@files" , "@files" ,
"@infiles" , "@infiles" ,
"@addservices" ,
0 0
} ; } ;
char const *enum_str_type[] = { char const *enum_str_type[] = {
"classic" , "classic" ,
"bundle" , "bundle" ,
"longrun" ,
"oneshot" , "oneshot" ,
"module" , "module" ,
0 0
...@@ -113,13 +108,12 @@ char const *enum_str_expected[] = { ...@@ -113,13 +108,12 @@ char const *enum_str_expected[] = {
char const *enum_str_opts[] = { char const *enum_str_opts[] = {
"log" , "log" ,
"env" , "env" ,
"hiercopy" ,
"pipeline" ,
0 0
} ; } ;
char const *enum_str_flags[] = { char const *enum_str_flags[] = {
"down" , "down" ,
"earlier" ,
0 0
} ; } ;
...@@ -144,14 +138,6 @@ char const *enum_str_time[] = { ...@@ -144,14 +138,6 @@ char const *enum_str_time[] = {
0 0
} ; } ;
char const *enum_str_logopts[] = {
"producer-for" ,
"consumer-for" ,
"pipeline-name" ,
0
} ;
char const *enum_str_seed[] = { char const *enum_str_seed[] = {
"depends" , "depends" ,
...@@ -180,7 +166,6 @@ enum_all_enum_t enum_all[] = { ...@@ -180,7 +166,6 @@ enum_all_enum_t enum_all[] = {
[ENUM_BUILD] = { .enum_all = BUILD_ENDOFKEY - ENUM_START , .str = enum_str_build } , [ENUM_BUILD] = { .enum_all = BUILD_ENDOFKEY - ENUM_START , .str = enum_str_build } ,
[ENUM_MANDATORY] = { .enum_all = MANDATORY_ENDOFKEY - ENUM_START , .str = enum_str_mandatory } , [ENUM_MANDATORY] = { .enum_all = MANDATORY_ENDOFKEY - ENUM_START , .str = enum_str_mandatory } ,
[ENUM_TIME] = { .enum_all = TIME_ENDOFKEY - ENUM_START , .str = enum_str_time } , [ENUM_TIME] = { .enum_all = TIME_ENDOFKEY - ENUM_START , .str = enum_str_time } ,
[ENUM_LOGOPTS] = { .enum_all = LOGOPTS_ENDOFKEY - ENUM_START , .str = enum_str_logopts } ,
[ENUM_SEED] = { .enum_all = SEED_ENDOFKEY - ENUM_START , .str = enum_str_seed } , [ENUM_SEED] = { .enum_all = SEED_ENDOFKEY - ENUM_START , .str = enum_str_seed } ,
[ENUM_ENDOFKEY] = { 0 } [ENUM_ENDOFKEY] = { 0 }
...@@ -188,12 +173,12 @@ enum_all_enum_t enum_all[] = { ...@@ -188,12 +173,12 @@ enum_all_enum_t enum_all[] = {
ssize_t get_enum_by_key_one(char const *str, int const e) ssize_t get_enum_by_key_one(char const *str, int const e)
{ {
log_flow() ; //log_flow() ;
int i = 0 ; int i = 0 ;
enum_all_enum_t *key = enum_all ; enum_all_enum_t *key = enum_all ;
for(; i < key[e].enum_all;i++) for(; i < key[e].enum_all;i++)
if(obstr_equal(str,key[e].str[i])) if(!strcmp(str,key[e].str[i]))
return i ; return i ;
return -1 ; return -1 ;
...@@ -201,7 +186,7 @@ ssize_t get_enum_by_key_one(char const *str, int const e) ...@@ -201,7 +186,7 @@ ssize_t get_enum_by_key_one(char const *str, int const e)
ssize_t get_enum_by_key(char const *str) ssize_t get_enum_by_key(char const *str)
{ {
log_flow() ; //log_flow() ;
int i = 0, ret ; int i = 0, ret ;
...@@ -219,3 +204,8 @@ char const *get_key_by_enum(int const e, int const key) ...@@ -219,3 +204,8 @@ char const *get_key_by_enum(int const e, int const key)
return enum_all[e].str[key] ; return enum_all[e].str[key] ;
} }
char const *get_key_by_key_all(int const idsec, int const idkey)
{
return *total_list[idsec].list[idkey].name ;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment