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
|
/* This file is part of the KDE project
Copyright 2004 Nicolas GOUTTE <goutte@kde.org>
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_p_h_
#define __koStore_p_h_
#include "KoStore.h"
#include <QString>
#include <kurl.h>
class QWidget;
class KoStorePrivate
{
public:
KoStorePrivate(KoStore *qq)
: q(qq),
fileMode(Local),
window(0),
size(0),
stream(0),
isOpen(false),
good(false),
finalized(false)
{
}
enum FileMode { /*Bad=0,*/ Local = 1, RemoteRead, RemoteWrite };
/**
* Conversion routine
* @param _internalNaming name used internally : "root", "tar:/0", ...
* @return the name used in the file, more user-friendly ("maindoc.xml",
* "part0/maindoc.xml", ...)
* Examples:
*
* tar:/0 is saved as part0/maindoc.xml
* tar:/0/1 is saved as part0/part1/maindoc.xml
* tar:/0/1/pictures/picture0.png is saved as part0/part1/pictures/picture0.png
*
* see specification (koffice/lib/store/SPEC) for details.
*/
QString toExternalNaming(const QString &internalNaming) const;
/**
* Expands a full path name for a stream (directories+filename)
*/
QString expandEncodedPath(const QString &intern) const;
/**
* Expands only directory names(!)
* Needed for the path handling code, as we only operate on internal names
*/
QString expandEncodedDirectory(const QString &intern) const;
/**
* Enter *one* single directory. Nothing like foo/bar/bleh allowed.
* Performs some checking when in Read mode
*/
bool enterDirectoryInternal(const QString &directory);
bool extractFile(const QString &sourceName, QIODevice &buffer);
KoStore *q;
/**
* original URL of the remote file
* (undefined for a local file)
*/
KUrl url;
FileMode fileMode;
QString localFileName;
QWidget *window;
KoStore::Mode mode;
/// Store the filenames (with full path inside the archive) when writing, to avoid duplicates
QStringList filesList;
/// The "current directory" (path)
QStringList currentPath;
/// Current filename (between an open() and a close())
QString fileName;
/// Current size of the file named m_sName
qint64 size;
/// The stream for the current read or write operation
QIODevice *stream;
bool isOpen;
/// Must be set by the constructor.
bool good;
bool finalized;
QStack<QString> directoryStack;
mutable enum {
NamingVersion21,
NamingVersion22,
NamingVersionRaw ///< Never expand file and directory names
} namingVersion;
};
#endif
|