1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
/* This file is part of the KDE project
Copyright (C) 1998, 1999 David Faure <faure@kde.org>
Copyright (C) 2010 Casper Boemann <cbo@boemann.dk>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef __koStore_h_
#define __koStore_h_
#include <QtCore/QString>
#include <QtCore/QStringList>
#include <QtCore/QIODevice>
#include <QtCore/QStack>
#include <QtCore/QByteArray>
#include "koodf_export.h"
#include <kurl.h>
class QWidget;
class KoStorePrivate;
/**
* Saves and loads KOffice documents using various backends. Currently supported
* backends are ZIP, tar and directory.
* We call a "store" the file on the hard disk (the one the users sees)
* and call a "file" a file inside the store.
*/
class KOODF_EXPORT KoStore
{
public:
enum Mode { Read, Write };
enum Backend { Auto, Tar, Zip, Directory, Encrypted };
/**
* Open a store (i.e. the representation on disk of a KOffice document).
*
* @param fileName the name of the file to open
* @param mode if KoStore::Read, open an existing store to read it.
* if KoStore::Write, create or replace a store.
* @param backend the backend to use for the data storage.
* Auto means automatically-determined for reading,
* and the current format (now Zip) for writing.
*
* @param appIdentification the application's mimetype,
* to be written in the file for "mime-magic" identification.
* Only meaningful if mode is Write, and if backend!=Directory.
*/
static KoStore *createStore(const QString &fileName, Mode mode, const QByteArray &appIdentification = "", Backend backend = Auto);
/**
* Create a store for any kind of QIODevice: file, memory buffer...
* KoStore will take care of opening the QIODevice.
* This method doesn't support the Directory store!
*/
static KoStore *createStore(QIODevice *device, Mode mode, const QByteArray &appIdentification = "", Backend backend = Auto);
/**
* Open a store (i.e. the representation on disk of a KOffice document).
*
* @param window associated window (for the progress bar dialog and authentication)
* @param url URL of the file to open
* @param mode if KoStore::Read, open an existing store to read it.
* if KoStore::Write, create or replace a store.
* @param backend the backend to use for the data storage.
* Auto means automatically-determined for reading,
* and the current format (now Zip) for writing.
*
* @param appIdentification the application's mimetype,
* to be written in the file for "mime-magic" identification.
* Only meaningful if mode is Write, and if backend!=Directory.
*
* If the file is remote, the backend Directory cannot be used!
*
* @bug saving not completely implemented (fixed temporary file)
*/
static KoStore *createStore(QWidget *window, const KUrl &url, Mode mode, const QByteArray &appIdentification = "", Backend backend = Auto);
/**
* Destroys the store (i.e. closes the file on the hard disk)
*/
virtual ~KoStore();
/**
* Returns the url of the store. It can be a filename or a remote url.
* it can also be empty, if the store is a bytearray
* @return the url of the store as supplied in the createStore calls
*/
KUrl urlOfStore() const;
/**
* Open a new file inside the store
* @param name The filename, internal representation ("root", "tar:/0"... ).
* If the tar:/ prefix is missing it's assumed to be a relative URI.
* @return true on success.
*/
bool open(const QString &name);
/**
* Check whether a file inside the store is currently opened with open(),
* ready to be read or written.
* @return true if a file is currently opened.
*/
bool isOpen() const;
/**
* Close the file inside the store
* @return true on success.
*/
bool close();
/**
* Get a device for reading a file from the store directly
* (slightly faster than read() calls)
* You need to call @ref open first, and @ref close afterwards.
*/
QIODevice *device() const;
/**
* Read data from the currently opened file. You can also use the streams
* for this.
*/
QByteArray read(qint64 max);
/**
* Write data into the currently opened file. You can also use the streams
* for this.
*/
qint64 write(const QByteArray &data);
/**
* Read data from the currently opened file. You can also use the streams
* for this.
* @return size of data read, -1 on error
*/
qint64 read(char *buffer, qint64 length);
/**
* Write data into the currently opened file. You can also use the streams
* for this.
*/
virtual qint64 write(const char* data, qint64 length);
/**
* @return the size of the currently opened file, -1 on error.
* Can be used as an argument for the read methods, for instance
*/
qint64 size() const;
/**
* @return true if an error occurred
*/
bool bad() const;
/**
* @return the mode used when opening, read or write
*/
Mode mode() const;
/**
* Enters one or multiple directories. In Read mode this actually
* checks whether the specified directories exist and returns false
* if they don't. In Write mode we don't create the directory, we
* just use the "current directory" to generate the absolute path
* if you pass a relative path (one not starting with tar:/) when
* opening a stream.
* Note: Operates on internal names
*/
bool enterDirectory(const QString &directory);
/**
* Leaves a directory. Equivalent to "cd .."
* @return true on success, false if we were at the root already to
* make it possible to "loop to the root"
*/
bool leaveDirectory();
/**
* Returns the current path including a trailing slash.
* Note: Returns a path in "internal name" style
*/
QString currentPath() const;
/**
* Returns the current directory.
* Note: Returns a path in "internal name" style
*/
QString currentDirectory() const;
/**
* Stacks the current directory. Restore the current path using
* @ref popDirectory .
*/
void pushDirectory();
/**
* Restores the previously pushed directory. No-op if the stack is
* empty.
*/
void popDirectory();
/**
* @return true if the given file exists in the current directory,
* i.e. if open(fileName) will work.
*/
bool hasFile(const QString &fileName) const;
/**
* Imports a local file into a store
* @param fileName file on hard disk
* @param destName file in the store
*/
bool addLocalFile(const QString &fileName, const QString &destName);
/**
* Imports data into a store
* @param buffer data
* @param destName file in the store
*/
bool addDataToFile(QByteArray &buffer, const QString &destName);
/**
* Extracts a file out of the store
* @param sourceName file in the store
* @param fileName file on a disk
*/
bool extractFile(const QString &sourceName, const QString &fileName);
/**
* Extracts a file out of the store to a buffer
* @param sourceName file in the store
* @param data memory buffer
*/
bool extractFile(const QString &sourceName, QByteArray &data);
//@{
/// See QIODevice
bool seek(qint64 pos);
qint64 pos() const;
bool atEnd() const;
//@}
/**
* Do not expand file and directory names
* Useful when using KoStore on non-KOffice files.
* (This method should be called just after the constructor)
*/
void disallowNameExpansion();
/**
* Call this before destroying the store, to be able to catch errors
* (e.g. from ksavefile)
*/
bool finalize();
/**
* Sets the password to be used for decryption or encryption of the store.
* Use of this function is optional: an encryptable store should make
* a best effort in obtaining a password if it wasn't supplied.
*
* This method only works before opening a file. It might fail when a file
* has already been opened before calling this method.
*
* This method will not function for any store that is not encrypted or
* can't be encrypted when saving.
*
* @param password A non-empty password.
*
* @return True if the password was set.
*/
virtual bool setPassword(const QString &password);
/**
* Retrieves the password used to encrypt or decrypt the store. Note that
* QString() will returned if no password has been given or the store is
* not encrypted.
*
* @return The password this store is encrypted with.
*/
virtual QString password();
/**
* Returns whether a store opened for reading is encrypted or a store opened
* for saving will be encrypted.
*
* @return True if the store is encrypted.
*/
virtual bool isEncrypted();
protected:
KoStore();
/**
* Init store - called by constructor.
* @return true on success
*/
virtual bool init(Mode mode);
/**
* Finalize store - called by finalize.
* @return true on success
*/
virtual bool doFinalize() {
return true;
}
/**
* Open the file @p name in the store, for writing
* On success, this method must set m_stream to a stream in which we can write.
* @param name "absolute path" (in the archive) to the file to open
* @return true on success
*/
virtual bool openWrite(const QString &name) = 0;
/**
* Open the file @p name in the store, for reading.
* On success, this method must set m_stream to a stream from which we can read,
* as well as setting m_iSize to the size of the file.
* @param name "absolute path" (in the archive) to the file to open
* @return true on success
*/
virtual bool openRead(const QString &name) = 0;
/**
* @return true on success
*/
virtual bool closeRead() = 0;
/**
* @return true on success
*/
virtual bool closeWrite() = 0;
/**
* Enter a subdirectory of the current directory.
* The directory might not exist yet in Write mode.
*/
virtual bool enterRelativeDirectory(const QString &dirName) = 0;
/**
* Enter a directory where we've been before.
* It is guaranteed to always exist.
*/
virtual bool enterAbsoluteDirectory(const QString &path) = 0;
/**
* Check if a file exists inside the store.
* @param absPath the absolute path inside the store, i.e. not relative to the current directory
*/
virtual bool fileExists(const QString &absPath) const = 0;
protected:
KoStorePrivate *d_ptr;
private:
Q_DECLARE_PRIVATE(KoStore)
private:
KoStore(const KoStore& store); ///< don't copy
KoStore& operator=(const KoStore& store); ///< don't assign
};
#endif
|