/* Copyright (c) 2005 Gábor Lehel 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 #include #include "debug.h" #include "atomicurl.h" AtomicURL::AtomicURL() { } AtomicURL::AtomicURL( const AtomicURL &other ) { m_beginning = other.m_beginning; m_directory = other.m_directory; m_filename = other.m_filename; m_end = other.m_end; } AtomicURL::AtomicURL( const KURL &url ) { if( url.isEmpty() ) return; TQString s = url.protocol() + "://"; TQString host = url.host(); if( url.hasUser() ) { s += url.user(); host.prepend("@"); } if( url.hasPass() ) s += ':' + url.pass(); if( url.port() ) host += TQString(":") + TQString::number( url.port() ); m_beginning = s + host; m_directory = url.directory(); m_filename = url.fileName(); m_end = url.query(); if( url.hasRef() ) m_end += TQString("#") + url.ref(); if (url != this->url()) { debug() << "from: " << url << endl; debug() << "to: " << this->url() << endl; } } AtomicURL::~AtomicURL() { } AtomicURL &AtomicURL::operator=( const AtomicURL &other ) { m_beginning = other.m_beginning; m_directory = other.m_directory; m_filename = other.m_filename; return *this; } bool AtomicURL::operator==( const AtomicURL &other ) const { return m_filename == other.m_filename && m_directory == other.m_directory && m_beginning == other.m_beginning && m_end == other.m_end; } TQString AtomicURL::string() const { return m_beginning + path() + m_end; } KURL AtomicURL::url() const { if( isEmpty() ) return KURL(); return KURL( string(), 106 ); } bool AtomicURL::isEmpty() const { return m_beginning->isEmpty() && m_directory->isEmpty() && m_filename.isEmpty() && m_end.isEmpty(); } void AtomicURL::setPath( const TQString &path ) { KURL url; url.setPath( path ); if( m_beginning->isEmpty() ) *this = url; else { m_directory = url.directory(); m_filename = url.fileName(); } } TQString AtomicURL::path() const { if( !m_filename.isEmpty() && !m_directory->endsWith("/") ) return m_directory + '/' + m_filename; return m_directory + m_filename; } TQString AtomicURL::fileName() const { return m_filename; } TQString AtomicURL::directory() const { return m_directory; }