Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
3dece598
Commit
3dece598
authored
16 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
fix for handling qoutes around ints and such in a load file for sacctmgr
parent
a2f45b5f
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/sacctmgr/common.c
+42
-4
42 additions, 4 deletions
src/sacctmgr/common.c
src/sacctmgr/sacctmgr.c
+48
-22
48 additions, 22 deletions
src/sacctmgr/sacctmgr.c
src/sacctmgr/sacctmgr.h
+1
-0
1 addition, 0 deletions
src/sacctmgr/sacctmgr.h
with
91 additions
and
26 deletions
src/sacctmgr/common.c
+
42
−
4
View file @
3dece598
...
...
@@ -90,6 +90,38 @@ extern int parse_option_end(char *option)
return
end
;
}
/* you need to xfree whatever is sent from here */
extern
char
*
strip_quotes
(
char
*
option
,
int
*
increased
)
{
int
end
=
0
;
int
i
=
0
,
start
=
0
;
char
*
meat
=
NULL
;
if
(
!
option
)
return
NULL
;
/* first strip off the ("|')'s */
if
(
option
[
i
]
==
'\"'
||
option
[
i
]
==
'\''
)
i
++
;
start
=
i
;
while
(
option
[
i
])
{
if
(
option
[
i
]
==
'\"'
||
option
[
i
]
==
'\''
)
{
end
++
;
break
;
}
i
++
;
}
end
+=
i
;
meat
=
xmalloc
((
i
-
start
)
+
1
);
memcpy
(
meat
,
option
+
start
,
(
i
-
start
));
(
*
increased
)
+=
end
;
return
meat
;
}
extern
void
addto_char_list
(
List
char_list
,
char
*
names
)
{
int
i
=
0
,
start
=
0
;
...
...
@@ -547,15 +579,21 @@ extern acct_cluster_rec_t *sacctmgr_find_cluster_from_list(
extern
int
get_uint
(
char
*
in_value
,
uint32_t
*
out_value
,
char
*
type
)
{
char
*
ptr
=
NULL
;
char
*
ptr
=
NULL
,
*
meat
=
NULL
;
long
num
;
int
i
=
0
;
if
(
!
(
meat
=
strip_quotes
(
in_value
,
&
i
)))
return
SLURM_ERROR
;
num
=
strtol
(
in_value
,
&
ptr
,
10
);
num
=
strtol
(
meat
,
&
ptr
,
10
);
if
((
num
==
0
)
&&
ptr
&&
ptr
[
0
])
{
error
(
"Invalid value for %s"
,
type
);
error
(
"Invalid value for %s (%s)"
,
type
,
meat
);
xfree
(
meat
);
return
SLURM_ERROR
;
}
xfree
(
meat
);
if
(
num
<
0
)
*
out_value
=
INFINITE
;
/* flag to clear */
else
...
...
This diff is collapsed.
Click to expand it.
src/sacctmgr/sacctmgr.c
+
48
−
22
View file @
3dece598
...
...
@@ -671,9 +671,11 @@ static void _destroy_sacctmgr_file_opts(void *object)
static
sacctmgr_file_opts_t
*
_parse_options
(
char
*
options
)
{
int
start
=
0
,
i
=
0
,
end
=
0
,
mins
;
char
*
sub
=
NULL
;
int
start
=
0
,
i
=
0
,
end
=
0
,
mins
,
quote
=
0
;
char
*
sub
=
NULL
;
sacctmgr_file_opts_t
*
file_opts
=
xmalloc
(
sizeof
(
sacctmgr_file_opts_t
));
char
*
option
=
NULL
;
file_opts
->
fairshare
=
NO_VAL
;
file_opts
->
max_cpu_secs_per_job
=
NO_VAL
;
file_opts
->
max_jobs
=
NO_VAL
;
...
...
@@ -681,13 +683,31 @@ static sacctmgr_file_opts_t *_parse_options(char *options)
file_opts
->
max_wall_duration_per_job
=
NO_VAL
;
while
(
options
[
i
])
{
quote
=
0
;
start
=
i
;
while
(
options
[
i
]
!=
':'
&&
options
[
i
]
!=
'\n'
&&
options
[
i
])
while
(
options
[
i
]
&&
options
[
i
]
!=
':'
&&
options
[
i
]
!=
'\n'
)
{
if
(
options
[
i
]
==
'"'
)
{
if
(
quote
)
quote
=
0
;
else
quote
=
1
;
}
i
++
;
}
if
(
quote
)
{
while
(
options
[
i
]
&&
options
[
i
]
!=
'"'
)
i
++
;
if
(
!
options
[
i
])
fatal
(
"There is a problem with option "
"%s with quotes."
,
option
);
i
++
;
}
sub
=
xstrndup
(
options
+
start
,
i
-
start
);
end
=
parse_option_end
(
sub
);
option
=
strip_quotes
(
sub
+
end
,
&
quote
);
if
(
!
end
)
{
if
(
file_opts
->
name
)
{
printf
(
" Bad format on %s: "
...
...
@@ -696,75 +716,81 @@ static sacctmgr_file_opts_t *_parse_options(char *options)
_destroy_sacctmgr_file_opts
(
file_opts
);
break
;
}
file_opts
->
name
=
xstrdup
(
sub
+
end
);
file_opts
->
name
=
xstrdup
(
option
);
}
else
if
(
strncasecmp
(
sub
,
"AdminLevel"
,
2
)
==
0
)
{
file_opts
->
admin
=
str_2_acct_admin_level
(
sub
+
end
);
file_opts
->
admin
=
str_2_acct_admin_level
(
option
);
}
else
if
(
strncasecmp
(
sub
,
"DefaultAccount"
,
3
)
==
0
)
{
file_opts
->
def_acct
=
xstrdup
(
sub
+
end
);
file_opts
->
def_acct
=
xstrdup
(
option
);
}
else
if
(
strncasecmp
(
sub
,
"Description"
,
3
)
==
0
)
{
file_opts
->
desc
=
xstrdup
(
sub
+
end
);
file_opts
->
desc
=
xstrdup
(
option
);
}
else
if
(
strncasecmp
(
sub
,
"FairShare"
,
1
)
==
0
)
{
if
(
get_uint
(
sub
+
end
,
&
file_opts
->
fairshare
,
if
(
get_uint
(
option
,
&
file_opts
->
fairshare
,
"FairShare"
)
!=
SLURM_SUCCESS
)
{
printf
(
" Bad FairShare value: %s
\n
"
,
sub
+
end
);
printf
(
" Bad FairShare value: %s
\n
"
,
option
);
_destroy_sacctmgr_file_opts
(
file_opts
);
break
;
}
}
else
if
(
strncasecmp
(
sub
,
"MaxCPUSec"
,
4
)
==
0
)
{
if
(
get_uint
(
sub
+
end
,
&
file_opts
->
max_cpu_secs_per_job
,
if
(
get_uint
(
option
,
&
file_opts
->
max_cpu_secs_per_job
,
"MaxCPUSec"
)
!=
SLURM_SUCCESS
)
{
printf
(
" Bad MaxCPUSec value: %s
\n
"
,
sub
+
end
);
printf
(
" Bad MaxCPUSec value: %s
\n
"
,
option
);
_destroy_sacctmgr_file_opts
(
file_opts
);
break
;
}
}
else
if
(
strncasecmp
(
sub
,
"MaxJobs"
,
4
)
==
0
)
{
if
(
get_uint
(
sub
+
end
,
&
file_opts
->
max_jobs
,
if
(
get_uint
(
option
,
&
file_opts
->
max_jobs
,
"MaxJobs"
)
!=
SLURM_SUCCESS
)
{
printf
(
" Bad MaxJobs value: %s
\n
"
,
sub
+
end
);
printf
(
" Bad MaxJobs value: %s
\n
"
,
option
);
_destroy_sacctmgr_file_opts
(
file_opts
);
break
;
}
}
else
if
(
strncasecmp
(
sub
,
"MaxNodes"
,
4
)
==
0
)
{
if
(
get_uint
(
sub
+
end
,
&
file_opts
->
max_nodes_per_job
,
if
(
get_uint
(
option
,
&
file_opts
->
max_nodes_per_job
,
"MaxNodes"
)
!=
SLURM_SUCCESS
)
{
printf
(
" Bad MaxNodes value: %s
\n
"
,
sub
+
end
);
printf
(
" Bad MaxNodes value: %s
\n
"
,
option
);
_destroy_sacctmgr_file_opts
(
file_opts
);
break
;
}
}
else
if
(
strncasecmp
(
sub
,
"MaxWall"
,
4
)
==
0
)
{
mins
=
time_str2mins
(
sub
+
end
);
mins
=
time_str2mins
(
option
);
if
(
mins
>=
0
)
{
file_opts
->
max_wall_duration_per_job
=
(
uint32_t
)
mins
;
}
else
if
(
strcmp
(
sub
+
end
,
"-1"
)
==
0
)
{
}
else
if
(
strcmp
(
option
,
"-1"
)
==
0
)
{
file_opts
->
max_wall_duration_per_job
=
-
1
;
}
else
{
printf
(
" Bad MaxWall time format: %s
\n
"
,
sub
+
end
);
option
);
_destroy_sacctmgr_file_opts
(
file_opts
);
break
;
}
}
else
if
(
strncasecmp
(
sub
,
"Organization"
,
1
)
==
0
)
{
file_opts
->
org
=
xstrdup
(
sub
+
end
);
file_opts
->
org
=
xstrdup
(
option
);
}
else
if
(
strncasecmp
(
sub
,
"QosLevel"
,
1
)
==
0
)
{
file_opts
->
qos
=
str_2_acct_qos
(
sub
+
end
);
file_opts
->
qos
=
str_2_acct_qos
(
option
);
}
else
{
printf
(
" Unknown option: %s
\n
"
,
sub
);
}
xfree
(
sub
);
xfree
(
option
);
if
(
options
[
i
]
==
':'
)
i
++
;
else
break
;
}
xfree
(
sub
);
xfree
(
option
);
if
(
!
file_opts
->
name
)
{
printf
(
" error: No name given
\n
"
);
_destroy_sacctmgr_file_opts
(
file_opts
);
}
return
file_opts
;
}
static
void
_load_file
(
int
argc
,
char
*
argv
[])
{
DEF_TIMERS
;
...
...
This diff is collapsed.
Click to expand it.
src/sacctmgr/sacctmgr.h
+
1
−
0
View file @
3dece598
...
...
@@ -145,6 +145,7 @@ extern int sacctmgr_delete_cluster(int argc, char *argv[]);
/* common.c */
extern
int
parse_option_end
(
char
*
option
);
extern
char
*
strip_quotes
(
char
*
option
,
int
*
increased
);
extern
void
addto_char_list
(
List
char_list
,
char
*
names
);
extern
void
destroy_sacctmgr_action
(
void
*
object
);
extern
int
notice_thread_init
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment