atomicurl.cpp

来自「Amarok是一款在LINUX或其他类UNIX操作系统中运行的音频播放器软件。 」· C++ 代码 · 共 128 行

CPP
128
字号
/*  Copyright (c) 2005 Gábor Lehel <illissius@gmail.com>  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 <qdeepcopy.h>#include <kurl.h>#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;    QString s = url.protocol() + "://";    QString host = url.host();    if( url.hasUser() )    {        s += url.user();        host.prepend("@");    }    if( url.hasPass() )        s += ':' + url.pass();    if( url.port() )        host += QString(":") + QString::number( url.port() );    m_beginning = s + host;    m_directory = url.directory();    m_filename = url.fileName();    m_end = url.query();    if( url.hasRef() )        m_end += QString("#") + 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;}QString 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 QString &path ){    KURL url;    url.setPath( path );    if( m_beginning->isEmpty() )        *this = url;    else    {        m_directory = url.directory();        m_filename = url.fileName();    }}QString AtomicURL::path() const{    if( !m_filename.isEmpty() && !m_directory->endsWith("/") )        return m_directory + '/' + m_filename;    return m_directory + m_filename;}QString AtomicURL::fileName() const { return m_filename; }QString AtomicURL::directory() const { return m_directory; }

⌨️ 快捷键说明

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