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.
124 lines
4.1 KiB
124 lines
4.1 KiB
/******************************************************************************* |
|
** |
|
** Filename : util |
|
** Created on : 03 April, 2005 |
|
** Copyright : (c) 2005 Till Adam |
|
** Email : <adam@kde.org> |
|
** |
|
*******************************************************************************/ |
|
|
|
/******************************************************************************* |
|
** |
|
** 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. |
|
** |
|
** It 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 |
|
** |
|
** In addition, as a special exception, the copyright holders give |
|
** permission to link the code of this program with any edition of |
|
** the Qt library by Trolltech AS, Norway (or with modified versions |
|
** of Qt that use the same license as Qt), and distribute linked |
|
** combinations including the two. You must obey the GNU General |
|
** Public License in all respects for all of the code used other than |
|
** Qt. If you modify this file, you may extend this exception to |
|
** your version of the file, but you are not obligated to do so. If |
|
** you do not wish to do so, delete this exception statement from |
|
** your version. |
|
** |
|
*******************************************************************************/ |
|
|
|
|
|
#include "util.h" |
|
|
|
#include <stdlib.h> |
|
#include <mimelib/string.h> |
|
|
|
size_t KMail::Util::crlf2lf( char* str, const size_t strLen ) |
|
{ |
|
if ( !str || strLen == 0 ) |
|
return 0; |
|
|
|
const char* source = str; |
|
const char* sourceEnd = source + strLen; |
|
|
|
// search the first occurrence of "\r\n" |
|
for ( ; source < sourceEnd - 1; ++source ) { |
|
if ( *source == '\r' && *( source + 1 ) == '\n' ) |
|
break; |
|
} |
|
|
|
if ( source == sourceEnd - 1 ) { |
|
// no "\r\n" found |
|
return strLen; |
|
} |
|
|
|
// replace all occurrences of "\r\n" with "\n" (in place) |
|
char* target = const_cast<char*>( source ); // target points to '\r' |
|
++source; // source points to '\n' |
|
for ( ; source < sourceEnd; ++source ) { |
|
if ( *source != '\r' || *( source + 1 ) != '\n' ) |
|
* target++ = *source; |
|
} |
|
*target = '\0'; // terminate result |
|
return target - str; |
|
} |
|
|
|
QByteArray KMail::Util::lf2crlf( const QByteArray & src ) |
|
{ |
|
QByteArray result; |
|
result.resize( 2*src.size() ); // maximal possible length |
|
|
|
QByteArray::ConstIterator s = src.begin(); |
|
QByteArray::Iterator d = result.begin(); |
|
// we use cPrev to make sure we insert '\r' only there where it is missing |
|
char cPrev = '?'; |
|
const char* end = src.end(); |
|
while ( s != end ) { |
|
if ( ('\n' == *s) && ('\r' != cPrev) ) |
|
*d++ = '\r'; |
|
cPrev = *s; |
|
*d++ = *s++; |
|
} |
|
result.truncate( d - result.begin() ); |
|
return result; |
|
} |
|
|
|
QByteArray KMail::Util::ByteArray( const DwString& str ) |
|
{ |
|
const int strLen = str.size(); |
|
QByteArray arr; |
|
arr.resize( strLen ); |
|
memcpy( arr.data(), str.data(), strLen ); |
|
return arr; |
|
} |
|
|
|
DwString KMail::Util::dwString( const QByteArray& str ) |
|
{ |
|
if ( !str.data() ) // DwString doesn't like char*=0 |
|
return DwString(); |
|
return DwString( str.data(), str.size() ); |
|
} |
|
|
|
bool KMail::Util::checkOverwrite( const KUrl &url, QWidget *w ) |
|
{ |
|
if ( KIO::NetAccess::exists( url, KIO::NetAccess::DestinationSide, w ) ) { |
|
if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel( |
|
w, |
|
i18n( "A file named \"%1\" already exists. " |
|
"Are you sure you want to overwrite it?", url.prettyUrl() ), |
|
i18n( "Overwrite File?" ), |
|
KStandardGuiItem::overwrite() ) ) |
|
return false; |
|
} |
|
return true; |
|
} |
|
|
|
|