kio Library API Documentation

davjob.cpp

00001 // -*- c++ -*-
00002 /* This file is part of the KDE libraries
00003     Copyright (C) 2002 Jan-Pascal van Best <janpascal@vanbest.org>
00004 
00005     This library is free software; you can redistribute it and/or
00006     modify it under the terms of the GNU Library General Public
00007     License as published by the Free Software Foundation; either
00008     version 2 of the License, or (at your option) any later version.
00009 
00010     This library is distributed in the hope that it will be useful,
00011     but WITHOUT ANY WARRANTY; without even the implied warranty of
00012     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013     Library General Public License for more details.
00014 
00015     You should have received a copy of the GNU Library General Public License
00016     along with this library; see the file COPYING.LIB.  If not, write to
00017     the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
00018     Boston, MA 02111-1307, USA.
00019 */
00020 
00021 #include <kurl.h>
00022 
00023 #include <qobject.h>
00024 #include <qptrlist.h>
00025 #include <qstring.h>
00026 #include <qstringlist.h>
00027 #include <qguardedptr.h>
00028 #include <qdom.h>
00029 
00030 #include <sys/types.h>
00031 #include <sys/stat.h>
00032 
00033 #include <kdebug.h>
00034 #include <kio/jobclasses.h>
00035 #include <kio/global.h>
00036 #include <kio/http.h>
00037 #include <kio/davjob.h>
00038 #include <kio/job.h>
00039 #include <kio/slaveinterface.h>
00040 
00041 #define KIO_ARGS QByteArray packedArgs; QDataStream stream( packedArgs, IO_WriteOnly ); stream
00042 
00043 using namespace KIO;
00044 
00045 DavJob::DavJob( const KURL& url, int method, const QString& request, bool showProgressInfo )
00046   : TransferJob( url, KIO::CMD_SPECIAL, QByteArray(), QByteArray(), showProgressInfo )
00047 {
00048   // We couldn't set the args when calling the parent constructor,
00049   // so do it now.
00050   QDataStream stream( m_packedArgs, IO_WriteOnly );
00051   stream << (int) 7 << url << method;
00052   // Same for static data
00053   staticData = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n" + request.utf8();
00054   staticData.truncate( staticData.size() - 1 );
00055 }
00056 
00057 void DavJob::slotData( const QByteArray& data ) 
00058 {
00059   if(m_redirectionURL.isEmpty() || m_redirectionURL.isMalformed() || m_error)
00060     m_str_response.append( QString( data ) );
00061 }
00062 
00063 void DavJob::slotFinished()
00064 {
00065   // kdDebug() << "DavJob::slotFinished()" << endl;
00066   // kdDebug() << m_str_response << endl;
00067 
00068   if ( ! m_response.setContent( m_str_response, true ) ) {
00069     // An error occured parsing the XML response
00070     QDomElement root = m_response.createElementNS( "DAV:", "error-report" );
00071     m_response.appendChild( root );
00072 
00073     QDomElement el = m_response.createElementNS( "DAV:", "offending-response" );
00074     QDomText textnode = m_response.createTextNode( m_str_response );
00075     el.appendChild( textnode );
00076     root.appendChild( el );
00077   }
00078 
00079   // kdDebug() << m_response.toString() << endl;
00080   TransferJob::slotFinished();
00081 }
00082 
00083 /* Convenience methods */
00084 
00085 DavJob* KIO::davPropFind( const KURL& url, const QDomDocument& properties, QString depth, bool showProgressInfo )
00086 {
00087   DavJob *job = new DavJob( url, (int) KIO::DAV_PROPFIND, properties.toString(), showProgressInfo );
00088   job->addMetaData( "davDepth", depth );
00089   return job;
00090 }
00091 
00092 
00093 DavJob* KIO::davPropPatch( const KURL& url, const QDomDocument& properties, bool showProgressInfo )
00094 {
00095   return new DavJob( url, (int) KIO::DAV_PROPPATCH, properties.toString(), showProgressInfo );
00096 }
00097 
00098 DavJob* KIO::davSearch( const KURL& url, const QString& nsURI, const QString& qName, const QString& query, bool showProgressInfo )
00099 {
00100   QDomDocument doc;
00101   QDomElement searchrequest = doc.createElementNS( "DAV:", "searchrequest" );
00102   QDomElement searchelement = doc.createElementNS( nsURI, qName );
00103   QDomText text = doc.createTextNode( query );
00104   searchelement.appendChild( text );
00105   searchrequest.appendChild( searchelement );
00106   doc.appendChild( searchrequest );
00107   return new DavJob( url, KIO::DAV_SEARCH, doc.toString(), showProgressInfo );
00108 }
00109 
00110 #include "davjob.moc"
KDE Logo
This file is part of the documentation for kdelibs Version 3.1.5.
Documentation copyright © 1996-2002 the KDE developers.
Generated on Wed Jan 28 13:12:43 2004 by doxygen 1.3.4 written by Dimitri van Heesch, © 1997-2001