ktempfile.cpp

来自「将konqueror浏览器移植到ARM9 2410中」· C++ 代码 · 共 233 行

CPP
233
字号
/* * *  This file is part of the KDE libraries *  Copyright (c) 1999 Waldo Bastian <bastian@kde.org> * * $Id: ktempfile.cpp,v 1.19.2.2 2001/12/03 00:48:46 mueller Exp $ * *  This 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. **/#include <config.h>#include <sys/types.h>#ifdef HAVE_SYS_STAT_H#include <sys/stat.h>#endif#include <fcntl.h>#include <stdlib.h>#include <unistd.h>#ifdef HAVE_TEST#include <test.h>#endif#ifdef HAVE_PATHS_H#include <paths.h>#endif#ifndef _PATH_TMP#define _PATH_TMP "/tmp"#endif#include <qdatetime.h>#include <qfile.h>#include <qdatastream.h>#include <qtextstream.h>#include "kglobal.h"#include "kapp.h"#include "kinstance.h"#include "ktempfile.h"#include "kstddirs.h"KTempFile::KTempFile(QString filePrefix, QString fileExtension, int mode){   bAutoDelete = false;   mFd = -1;   mStream = 0;   mFile = 0;   mTextStream = 0;   mDataStream = 0;   mError = 0;   bOpen = false;   if (fileExtension.isEmpty())      fileExtension = ".tmp";   if (filePrefix.isEmpty())   {      filePrefix = locateLocal("tmp", KGlobal::instance()->instanceName());   }   (void) create(filePrefix, fileExtension, mode);}KTempFile::KTempFile(bool){   bAutoDelete = false;   mFd = -1;   mStream = 0;   mFile = 0;   mTextStream = 0;   mDataStream = 0;   mError = 0;   bOpen = false;}boolKTempFile::create(const QString &filePrefix, const QString &fileExtension,		  int mode){   // make sure the random seed is randomized   (void) KApplication::random();   QCString ext = QFile::encodeName(fileExtension);   QCString nme = QFile::encodeName(filePrefix) + "XXXXXX" + ext;   if((mFd = mkstemps(nme.data(), ext.length())) < 0)   {       mError = EACCES;       mTmpName = QString::null;       return false;   }   // got a file descriptor. nme contains the name   mTmpName = QFile::decodeName(nme);   mode_t tmp = 0;   mode_t umsk = umask(tmp);   umask(umsk);   chmod(nme, mode&(~umsk));   // Success!   bOpen = true;   // Set uid/gid (neccesary for SUID programs)   chown(nme, getuid(), getgid());   return true;}KTempFile::~KTempFile(){   close();   if (bAutoDelete)      unlink();}intKTempFile::status(){   return mError;}QStringKTempFile::name(){   return mTmpName;}intKTempFile::handle(){   return mFd;}FILE *KTempFile::fstream(){   if (mStream) return mStream;   if (mFd < 0) return 0;   // Create a stream   mStream = fdopen(mFd, "r+");   if (!mStream)     mError = errno;   return mStream;}QFile *KTempFile::file(){   if (mFile) return mFile;   if ( !fstream() ) return 0;   mFile = new QFile();   mFile->setName( name() );   mFile->open(IO_ReadWrite, mStream);   return mFile;}QTextStream *KTempFile::textStream(){   if (mTextStream) return mTextStream;   if ( !file() ) return 0; // Initialize mFile   mTextStream = new QTextStream( mFile );   return mTextStream;}QDataStream *KTempFile::dataStream(){   if (mDataStream) return mDataStream;   if ( !file() ) return 0;  // Initialize mFile   mDataStream = new QDataStream( mFile );   return mDataStream;}voidKTempFile::unlink(){   if (!mTmpName.isEmpty())      QFile::remove( mTmpName );   mTmpName = QString::null;}boolKTempFile::close(){   int result = 0;   delete mTextStream; mTextStream = 0;   delete mDataStream; mDataStream = 0;   delete mFile; mFile = 0;   if (mStream)   {      result = ferror(mStream);      if (result)         mError = ENOSPC; // Assume disk full.      result = fclose(mStream);      mStream = 0;      mFd = -1;      if (result != 0)         mError = errno;   }   if (mFd >= 0)   {      result = ::close(mFd);      mFd = -1;      if (result != 0)         mError = errno;   }   bOpen = false;   return (mError == 0);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?