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
4b17aca7
Commit
4b17aca7
authored
Nov 01, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
song_save: load one song at a time
Changed songvec_load() to song_load(). Added start and end markers for each song. Removed the "key" line, it's redundant.
parent
63dda94a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
34 additions
and
76 deletions
+34
-76
database.c
src/database.c
+1
-1
directory_save.c
src/directory_save.c
+15
-5
song.h
src/song.h
+0
-3
song_save.c
src/song_save.c
+11
-62
song_save.h
src/song_save.h
+7
-5
No files found.
src/database.c
View file @
4b17aca7
...
...
@@ -46,7 +46,7 @@
#define DIRECTORY_FS_CHARSET "fs_charset: "
enum
{
DB_FORMAT
=
0
,
DB_FORMAT
=
1
,
};
static
char
*
database_path
;
...
...
src/directory_save.c
View file @
4b17aca7
...
...
@@ -144,7 +144,6 @@ directory_load(FILE *fp, struct directory *directory,
GString
*
buffer
,
GError
**
error
)
{
const
char
*
line
;
bool
success
;
while
((
line
=
read_text_line
(
fp
,
buffer
))
!=
NULL
&&
!
g_str_has_prefix
(
line
,
DIRECTORY_END
))
{
...
...
@@ -157,11 +156,22 @@ directory_load(FILE *fp, struct directory *directory,
return
false
;
dirvec_add
(
&
directory
->
children
,
subdir
);
}
else
if
(
strcmp
(
line
,
SONG_BEGIN
)
==
0
)
{
success
=
songvec_load
(
fp
,
&
directory
->
songs
,
directory
,
buffer
,
error
);
if
(
!
success
)
}
else
if
(
g_str_has_prefix
(
line
,
SONG_BEGIN
))
{
const
char
*
name
=
line
+
sizeof
(
SONG_BEGIN
)
-
1
;
struct
song
*
song
;
if
(
songvec_find
(
&
directory
->
songs
,
name
)
!=
NULL
)
{
g_set_error
(
error
,
directory_quark
(),
0
,
"Duplicate song '%s'"
,
name
);
return
NULL
;
}
song
=
song_load
(
fp
,
directory
,
name
,
buffer
,
error
);
if
(
song
==
NULL
)
return
false
;
songvec_add
(
&
directory
->
songs
,
song
);
}
else
{
g_set_error
(
error
,
directory_quark
(),
0
,
"Malformed line: %s"
,
line
);
...
...
src/song.h
View file @
4b17aca7
...
...
@@ -24,9 +24,6 @@
#include <stdbool.h>
#include <sys/time.h>
#define SONG_BEGIN "songList begin"
#define SONG_END "songList end"
#define SONG_FILE "file: "
#define SONG_TIME "Time: "
...
...
src/song_save.c
View file @
4b17aca7
...
...
@@ -31,8 +31,8 @@
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "song"
#define SONG_KEY "key: "
#define SONG_MTIME "mtime: "
#define SONG_END "song_end"
static
GQuark
song_save_quark
(
void
)
...
...
@@ -40,61 +40,25 @@ song_save_quark(void)
return
g_quark_from_static_string
(
"song_save"
);
}
static
void
song_save_uri
(
FILE
*
fp
,
struct
song
*
song
)
{
if
(
song
->
parent
!=
NULL
&&
song
->
parent
->
path
!=
NULL
)
fprintf
(
fp
,
SONG_FILE
"%s/%s
\n
"
,
directory_get_path
(
song
->
parent
),
song
->
uri
);
else
fprintf
(
fp
,
SONG_FILE
"%s
\n
"
,
song
->
uri
);
}
static
int
song_save
(
struct
song
*
song
,
void
*
data
)
{
FILE
*
fp
=
data
;
fprintf
(
fp
,
SONG_KEY
"%s
\n
"
,
song
->
uri
);
song_save_uri
(
fp
,
song
);
fprintf
(
fp
,
SONG_BEGIN
"%s
\n
"
,
song
->
uri
);
if
(
song
->
tag
!=
NULL
)
tag_save
(
fp
,
song
->
tag
);
fprintf
(
fp
,
SONG_MTIME
"%li
\n
"
,
(
long
)
song
->
mtime
);
fprintf
(
fp
,
SONG_END
"
\n
"
);
return
0
;
}
void
songvec_save
(
FILE
*
fp
,
struct
songvec
*
sv
)
{
fprintf
(
fp
,
"%s
\n
"
,
SONG_BEGIN
);
songvec_for_each
(
sv
,
song_save
,
fp
);
fprintf
(
fp
,
"%s
\n
"
,
SONG_END
);
}
static
void
commit_song
(
struct
songvec
*
sv
,
struct
song
*
newsong
)
{
struct
song
*
existing
=
songvec_find
(
sv
,
newsong
->
uri
);
if
(
!
existing
)
{
songvec_add
(
sv
,
newsong
);
if
(
newsong
->
tag
)
tag_end_add
(
newsong
->
tag
);
}
else
{
/* prevent dupes, just update the existing song info */
if
(
existing
->
mtime
!=
newsong
->
mtime
)
{
if
(
existing
->
tag
!=
NULL
)
tag_free
(
existing
->
tag
);
if
(
newsong
->
tag
)
tag_end_add
(
newsong
->
tag
);
existing
->
tag
=
newsong
->
tag
;
existing
->
mtime
=
newsong
->
mtime
;
newsong
->
tag
=
NULL
;
}
song_free
(
newsong
);
}
}
static
char
*
...
...
@@ -115,33 +79,18 @@ parse_tag_value(char *buffer, enum tag_type *type_r)
return
NULL
;
}
bool
song
vec_load
(
FILE
*
fp
,
struct
songvec
*
sv
,
struct
directory
*
parent
,
GString
*
buffer
,
GError
**
error_r
)
struct
song
*
song
_load
(
FILE
*
fp
,
struct
directory
*
parent
,
const
char
*
uri
,
GString
*
buffer
,
GError
**
error_r
)
{
struct
song
*
song
=
song_file_new
(
uri
,
parent
);
char
*
line
;
struct
song
*
song
=
NULL
;
enum
tag_type
type
;
const
char
*
value
;
while
((
line
=
read_text_line
(
fp
,
buffer
))
!=
NULL
&&
strcmp
(
line
,
SONG_END
)
!=
0
)
{
if
(
0
==
strncmp
(
SONG_KEY
,
line
,
strlen
(
SONG_KEY
)))
{
if
(
song
)
commit_song
(
sv
,
song
);
song
=
song_file_new
(
line
+
strlen
(
SONG_KEY
),
parent
);
}
else
if
(
*
line
==
0
)
{
/* ignore empty lines (starting with '\0') */
}
else
if
(
song
==
NULL
)
{
g_set_error
(
error_r
,
song_save_quark
(),
0
,
"Problems reading song info"
);
return
false
;
}
else
if
(
0
==
strncmp
(
SONG_FILE
,
line
,
strlen
(
SONG_FILE
)))
{
/* we don't need this info anymore */
}
else
if
((
value
=
parse_tag_value
(
line
,
&
type
))
!=
NULL
)
{
if
((
value
=
parse_tag_value
(
line
,
&
type
))
!=
NULL
)
{
if
(
!
song
->
tag
)
{
song
->
tag
=
tag_new
();
tag_begin_add
(
song
->
tag
);
...
...
@@ -164,8 +113,8 @@ songvec_load(FILE *fp, struct songvec *sv, struct directory *parent,
}
}
if
(
song
)
commit_song
(
sv
,
son
g
);
if
(
song
->
tag
!=
NULL
)
tag_end_add
(
song
->
ta
g
);
return
true
;
return
song
;
}
src/song_save.h
View file @
4b17aca7
...
...
@@ -25,21 +25,23 @@
#include <stdbool.h>
#include <stdio.h>
#define SONG_BEGIN "song_begin: "
struct
songvec
;
struct
directory
;
void
songvec_save
(
FILE
*
fp
,
struct
songvec
*
sv
);
/**
* Loads
songs from the input file and add the to the specified
*
directory
.
* Loads
a song from the input file. Reading stops after the
*
"song_end" line
.
*
* @param error_r location to store the error occuring, or NULL to
* ignore errors
* @return true on success, false on error
*/
bool
song
vec_load
(
FILE
*
file
,
struct
songvec
*
sv
,
struct
directory
*
parent
,
GString
*
buffer
,
GError
**
error_r
);
struct
song
*
song
_load
(
FILE
*
fp
,
struct
directory
*
parent
,
const
char
*
uri
,
GString
*
buffer
,
GError
**
error_r
);
#endif
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