archive/iso9660: use std::shared_ptr instead of class RefCount
This commit is contained in:
parent
17558102f2
commit
5da455080b
@ -28,7 +28,6 @@
|
|||||||
#include "../ArchiveVisitor.hxx"
|
#include "../ArchiveVisitor.hxx"
|
||||||
#include "input/InputStream.hxx"
|
#include "input/InputStream.hxx"
|
||||||
#include "fs/Path.hxx"
|
#include "fs/Path.hxx"
|
||||||
#include "util/RefCount.hxx"
|
|
||||||
#include "util/RuntimeError.hxx"
|
#include "util/RuntimeError.hxx"
|
||||||
|
|
||||||
#include <cdio/iso9660.h>
|
#include <cdio/iso9660.h>
|
||||||
@ -38,31 +37,34 @@
|
|||||||
|
|
||||||
#define CEILING(x, y) ((x+(y-1))/y)
|
#define CEILING(x, y) ((x+(y-1))/y)
|
||||||
|
|
||||||
class Iso9660ArchiveFile final : public ArchiveFile {
|
struct Iso9660 {
|
||||||
RefCount ref;
|
iso9660_t *const iso;
|
||||||
|
|
||||||
iso9660_t *iso;
|
explicit Iso9660(Path path)
|
||||||
|
:iso(iso9660_open(path.c_str())) {
|
||||||
|
if (iso == nullptr)
|
||||||
|
throw FormatRuntimeError("Failed to open ISO9660 file %s",
|
||||||
|
path.c_str());
|
||||||
|
}
|
||||||
|
|
||||||
public:
|
~Iso9660() noexcept {
|
||||||
Iso9660ArchiveFile(iso9660_t *_iso)
|
|
||||||
:iso(_iso) {}
|
|
||||||
|
|
||||||
~Iso9660ArchiveFile() {
|
|
||||||
iso9660_close(iso);
|
iso9660_close(iso);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Ref() {
|
Iso9660(const Iso9660 &) = delete;
|
||||||
ref.Increment();
|
Iso9660 &operator=(const Iso9660 &) = delete;
|
||||||
}
|
|
||||||
|
|
||||||
void Unref() {
|
|
||||||
if (ref.Decrement())
|
|
||||||
delete this;
|
|
||||||
}
|
|
||||||
|
|
||||||
long SeekRead(void *ptr, lsn_t start, long int i_size) const {
|
long SeekRead(void *ptr, lsn_t start, long int i_size) const {
|
||||||
return iso9660_iso_seek_read(iso, ptr, start, i_size);
|
return iso9660_iso_seek_read(iso, ptr, start, i_size);
|
||||||
}
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
class Iso9660ArchiveFile final : public ArchiveFile {
|
||||||
|
std::shared_ptr<Iso9660> iso;
|
||||||
|
|
||||||
|
public:
|
||||||
|
Iso9660ArchiveFile(std::shared_ptr<Iso9660> &&_iso)
|
||||||
|
:iso(std::move(_iso)) {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param capacity the path buffer size
|
* @param capacity the path buffer size
|
||||||
@ -71,7 +73,7 @@ public:
|
|||||||
ArchiveVisitor &visitor);
|
ArchiveVisitor &visitor);
|
||||||
|
|
||||||
virtual void Close() override {
|
virtual void Close() override {
|
||||||
Unref();
|
delete this;
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void Visit(ArchiveVisitor &visitor) override;
|
virtual void Visit(ArchiveVisitor &visitor) override;
|
||||||
@ -86,7 +88,7 @@ inline void
|
|||||||
Iso9660ArchiveFile::Visit(char *path, size_t length, size_t capacity,
|
Iso9660ArchiveFile::Visit(char *path, size_t length, size_t capacity,
|
||||||
ArchiveVisitor &visitor)
|
ArchiveVisitor &visitor)
|
||||||
{
|
{
|
||||||
auto *entlist = iso9660_ifs_readdir(iso, path);
|
auto *entlist = iso9660_ifs_readdir(iso->iso, path);
|
||||||
if (!entlist) {
|
if (!entlist) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -121,13 +123,7 @@ Iso9660ArchiveFile::Visit(char *path, size_t length, size_t capacity,
|
|||||||
static ArchiveFile *
|
static ArchiveFile *
|
||||||
iso9660_archive_open(Path pathname)
|
iso9660_archive_open(Path pathname)
|
||||||
{
|
{
|
||||||
/* open archive */
|
return new Iso9660ArchiveFile(std::make_shared<Iso9660>(pathname));
|
||||||
auto iso = iso9660_open(pathname.c_str());
|
|
||||||
if (iso == nullptr)
|
|
||||||
throw FormatRuntimeError("Failed to open ISO9660 file %s",
|
|
||||||
pathname.c_str());
|
|
||||||
|
|
||||||
return new Iso9660ArchiveFile(iso);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -140,25 +136,23 @@ Iso9660ArchiveFile::Visit(ArchiveVisitor &visitor)
|
|||||||
/* single archive handling */
|
/* single archive handling */
|
||||||
|
|
||||||
class Iso9660InputStream final : public InputStream {
|
class Iso9660InputStream final : public InputStream {
|
||||||
Iso9660ArchiveFile &archive;
|
std::shared_ptr<Iso9660> iso;
|
||||||
|
|
||||||
iso9660_stat_t *statbuf;
|
iso9660_stat_t *statbuf;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Iso9660InputStream(Iso9660ArchiveFile &_archive, const char *_uri,
|
Iso9660InputStream(const std::shared_ptr<Iso9660> &_iso,
|
||||||
|
const char *_uri,
|
||||||
Mutex &_mutex, Cond &_cond,
|
Mutex &_mutex, Cond &_cond,
|
||||||
iso9660_stat_t *_statbuf)
|
iso9660_stat_t *_statbuf)
|
||||||
:InputStream(_uri, _mutex, _cond),
|
:InputStream(_uri, _mutex, _cond),
|
||||||
archive(_archive), statbuf(_statbuf) {
|
iso(_iso), statbuf(_statbuf) {
|
||||||
size = statbuf->size;
|
size = statbuf->size;
|
||||||
SetReady();
|
SetReady();
|
||||||
|
|
||||||
archive.Ref();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
~Iso9660InputStream() {
|
~Iso9660InputStream() {
|
||||||
free(statbuf);
|
free(statbuf);
|
||||||
archive.Unref();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* virtual methods from InputStream */
|
/* virtual methods from InputStream */
|
||||||
@ -170,12 +164,12 @@ InputStream *
|
|||||||
Iso9660ArchiveFile::OpenStream(const char *pathname,
|
Iso9660ArchiveFile::OpenStream(const char *pathname,
|
||||||
Mutex &mutex, Cond &cond)
|
Mutex &mutex, Cond &cond)
|
||||||
{
|
{
|
||||||
auto statbuf = iso9660_ifs_stat_translate(iso, pathname);
|
auto statbuf = iso9660_ifs_stat_translate(iso->iso, pathname);
|
||||||
if (statbuf == nullptr)
|
if (statbuf == nullptr)
|
||||||
throw FormatRuntimeError("not found in the ISO file: %s",
|
throw FormatRuntimeError("not found in the ISO file: %s",
|
||||||
pathname);
|
pathname);
|
||||||
|
|
||||||
return new Iso9660InputStream(*this, pathname, mutex, cond,
|
return new Iso9660InputStream(iso, pathname, mutex, cond,
|
||||||
statbuf);
|
statbuf);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -199,8 +193,7 @@ Iso9660InputStream::Read(void *ptr, size_t read_size)
|
|||||||
|
|
||||||
cur_block = offset / ISO_BLOCKSIZE;
|
cur_block = offset / ISO_BLOCKSIZE;
|
||||||
|
|
||||||
readed = archive.SeekRead(ptr, statbuf->lsn + cur_block,
|
readed = iso->SeekRead(ptr, statbuf->lsn + cur_block, no_blocks);
|
||||||
no_blocks);
|
|
||||||
|
|
||||||
if (readed != no_blocks * ISO_BLOCKSIZE)
|
if (readed != no_blocks * ISO_BLOCKSIZE)
|
||||||
throw FormatRuntimeError("error reading ISO file at lsn %lu",
|
throw FormatRuntimeError("error reading ISO file at lsn %lu",
|
||||||
|
Loading…
Reference in New Issue
Block a user