1 /***************************************************************************
2 * This file is part of KWorship. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
5 * KWorship is free software: you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation, either version 2 of the License, or *
8 * (at your option) any later version. *
10 * KWorship is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with KWorship. If not, write to the Free Software Foundation, *
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
25 * @brief A KWorship data archive file.
26 * @author James Hogan <james@albanarts.com>
29 #include <QStringList>
37 /** A KWorship data archive file.
38 * This class provides access to a KWorship archive file without loading all
39 * the data into memory first.
46 * Constructors + destructor
49 /// Primary constructor.
50 KwArchive(QIODevice
* dev
, bool writing
);
59 /// Get whether the archive is being written.
60 bool isWriting() const;
62 /// Get whether the archive is being read.
63 bool isReading() const;
66 * Access to playlist data
69 /// Find how many playlists are in this archive.
72 /// Get a list of playlist names in this archive.
73 QStringList
playlists();
79 /// Find how many songs are in this archive.
82 /// Get a list of song names in this archive.
86 * Access to generic resources
89 /// Find how many resources are in this archive.
92 /// Get a list of resource names in this archive.
93 QStringList
resources();
101 /// Load a data file from the archive.
102 KwDataFile
* loadDataFile(QString path
);
104 /// Write a data file to the archive.
105 void writeDataFile(QString path
, const KwDataFile
* data
);
113 /// Whether we are in writing mode.
116 /// Compressor device.
117 QIODevice
* m_compressor
;
124 #endif // _KwArchive_h_