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
7f38c3fc
Commit
7f38c3fc
authored
Apr 01, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
directory: added directory_lookup_song()
Moved code from db_get_song().
parent
36ec2eda
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
25 deletions
+41
-25
database.c
src/database.c
+1
-25
directory.c
src/directory.c
+30
-0
directory.h
src/directory.h
+10
-0
No files found.
src/database.c
View file @
7f38c3fc
...
...
@@ -110,10 +110,6 @@ db_get_directory(const char *name)
struct
song
*
db_get_song
(
const
char
*
file
)
{
struct
song
*
song
;
struct
directory
*
directory
;
char
*
duplicated
,
*
shortname
,
*
dir
;
assert
(
file
!=
NULL
);
g_debug
(
"get song: %s"
,
file
);
...
...
@@ -121,27 +117,7 @@ db_get_song(const char *file)
if
(
music_root
==
NULL
)
return
NULL
;
duplicated
=
g_strdup
(
file
);
shortname
=
strrchr
(
duplicated
,
'/'
);
if
(
!
shortname
)
{
shortname
=
duplicated
;
dir
=
NULL
;
}
else
{
*
shortname
=
'\0'
;
++
shortname
;
dir
=
duplicated
;
}
directory
=
db_get_directory
(
dir
);
if
(
directory
!=
NULL
)
song
=
songvec_find
(
&
directory
->
songs
,
shortname
);
else
song
=
NULL
;
assert
(
song
==
NULL
||
song
->
parent
==
directory
);
g_free
(
duplicated
);
return
song
;
return
directory_lookup_song
(
music_root
,
file
);
}
int
...
...
src/directory.c
View file @
7f38c3fc
...
...
@@ -114,6 +114,36 @@ directory_lookup_directory(struct directory *directory, const char *uri)
return
found
;
}
struct
song
*
directory_lookup_song
(
struct
directory
*
directory
,
const
char
*
uri
)
{
char
*
duplicated
,
*
base
;
struct
song
*
song
;
assert
(
directory
!=
NULL
);
assert
(
uri
!=
NULL
);
duplicated
=
g_strdup
(
uri
);
base
=
strrchr
(
duplicated
,
'/'
);
if
(
base
!=
NULL
)
{
*
base
++
=
0
;
directory
=
directory_lookup_directory
(
directory
,
duplicated
);
if
(
directory
==
NULL
)
{
g_free
(
duplicated
);
return
NULL
;
}
}
else
base
=
duplicated
;
song
=
songvec_find
(
&
directory
->
songs
,
base
);
assert
(
song
==
NULL
||
song
->
parent
==
directory
);
g_free
(
duplicated
);
return
song
;
}
void
directory_sort
(
struct
directory
*
directory
)
{
...
...
src/directory.h
View file @
7f38c3fc
...
...
@@ -108,6 +108,16 @@ directory_prune_empty(struct directory *directory);
struct
directory
*
directory_lookup_directory
(
struct
directory
*
directory
,
const
char
*
uri
);
/**
* Looks up a song by its relative URI.
*
* @param directory the parent (or grandparent, ...) directory
* @param uri the relative URI
* @return the song, or NULL if none was found
*/
struct
song
*
directory_lookup_song
(
struct
directory
*
directory
,
const
char
*
uri
);
void
directory_sort
(
struct
directory
*
directory
);
...
...
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