Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Michael Black
OpenXG-RAN
Commits
292535fe
Commit
292535fe
authored
Aug 16, 2016
by
Frédéric Leroy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor(conf2uedata.c): rewrite main() and add parse_config_file()
parent
804595d4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
66 additions
and
67 deletions
+66
-67
openair3/NAS/TOOLS/conf2uedata.c
openair3/NAS/TOOLS/conf2uedata.c
+66
-67
No files found.
openair3/NAS/TOOLS/conf2uedata.c
View file @
292535fe
...
...
@@ -8,21 +8,19 @@
char
*
make_filename
(
const
char
*
output_dir
,
const
char
*
filename
,
int
ueid
);
int
get_config_from_file
(
const
char
*
filename
,
config_t
*
config
);
int
parse_config_file
(
const
char
*
filename
);
int
main
(
int
argc
,
char
**
argv
)
{
int
rc
=
EXIT_SUCCESS
;
int
option
;
const
char
*
conf_file
=
NULL
;
while
((
option
=
getopt
(
argc
,
argv
,
options
))
!=
-
1
)
{
switch
(
option
)
{
case
'c'
:
parse_data
=
TRUE
;
conf_file
=
optarg
;
break
;
case
'o'
:
output_dir
=
optarg
;
output
=
TRUE
;
break
;
case
'h'
:
_display_usage
();
...
...
@@ -33,25 +31,28 @@ int main(int argc, char**argv) {
}
}
if
(
output
==
FALSE
&&
parse_data
==
TRUE
)
{
if
(
output
_dir
==
NULL
)
{
printf
(
"No output option found
\n
"
);
_display_usage
();
return
EXIT_FAILURE
;
}
if
(
output
==
TRUE
&&
parse_data
==
FALSE
)
{
if
(
conf_file
==
NULL
)
{
printf
(
"No Configuration file is given
\n
"
);
_display_usage
();
return
EXIT_FAILURE
;
}
if
(
parse_data
==
FALSE
&&
print_data
==
FALSE
)
{
printf
(
"No options found
\n
"
);
_display_usage
();
return
EXIT_FAILURE
;
if
(
parse_config_file
(
conf_file
)
==
EXIT_FAILURE
)
{
exit
(
EXIT_FAILURE
);
}
if
(
parse_data
)
{
exit
(
EXIT_SUCCESS
);
}
int
parse_config_file
(
const
char
*
filename
)
{
int
rc
=
EXIT_SUCCESS
;
int
ret
;
int
ue_nb
=
0
;
config_setting_t
*
root_setting
=
NULL
;
...
...
@@ -60,7 +61,7 @@ int main(int argc, char**argv) {
char
user
[
10
];
config_t
cfg
;
ret
=
get_config_from_file
(
conf_fil
e
,
&
cfg
);
ret
=
get_config_from_file
(
filenam
e
,
&
cfg
);
if
(
ret
==
EXIT_FAILURE
)
{
exit
(
1
);
}
...
...
@@ -113,9 +114,7 @@ int main(int argc, char**argv) {
_display_usim_data
(
i
);
}
config_destroy
(
&
cfg
);
}
exit
(
EXIT_SUCCESS
);
return
(
EXIT_SUCCESS
);
}
int
get_config_from_file
(
const
char
*
filename
,
config_t
*
config
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment