diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /lib/store/KoDirectoryStore.cpp | |
download | koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip |
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/store/KoDirectoryStore.cpp')
-rw-r--r-- | lib/store/KoDirectoryStore.cpp | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/lib/store/KoDirectoryStore.cpp b/lib/store/KoDirectoryStore.cpp new file mode 100644 index 000000000..d5b698f01 --- /dev/null +++ b/lib/store/KoDirectoryStore.cpp @@ -0,0 +1,117 @@ +/* This file is part of the KDE project + Copyright (C) 2002, 2006 David Faure <faure@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. +*/ + +#include "KoDirectoryStore.h" +#include <qfile.h> +#include <qdir.h> +#include <kdebug.h> + +// HMMM... I used QFile and QDir.... but maybe this should be made network transparent? + +KoDirectoryStore::KoDirectoryStore( const QString& path, Mode _mode ) + : m_basePath( path ) +{ + const int pos = path.findRev( '/' ); + // The parameter must include "maindoc.xml" or "content.xml" + if ( pos != -1 && pos != (int)m_basePath.length()-1 ) + m_basePath = m_basePath.left( pos ); + if ( !m_basePath.endsWith("/") ) + m_basePath += '/'; + m_currentPath = m_basePath; + kdDebug(s_area) << "KoDirectoryStore::KoDirectoryStore base path:" << m_basePath << endl; + m_bGood = init( _mode ); +} + +KoDirectoryStore::~KoDirectoryStore() +{ +} + +bool KoDirectoryStore::init( Mode _mode ) +{ + KoStore::init( _mode ); + QDir dir( m_basePath ); + if ( dir.exists() ) + return true; + dir = QDir::current(); + // Dir doesn't exist. If reading -> error. If writing -> create. + if ( _mode == Write && dir.mkdir( m_basePath ) ) { + kdDebug(s_area) << "KoDirectoryStore::init Directory created: " << m_basePath << endl; + return true; + } + return false; +} + +bool KoDirectoryStore::openReadOrWrite( const QString& name, int iomode ) +{ + //kdDebug(s_area) << "KoDirectoryStore::openReadOrWrite m_currentPath=" << m_currentPath << " name=" << name << endl; + int pos = name.findRev('/'); + if ( pos != -1 ) // there are subdirs in the name -> maybe need to create them, when writing + { + pushDirectory(); // remember where we were + enterAbsoluteDirectory( QString::null ); + //kdDebug(s_area) << "KoDirectoryStore::openReadOrWrite entering " << name.left(pos) << endl; + bool ret = enterDirectory( name.left( pos ) ); + popDirectory(); + if ( !ret ) + return false; + } + m_stream = new QFile( m_basePath + name ); + if ( !m_stream->open( iomode ) ) + { + delete m_stream; + m_stream = 0L; + return false; + } + if ( iomode == IO_ReadOnly ) + m_iSize = m_stream->size(); + return true; +} + +bool KoDirectoryStore::enterRelativeDirectory( const QString& dirName ) +{ + QDir origDir( m_currentPath ); + m_currentPath += dirName; + if ( !m_currentPath.endsWith("/") ) + m_currentPath += '/'; + //kdDebug(s_area) << "KoDirectoryStore::enterRelativeDirectory m_currentPath now " << m_currentPath << endl; + QDir newDir( m_currentPath ); + if ( newDir.exists() ) + return true; + // Dir doesn't exist. If reading -> error. If writing -> create. + if ( mode() == Write && origDir.mkdir( dirName ) ) { + kdDebug(s_area) << "Created " << dirName << " under " << origDir.absPath() << endl; + return true; + } + return false; +} + +bool KoDirectoryStore::enterAbsoluteDirectory( const QString& path ) +{ + m_currentPath = m_basePath + path; + //kdDebug(s_area) << "KoDirectoryStore::enterAbsoluteDirectory " << m_currentPath << endl; + QDir newDir( m_currentPath ); + Q_ASSERT( newDir.exists() ); // We've been there before, therefore it must exist. + return newDir.exists(); +} + +bool KoDirectoryStore::fileExists( const QString& absPath ) const +{ + kdDebug(s_area) << "KoDirectoryStore::fileExists " << m_basePath+absPath << endl; + return QFile::exists( m_basePath + absPath ); +} |