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
e132d10a
Commit
e132d10a
authored
Oct 17, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ArchiveLookup: move API documentation to header
parent
3dbda2dd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
22 deletions
+15
-22
ArchiveLookup.cxx
src/ArchiveLookup.cxx
+0
-18
ArchiveLookup.hxx
src/ArchiveLookup.hxx
+15
-4
No files found.
src/ArchiveLookup.cxx
View file @
e132d10a
...
@@ -29,24 +29,6 @@
...
@@ -29,24 +29,6 @@
#include <unistd.h>
#include <unistd.h>
#include <errno.h>
#include <errno.h>
/**
*
* archive_lookup is used to determine if part of pathname refers to an regular
* file (archive). If so then its also used to split pathname into archive file
* and path used to locate file in archive. It also returns suffix of the file.
* How it works:
* We do stat of the parent of input pathname as long as we find an regular file
* Normally this should never happen. When routine returns true pathname modified
* and split into archive, inpath and suffix. Otherwise nothing happens
*
* For example:
*
* /music/path/Talco.zip/Talco - Combat Circus/12 - A la pachenka.mp3
* is split into archive: /music/path/Talco.zip
* inarchive pathname: Talco - Combat Circus/12 - A la pachenka.mp3
* and suffix: zip
*/
bool
archive_lookup
(
char
*
pathname
,
char
**
archive
,
char
**
inpath
,
char
**
suffix
)
bool
archive_lookup
(
char
*
pathname
,
char
**
archive
,
char
**
inpath
,
char
**
suffix
)
{
{
char
*
pathdupe
;
char
*
pathdupe
;
...
...
src/ArchiveLookup.hxx
View file @
e132d10a
...
@@ -20,12 +20,23 @@
...
@@ -20,12 +20,23 @@
#ifndef MPD_ARCHIVE_LOOKUP_HXX
#ifndef MPD_ARCHIVE_LOOKUP_HXX
#define MPD_ARCHIVE_LOOKUP_HXX
#define MPD_ARCHIVE_LOOKUP_HXX
/*
/**
* This is the public API which is used by archive plugins to
*
* provide transparent archive decompression layer for mpd
* archive_lookup is used to determine if part of pathname refers to an regular
* file (archive). If so then its also used to split pathname into archive file
* and path used to locate file in archive. It also returns suffix of the file.
* How it works:
* We do stat of the parent of input pathname as long as we find an regular file
* Normally this should never happen. When routine returns true pathname modified
* and split into archive, inpath and suffix. Otherwise nothing happens
*
*
* For example:
*
* /music/path/Talco.zip/Talco - Combat Circus/12 - A la pachenka.mp3
* is split into archive: /music/path/Talco.zip
* inarchive pathname: Talco - Combat Circus/12 - A la pachenka.mp3
* and suffix: zip
*/
*/
bool
archive_lookup
(
char
*
pathname
,
char
**
archive
,
char
**
inpath
,
char
**
suffix
);
bool
archive_lookup
(
char
*
pathname
,
char
**
archive
,
char
**
inpath
,
char
**
suffix
);
#endif
#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