Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
00c25b77
Commit
00c25b77
authored
Apr 13, 2004
by
Warren Dukes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add --only-update-db command line option
git-svn-id:
https://svn.musicpd.org/mpd/trunk@728
09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent
43c25769
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
6 deletions
+17
-6
TODO
TODO
+3
-5
main.c
src/main.c
+14
-1
No files found.
TODO
View file @
00c25b77
...
...
@@ -17,12 +17,10 @@
vice versa, this way you can do list album artists or list artist albums, this
will make life easier when we add genre and other metadata
3) thourougly rewrite and check signal blocking and unblocking
4) add a --update-only, like --only-create-db, only just for updating
5) have children close all logging stuff, and redirect stdout and stderr to
3) have children close all logging stuff, and redirect stdout and stderr to
/dev/null, and set error bits in the shared log for the parent process
to check when it receives a SIGUSR1, and print logs and then reset values of
error bits. (don't redirect children's stdout and stderr to /dev/null if mpd is
run with --no-daemon)
4) cleanup main()
src/main.c
View file @
00c25b77
...
...
@@ -59,6 +59,7 @@ typedef struct _Options {
int
daemon
;
int
createDB
;
int
onlyCreateDB
;
int
onlyUpdateDB
;
}
Options
;
void
usage
(
char
*
argv
[])
{
...
...
@@ -74,6 +75,7 @@ void usage(char * argv[]) {
ERROR
(
" --no-daemon don't detach from console
\n
"
);
ERROR
(
" --create-db force (re)creation database
\n
"
);
ERROR
(
" --only-create-db create database and exit
\n
"
);
ERROR
(
" --only-update-db create database and exit
\n
"
);
ERROR
(
" --no-create-db don't create database
\n
"
);
ERROR
(
" --verbose verbose logging
\n
"
);
ERROR
(
" --version prints version information
\n
"
);
...
...
@@ -94,6 +96,7 @@ void parseOptions(int argc, char ** argv, Options * options) {
options
->
daemon
=
1
;
options
->
createDB
=
0
;
options
->
onlyCreateDB
=
0
;
options
->
onlyUpdateDB
=
0
;
options
->
dbFile
=
NULL
;
if
(
argc
>
1
)
{
...
...
@@ -116,6 +119,10 @@ void parseOptions(int argc, char ** argv, Options * options) {
options
->
onlyCreateDB
=
1
;
argcLeft
--
;
}
else
if
(
strcmp
(
argv
[
i
],
"--only-update-db"
)
==
0
)
{
options
->
onlyUpdateDB
=
1
;
argcLeft
--
;
}
else
if
(
strcmp
(
argv
[
i
],
"--no-create-db"
)
==
0
)
{
options
->
createDB
=
-
1
;
argcLeft
--
;
...
...
@@ -217,7 +224,9 @@ int main(int argc, char * argv[]) {
return
EXIT_FAILURE
;
}
if
(
!
options
.
onlyCreateDB
&&
(
listenSocket
=
establish
(
port
))
<
0
)
{
if
(
!
options
.
onlyCreateDB
&&
!
options
.
onlyUpdateDB
&&
(
listenSocket
=
establish
(
port
))
<
0
)
{
ERROR
(
"error binding port
\n
"
);
return
EXIT_FAILURE
;
}
...
...
@@ -361,6 +370,10 @@ int main(int argc, char * argv[]) {
}
if
(
options
.
onlyCreateDB
)
exit
(
EXIT_SUCCESS
);
}
if
(
options
.
onlyUpdateDB
)
{
if
(
updateMp3Directory
(
stderr
)
<
0
)
exit
(
EXIT_FAILURE
);
exit
(
EXIT_SUCCESS
);
}
initCommands
();
initAudioDriver
();
...
...
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