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
16afdfd8
Commit
16afdfd8
authored
Jan 29, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ArchivePlugin: move instance methods to class ArchiveFile
parent
701fff03
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
86 additions
and
155 deletions
+86
-155
ArchiveFile.hxx
src/ArchiveFile.hxx
+25
-0
ArchivePlugin.cxx
src/ArchivePlugin.cxx
+0
-33
ArchivePlugin.hxx
src/ArchivePlugin.hxx
+0
-33
UpdateArchive.cxx
src/UpdateArchive.cxx
+3
-3
Bzip2ArchivePlugin.cxx
src/archive/Bzip2ArchivePlugin.cxx
+21
-27
Iso9660ArchivePlugin.cxx
src/archive/Iso9660ArchivePlugin.cxx
+18
-26
ZzipArchivePlugin.cxx
src/archive/ZzipArchivePlugin.cxx
+14
-28
ArchiveInputPlugin.cxx
src/input/ArchiveInputPlugin.cxx
+3
-3
visit_archive.cxx
test/visit_archive.cxx
+2
-2
No files found.
src/ArchiveFile.hxx
View file @
16afdfd8
...
...
@@ -26,6 +26,31 @@ public:
ArchiveFile
(
const
struct
archive_plugin
&
_plugin
)
:
plugin
(
_plugin
)
{}
protected
:
/**
* Use Close() instead of delete.
*/
~
ArchiveFile
()
{}
public
:
virtual
void
Close
()
=
0
;
/**
* Visit all entries inside this archive.
*/
virtual
void
Visit
(
ArchiveVisitor
&
visitor
)
=
0
;
/**
* Opens an input_stream of a file within the archive.
*
* @param path the path within the archive
* @param error_r location to store the error occurring, or
* NULL to ignore errors
*/
virtual
input_stream
*
OpenStream
(
const
char
*
path
,
Mutex
&
mutex
,
Cond
&
cond
,
GError
**
error_r
)
=
0
;
};
#endif
src/ArchivePlugin.cxx
View file @
16afdfd8
...
...
@@ -34,9 +34,6 @@ archive_file_open(const struct archive_plugin *plugin, const char *path,
ArchiveFile
*
file
=
plugin
->
open
(
path
,
error_r
);
if
(
file
!=
NULL
)
{
assert
(
file
->
plugin
.
close
!=
NULL
);
assert
(
file
->
plugin
.
visit
!=
nullptr
);
assert
(
file
->
plugin
.
open_stream
!=
NULL
);
assert
(
error_r
==
NULL
||
*
error_r
==
NULL
);
}
else
{
assert
(
error_r
==
NULL
||
*
error_r
!=
NULL
);
...
...
@@ -44,33 +41,3 @@ archive_file_open(const struct archive_plugin *plugin, const char *path,
return
file
;
}
void
archive_file_close
(
ArchiveFile
*
file
)
{
assert
(
file
!=
NULL
);
assert
(
file
->
plugin
.
close
!=
NULL
);
file
->
plugin
.
close
(
file
);
}
void
archive_file_visit
(
ArchiveFile
*
file
,
ArchiveVisitor
&
visitor
)
{
assert
(
file
!=
NULL
);
assert
(
file
->
plugin
.
visit
!=
nullptr
);
file
->
plugin
.
visit
(
file
,
visitor
);
}
struct
input_stream
*
archive_file_open_stream
(
ArchiveFile
*
file
,
const
char
*
path
,
Mutex
&
mutex
,
Cond
&
cond
,
GError
**
error_r
)
{
assert
(
file
!=
NULL
);
assert
(
file
->
plugin
.
open_stream
!=
NULL
);
return
file
->
plugin
.
open_stream
(
file
,
path
,
mutex
,
cond
,
error_r
);
}
src/ArchivePlugin.hxx
View file @
16afdfd8
...
...
@@ -52,28 +52,6 @@ struct archive_plugin {
ArchiveFile
*
(
*
open
)(
const
char
*
path_fs
,
GError
**
error_r
);
/**
* Visit all entries inside this archive.
*/
void
(
*
visit
)(
ArchiveFile
*
af
,
ArchiveVisitor
&
visitor
);
/**
* Opens an input_stream of a file within the archive.
*
* @param path the path within the archive
* @param error_r location to store the error occurring, or
* NULL to ignore errors
*/
struct
input_stream
*
(
*
open_stream
)(
ArchiveFile
*
af
,
const
char
*
path
,
Mutex
&
mutex
,
Cond
&
cond
,
GError
**
error_r
);
/**
* closes archive file.
*/
void
(
*
close
)(
ArchiveFile
*
);
/**
* suffixes handled by this plugin.
* last element in these arrays must always be a NULL
*/
...
...
@@ -84,15 +62,4 @@ ArchiveFile *
archive_file_open
(
const
struct
archive_plugin
*
plugin
,
const
char
*
path
,
GError
**
error_r
);
void
archive_file_close
(
ArchiveFile
*
file
);
void
archive_file_visit
(
ArchiveFile
*
file
,
ArchiveVisitor
&
visitor
);
struct
input_stream
*
archive_file_open_stream
(
ArchiveFile
*
file
,
const
char
*
path
,
Mutex
&
mutex
,
Cond
&
cond
,
GError
**
error_r
);
#endif
src/UpdateArchive.cxx
View file @
16afdfd8
...
...
@@ -27,6 +27,7 @@
#include "fs/Path.hxx"
#include "ArchiveList.hxx"
#include "ArchivePlugin.hxx"
#include "ArchiveFile.hxx"
#include "ArchiveVisitor.hxx"
#include <glib.h>
...
...
@@ -136,9 +137,8 @@ update_archive_file2(Directory *parent, const char *name,
};
UpdateArchiveVisitor
visitor
(
directory
);
archive_file_visit
(
file
,
visitor
);
archive_file_close
(
file
);
file
->
Visit
(
visitor
);
file
->
Close
();
}
bool
...
...
src/archive/Bzip2ArchivePlugin.cxx
View file @
16afdfd8
...
...
@@ -42,7 +42,7 @@
#define BZ2_bzDecompress bzDecompress
#endif
class
Bzip2ArchiveFile
:
public
ArchiveFile
{
class
Bzip2ArchiveFile
final
:
public
ArchiveFile
{
public
:
RefCount
ref
;
...
...
@@ -63,6 +63,10 @@ public:
input_stream_close
(
istream
);
}
void
Ref
()
{
ref
.
Increment
();
}
void
Unref
()
{
if
(
!
ref
.
Decrement
())
return
;
...
...
@@ -70,6 +74,18 @@ public:
g_free
(
name
);
delete
this
;
}
virtual
void
Close
()
override
{
Unref
();
}
virtual
void
Visit
(
ArchiveVisitor
&
visitor
)
override
{
visitor
.
VisitArchiveEntry
(
name
);
}
virtual
input_stream
*
OpenStream
(
const
char
*
path
,
Mutex
&
mutex
,
Cond
&
cond
,
GError
**
error_r
)
override
;
};
struct
Bzip2InputStream
{
...
...
@@ -142,22 +158,6 @@ bz2_open(const char *pathname, GError **error_r)
return
new
Bzip2ArchiveFile
(
pathname
,
is
);
}
static
void
bz2_visit
(
ArchiveFile
*
file
,
ArchiveVisitor
&
visitor
)
{
Bzip2ArchiveFile
*
context
=
(
Bzip2ArchiveFile
*
)
file
;
visitor
.
VisitArchiveEntry
(
context
->
name
);
}
static
void
bz2_close
(
ArchiveFile
*
file
)
{
Bzip2ArchiveFile
*
context
=
(
Bzip2ArchiveFile
*
)
file
;
context
->
Unref
();
}
/* single archive handling */
Bzip2InputStream
::
Bzip2InputStream
(
Bzip2ArchiveFile
&
_context
,
const
char
*
uri
,
...
...
@@ -165,7 +165,7 @@ Bzip2InputStream::Bzip2InputStream(Bzip2ArchiveFile &_context, const char *uri,
:
base
(
bz2_inputplugin
,
uri
,
mutex
,
cond
),
archive
(
&
_context
),
eof
(
false
)
{
archive
->
ref
.
Increment
();
archive
->
Ref
();
}
Bzip2InputStream
::~
Bzip2InputStream
()
...
...
@@ -173,15 +173,12 @@ Bzip2InputStream::~Bzip2InputStream()
archive
->
Unref
();
}
static
struct
input_stream
*
bz2_open_stream
(
ArchiveFile
*
file
,
const
char
*
path
,
input_stream
*
Bzip2ArchiveFile
::
OpenStream
(
const
char
*
path
,
Mutex
&
mutex
,
Cond
&
cond
,
GError
**
error_r
)
{
Bzip2ArchiveFile
*
context
=
(
Bzip2ArchiveFile
*
)
file
;
Bzip2InputStream
*
bis
=
new
Bzip2InputStream
(
*
context
,
path
,
mutex
,
cond
);
Bzip2InputStream
*
bis
=
new
Bzip2InputStream
(
*
this
,
path
,
mutex
,
cond
);
if
(
!
bis
->
Open
(
error_r
))
{
delete
bis
;
return
NULL
;
...
...
@@ -296,9 +293,6 @@ const struct archive_plugin bz2_archive_plugin = {
nullptr
,
nullptr
,
bz2_open
,
bz2_visit
,
bz2_open_stream
,
bz2_close
,
bz2_extensions
,
};
src/archive/Iso9660ArchivePlugin.cxx
View file @
16afdfd8
...
...
@@ -41,7 +41,7 @@
#define CEILING(x, y) ((x+(y-1))/y)
class
Iso9660ArchiveFile
:
public
ArchiveFile
{
class
Iso9660ArchiveFile
final
:
public
ArchiveFile
{
public
:
RefCount
ref
;
...
...
@@ -60,6 +60,16 @@ public:
}
void
Visit
(
const
char
*
path
,
ArchiveVisitor
&
visitor
);
virtual
void
Close
()
override
{
Unref
();
}
virtual
void
Visit
(
ArchiveVisitor
&
visitor
)
override
;
virtual
input_stream
*
OpenStream
(
const
char
*
path
,
Mutex
&
mutex
,
Cond
&
cond
,
GError
**
error_r
)
override
;
};
extern
const
struct
input_plugin
iso9660_input_plugin
;
...
...
@@ -118,22 +128,10 @@ iso9660_archive_open(const char *pathname, GError **error_r)
return
new
Iso9660ArchiveFile
(
iso
);
}
static
void
iso9660_archive_visit
(
ArchiveFile
*
file
,
ArchiveVisitor
&
visitor
)
void
Iso9660ArchiveFile
::
Visit
(
ArchiveVisitor
&
visitor
)
{
Iso9660ArchiveFile
*
context
=
(
Iso9660ArchiveFile
*
)
file
;
context
->
Visit
(
"/"
,
visitor
);
}
static
void
iso9660_archive_close
(
ArchiveFile
*
file
)
{
Iso9660ArchiveFile
*
context
=
(
Iso9660ArchiveFile
*
)
file
;
context
->
Unref
();
Visit
(
"/"
,
visitor
);
}
/* single archive handling */
...
...
@@ -165,15 +163,12 @@ struct Iso9660InputStream {
}
};
static
struct
input_stream
*
iso9660_archive_open_stream
(
ArchiveFile
*
file
,
const
char
*
pathname
,
input_stream
*
Iso9660ArchiveFile
::
OpenStream
(
const
char
*
pathname
,
Mutex
&
mutex
,
Cond
&
cond
,
GError
**
error_r
)
{
Iso9660ArchiveFile
*
context
=
(
Iso9660ArchiveFile
*
)
file
;
auto
statbuf
=
iso9660_ifs_stat_translate
(
context
->
iso
,
pathname
);
auto
statbuf
=
iso9660_ifs_stat_translate
(
iso
,
pathname
);
if
(
statbuf
==
nullptr
)
{
g_set_error
(
error_r
,
iso9660_quark
(),
0
,
"not found in the ISO file: %s"
,
pathname
);
...
...
@@ -181,7 +176,7 @@ iso9660_archive_open_stream(ArchiveFile *file, const char *pathname,
}
Iso9660InputStream
*
iis
=
new
Iso9660InputStream
(
*
context
,
pathname
,
mutex
,
cond
,
new
Iso9660InputStream
(
*
this
,
pathname
,
mutex
,
cond
,
statbuf
);
return
&
iis
->
base
;
}
...
...
@@ -267,8 +262,5 @@ const struct archive_plugin iso9660_archive_plugin = {
nullptr
,
nullptr
,
iso9660_archive_open
,
iso9660_archive_visit
,
iso9660_archive_open_stream
,
iso9660_archive_close
,
iso9660_archive_extensions
,
};
src/archive/ZzipArchivePlugin.cxx
View file @
16afdfd8
...
...
@@ -35,7 +35,7 @@
#include <glib.h>
#include <string.h>
class
ZzipArchiveFile
:
public
ArchiveFile
{
class
ZzipArchiveFile
final
:
public
ArchiveFile
{
public
:
RefCount
ref
;
...
...
@@ -53,7 +53,15 @@ public:
delete
this
;
}
void
Visit
(
ArchiveVisitor
&
visitor
);
virtual
void
Close
()
override
{
Unref
();
}
virtual
void
Visit
(
ArchiveVisitor
&
visitor
)
override
;
virtual
input_stream
*
OpenStream
(
const
char
*
path
,
Mutex
&
mutex
,
Cond
&
cond
,
GError
**
error_r
)
override
;
};
extern
const
struct
input_plugin
zzip_input_plugin
;
...
...
@@ -91,22 +99,6 @@ ZzipArchiveFile::Visit(ArchiveVisitor &visitor)
visitor
.
VisitArchiveEntry
(
dirent
.
d_name
);
}
static
void
zzip_archive_visit
(
ArchiveFile
*
file
,
ArchiveVisitor
&
visitor
)
{
ZzipArchiveFile
*
context
=
(
ZzipArchiveFile
*
)
file
;
context
->
Visit
(
visitor
);
}
static
void
zzip_archive_close
(
ArchiveFile
*
file
)
{
ZzipArchiveFile
*
context
=
(
ZzipArchiveFile
*
)
file
;
context
->
Unref
();
}
/* single archive handling */
struct
ZzipInputStream
{
...
...
@@ -138,15 +130,12 @@ struct ZzipInputStream {
}
};
static
struct
input_stream
*
zzip_archive_open_stream
(
ArchiveFile
*
file
,
const
char
*
pathname
,
input_stream
*
ZzipArchiveFile
::
OpenStream
(
const
char
*
pathname
,
Mutex
&
mutex
,
Cond
&
cond
,
GError
**
error_r
)
{
ZzipArchiveFile
*
context
=
(
ZzipArchiveFile
*
)
file
;
ZZIP_FILE
*
_file
=
zzip_file_open
(
context
->
dir
,
pathname
,
0
);
ZZIP_FILE
*
_file
=
zzip_file_open
(
dir
,
pathname
,
0
);
if
(
_file
==
nullptr
)
{
g_set_error
(
error_r
,
zzip_quark
(),
0
,
"not found in the ZIP file: %s"
,
pathname
);
...
...
@@ -154,7 +143,7 @@ zzip_archive_open_stream(ArchiveFile *file,
}
ZzipInputStream
*
zis
=
new
ZzipInputStream
(
*
context
,
pathname
,
new
ZzipInputStream
(
*
this
,
pathname
,
mutex
,
cond
,
_file
);
return
&
zis
->
base
;
...
...
@@ -237,8 +226,5 @@ const struct archive_plugin zzip_archive_plugin = {
nullptr
,
nullptr
,
zzip_archive_open
,
zzip_archive_visit
,
zzip_archive_open_stream
,
zzip_archive_close
,
zzip_archive_extensions
,
};
src/input/ArchiveInputPlugin.cxx
View file @
16afdfd8
...
...
@@ -22,6 +22,7 @@
#include "ArchiveLookup.hxx"
#include "ArchiveList.hxx"
#include "ArchivePlugin.hxx"
#include "ArchiveFile.hxx"
#include "InputPlugin.hxx"
#include <glib.h>
...
...
@@ -69,10 +70,9 @@ input_archive_open(const char *pathname,
}
//setup fileops
is
=
archive_file_open_stream
(
file
,
filename
,
mutex
,
cond
,
error_r
);
archive_file_close
(
file
);
is
=
file
->
OpenStream
(
filename
,
mutex
,
cond
,
error_r
);
g_free
(
pname
);
file
->
Close
();
return
is
;
}
...
...
test/visit_archive.cxx
View file @
16afdfd8
...
...
@@ -101,8 +101,8 @@ main(int argc, char **argv)
ArchiveFile
*
file
=
archive_file_open
(
plugin
,
path
.
c_str
(),
&
error
);
if
(
file
!=
nullptr
)
{
MyArchiveVisitor
visitor
;
archive_file_visit
(
file
,
visitor
);
archive_file_close
(
file
);
file
->
Visit
(
visitor
);
file
->
Close
(
);
}
else
{
fprintf
(
stderr
,
"%s
\n
"
,
error
->
message
);
g_error_free
(
error
);
...
...
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