mpd/src/archive/ArchiveFile.hxx

62 lines
1.5 KiB
C++
Raw Normal View History

/*
2015-01-01 19:48:13 +01:00
* Copyright (C) 2003-2015 The Music Player Daemon Project
* http://www.musicpd.org
2008-12-16 21:42:34 +01:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2008-12-16 21:42:34 +01:00
*/
2013-01-29 23:26:51 +01:00
#ifndef MPD_ARCHIVE_FILE_HXX
#define MPD_ARCHIVE_FILE_HXX
2008-12-16 21:42:34 +01:00
class Mutex;
class Cond;
class Error;
struct ArchivePlugin;
2013-11-28 11:50:54 +01:00
class ArchiveVisitor;
2014-05-11 15:34:48 +02:00
class InputStream;
2013-01-29 23:26:51 +01:00
class ArchiveFile {
public:
const ArchivePlugin &plugin;
2008-12-16 21:42:34 +01:00
ArchiveFile(const ArchivePlugin &_plugin)
2013-01-29 23:26:51 +01:00
: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 InputStream of a file within the archive.
*
* @param path the path within the archive
*/
virtual InputStream *OpenStream(const char *path,
Mutex &mutex, Cond &cond,
Error &error) = 0;
2013-01-29 23:26:51 +01:00
};
2008-12-16 21:42:34 +01:00
#endif