You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gwenview/src/gvcore/documentloadedimpl.cpp

198 lines
4.8 KiB

/*
Gwenview - A simple image viewer for TDE
Copyright 2000-2004 Aur<75>lien G<>teau
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "documentloadedimpl.moc"
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
// TQt
#include <tqdir.h>
#include <tqfileinfo.h>
#include <tqtimer.h>
// KDE
#include <tdeapplication.h>
#include <kdebug.h>
#include <tdeio/netaccess.h>
#include <klargefile.h>
#include <tdelocale.h>
#include <tdetempfile.h>
// Local
#include "imageutils/imageutils.h"
namespace Gwenview {
#undef ENABLE_LOG
#undef LOG
//#define ENABLE_LOG
#ifdef ENABLE_LOG
#define LOG(x) kdDebug() << k_funcinfo << x << endl
#else
#define LOG(x) ;
#endif
class DocumentLoadedImplPrivate {
int mSize;
TQDateTime mModified;
};
DocumentLoadedImpl::DocumentLoadedImpl(Document* document)
: DocumentImpl(document) {
LOG("");
}
void DocumentLoadedImpl::init() {
emit finished(true);
}
DocumentLoadedImpl::~DocumentLoadedImpl() {
}
void DocumentLoadedImpl::transform(ImageUtils::Orientation orientation) {
setImage(ImageUtils::transform(mDocument->image(), orientation));
emitImageRectUpdated();
}
TQString DocumentLoadedImpl::save(const KURL& _url, const TQCString& format) const {
if (!TQImageIO::outputFormats().contains(format)) {
return i18n("Gwenview cannot write files in this format.");
}
TQString msg;
KURL url(_url);
// Use the umask to determine default mode (will be used if the dest file
// does not exist)
int _umask=umask(0);
umask(_umask);
mode_t mode=0666 & ~_umask;
if (url.isLocalFile()) {
// If the file is a link, dereference it but take care of circular
// links
TQFileInfo info(url.path());
if (info.isSymLink()) {
TQStringList links;
while (info.isSymLink()) {
links.append(info.filePath());
TQString path=info.readLink();
if (path[0]!='/') {
path=info.dirPath(true) + '/' + path;
}
path=TQDir::cleanDirPath(path);
if (links.contains(path)) {
return i18n("This is a circular link.");
}
info.setFile(path);
}
url.setPath(info.filePath());
}
// Make some quick tests on the file if it is local
if (info.exists() && ! info.isWritable()) {
return i18n("This file is read-only.");
}
if (info.exists()) {
// Get current file mode
KDE_struct_stat st;
if (KDE_stat(TQFile::encodeName(info.filePath()), &st)==0) {
mode=st.st_mode & 07777;
} else {
// This should not happen
kdWarning() << "Could not stat " << info.filePath() << endl;
}
} else {
TQFileInfo parent=TQFileInfo(info.dirPath());
if (!parent.isWritable()) {
return
i18n("The %1 folder is read-only.")
.arg(parent.filePath());
}
}
}
// Save the file to a tmp file
TQString prefix;
if (url.isLocalFile()) {
// We set the prefix to url.path() so that the temp file is on the
// same partition as the destination file. If we don't do this, rename
// will fail
prefix=url.path();
}
KTempFile tmp(prefix, "gwenview", mode);
tmp.setAutoDelete(true);
if (tmp.status()!=0) {
TQString reason( strerror(tmp.status()) );
return i18n("Could not create a temporary file.\nReason: %1.")
.arg(reason);
}
TQFile* file=tmp.file();
msg=localSave(file, format);
if (!msg.isNull()) return msg;
file->close();
if (tmp.status()!=0) {
TQString reason( strerror(tmp.status()) );
return i18n("Saving image to a temporary file failed.\nReason: %1.")
.arg(reason);
}
TQString tmpName=tmp.name();
int tmpSize=TQFileInfo(tmpName).size();
setFileSize(tmpSize);
// Move the tmp file to the final dest
if (url.isLocalFile()) {
if( ::rename( TQFile::encodeName(tmpName), TQFile::encodeName( url.path())) < 0 ) {
return i18n("Could not write to %1.").arg(url.path());
}
} else {
if (!TDEIO::NetAccess::upload(tmp.name(), url, TDEApplication::kApplication()->mainWidget() )) {
return i18n("Could not upload the file to %1.").arg(url.prettyURL());
}
}
return TQString();
}
TQString DocumentLoadedImpl::localSave(TQFile* file, const TQCString& format) const {
TQImageIO iio(file, format);
iio.setImage(mDocument->image());
if (!iio.write()) {
return
i18n("An error happened while saving.");
}
return TQString();
}
} // namespace