|
|
/* This file is part of the KDE libraries Copyright (c) 1999 Waldo BastianThis library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _KTEMPFILE_H_ #define _KTEMPFILE_H_ #include #include #include class QFile; class QTextStream; class QDataStream; class KSaveFile; class KTempFilePrivate; /** * The KTempFile class creates and opens a unique file for temporary use. * * This is especially useful if you need to create a file in a world * writable directory like /tmp without being vulnerable to so called * symlink attacks. * * KDE applications, however, shouldn't create files in /tmp in the first * place but use the "tmp" resource instead. The standard KTempFile * constructor will do that by default. * * To create a temporary file that starts with a certain name * in the "tmp" resource, one should use: * KTempFile(locateLocal("tmp", prefix), extension); * * KTempFile does not create any missing directories, but locateLocal() does. * * See also @ref KStandardDirs * * @author Waldo Bastian */ class KTempFile { friend class KSaveFile; public: /** * Creates a temporary file with the name: * * * The default @p filePrefix is "$KDEHOME/tmp-$HOST/appname" * The default @p fileExtension is ".tmp" * @param filePrefix the prefix of the file name, or QString::null * for the default value * @param the extension of the prefix, or QString::null for the * default value **/ KTempFile(QString filePrefix=QString::null, QString fileExtension=QString::null, int mode = 0600 ); /** * The destructor closes the file. * If autoDelete is enabled the file gets unlinked as well. **/ ~KTempFile(); /** * Turn automatic deletion on or off. * Automatic deletion is off by default. * @param autoDelete true to turn automatic deletion on **/ void setAutoDelete(bool autoDelete) { bAutoDelete = autoDelete; } /** * Returns the status of the file based on errno. (see errno.h) * 0 means OK. * * You should check the status after object creation to check * whether a file could be created in the first place. * * You may check the status after closing the file to verify that * the file has indeed been written correctly. * @return the errno status, 0 means ok **/ int status() const; /** * Returns the full path and name of the file. * @return The name of the file, or QString::null if opening the * file has failed or the file has been unlinked **/ QString name() const; /** * An integer file descriptor open for writing to the file * @return The file descriptor, or a negative number if opening * the file failed **/ int handle() const; /** * Returns the FILE* of the temporary file. * @return FILE* stream open for writing to the file, or 0 * if opening the file failed **/ FILE *fstream(); /** * Returns the @ref QTextStream for writing. * @return QTextStream open for writing to the file, or 0 * if opening the file failed **/ QTextStream *textStream(); /** * Returns a @ref QDataStream for writing. * @return QDataStream open for writing to the file, or 0 * if opening the file failed **/ QDataStream *dataStream(); /** * Returns a @ref QFile. * @return A QFile open for writing to the file, or 0 if * opening the file failed. **/ QFile *file(); /** * Unlinks the file from the directory. The file is * deleted once the last reader/writer closes it. **/ void unlink(); /** * Closes the file. * * See @ref #status() for details about errors. * @return true if successful, or false if an error has occured. **/ bool close(); protected: /** * Constructor used by KSaveFile **/ KTempFile(bool); /** * @internal * Create function used internally by KTempFile and KSaveFile **/ bool create(const QString &filePrefix, const QString &fileExtension, int mode); void setError(int error) { mError = error; } private: int mError; QString mTmpName; int mFd; FILE *mStream; QFile *mFile; QTextStream *mTextStream; QDataStream *mDataStream; bool bOpen; bool bAutoDelete; KTempFilePrivate *d; }; #endif
Generated by: caleb on tcdevel on Tue Jan 28 12:54:04 2003, using kdoc $. |