Added archive KwDataFile and read from / write to KwArchive
[kworship.git] / kworship / archive / KwArchive.h
blobea31de682e7e4ff35c20af7b75aab86ac19d2413
1 /***************************************************************************
2 * This file is part of KWorship. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
4 * *
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. *
9 * *
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. *
14 * *
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 ***************************************************************************/
20 #ifndef _KwArchive_h_
21 #define _KwArchive_h_
23 /**
24 * @file KwArchive.h
25 * @brief A KWorship data archive file.
26 * @author James Hogan <james@albanarts.com>
29 #include <QStringList>
31 class KwDataFile;
33 class KArchive;
35 class QIODevice;
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.
41 class KwArchive
43 public:
46 * Constructors + destructor
49 /// Primary constructor.
50 KwArchive(QIODevice* dev, bool writing);
52 /// Destructor.
53 virtual ~KwArchive();
56 * Accessors
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.
70 int numPlaylists();
72 /// Get a list of playlist names in this archive.
73 QStringList playlists();
76 * Access to song data
79 /// Find how many songs are in this archive.
80 int numSongs();
82 /// Get a list of song names in this archive.
83 QStringList songs();
86 * Access to generic resources
89 /// Find how many resources are in this archive.
90 int numResources();
92 /// Get a list of resource names in this archive.
93 QStringList resources();
95 protected:
98 * Data files
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);
107 private:
110 * Variables
113 /// Whether we are in writing mode.
114 bool m_writing;
116 /// Compressor device.
117 QIODevice* m_compressor;
119 /// Archive object.
120 KArchive* m_archive;
124 #endif // _KwArchive_h_