home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / qt3_emx.zip / include / qnetworkprotocol.h < prev    next >
C/C++ Source or Header  |  2001-10-11  |  6KB  |  228 lines

  1. /****************************************************************************
  2. ** $Id:  qt/qnetworkprotocol.h   3.0.0   edited Jun 22 12:24 $
  3. **
  4. ** Definition of QNetworkProtocol class
  5. **
  6. ** Created : 950429
  7. **
  8. ** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
  9. **
  10. ** This file is part of the kernel module of the Qt GUI Toolkit.
  11. **
  12. ** This file may be distributed under the terms of the Q Public License
  13. ** as defined by Trolltech AS of Norway and appearing in the file
  14. ** LICENSE.QPL included in the packaging of this file.
  15. **
  16. ** This file may be distributed and/or modified under the terms of the
  17. ** GNU General Public License version 2 as published by the Free Software
  18. ** Foundation and appearing in the file LICENSE.GPL included in the
  19. ** packaging of this file.
  20. **
  21. ** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
  22. ** licenses may use this file in accordance with the Qt Commercial License
  23. ** Agreement provided with the Software.
  24. **
  25. ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  26. ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  27. **
  28. ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
  29. **   information about Qt Commercial License Agreements.
  30. ** See http://www.trolltech.com/qpl/ for QPL licensing information.
  31. ** See http://www.trolltech.com/gpl/ for GPL licensing information.
  32. **
  33. ** Contact info@trolltech.com if any conditions of this licensing are
  34. ** not clear to you.
  35. **
  36. **********************************************************************/
  37.  
  38. #ifndef QNETWORKPROTOCOL_H
  39. #define QNETWORKPROTOCOL_H
  40.  
  41. #ifndef QT_H
  42. #include "qurlinfo.h"
  43. #include "qstring.h"
  44. #include "qdict.h"
  45. #include "qobject.h"
  46. #endif // QT_H
  47.  
  48. #ifndef QT_NO_NETWORKPROTOCOL
  49.  
  50. class QNetworkProtocol;
  51. class QNetworkOperation;
  52. class QTimer;
  53. class QUrlOperator;
  54. class QNetworkProtocolPrivate;
  55. template <class T> class QValueList;
  56.  
  57. class Q_EXPORT QNetworkProtocolFactoryBase
  58. {
  59. public:
  60.    virtual QNetworkProtocol *createObject() = 0;
  61.  
  62. };
  63.  
  64. template< class Protocol >
  65. class QNetworkProtocolFactory : public QNetworkProtocolFactoryBase
  66. {
  67. public:
  68.     QNetworkProtocol *createObject() {
  69.     return new Protocol;
  70.     }
  71.  
  72. };
  73.  
  74. typedef QDict< QNetworkProtocolFactoryBase > QNetworkProtocolDict;
  75.  
  76. class Q_EXPORT QNetworkProtocol : public QObject
  77. {
  78.     Q_OBJECT
  79.  
  80. public:
  81.     enum State {
  82.     StWaiting = 0,
  83.     StInProgress,
  84.     StDone,
  85.     StFailed,
  86.     StStopped
  87.     };
  88.  
  89.     enum Operation {
  90.     OpListChildren = 1,
  91.     OpMkDir = 2,
  92.     OpMkdir = OpMkDir, // ### remove in 4.0
  93.     OpRemove = 4,
  94.     OpRename = 8,
  95.     OpGet = 32,
  96.     OpPut = 64
  97.     };
  98.  
  99.     enum ConnectionState {
  100.     ConHostFound,
  101.     ConConnected,
  102.     ConClosed
  103.     };
  104.  
  105.     enum Error {
  106.     // no error
  107.     NoError = 0,
  108.     // general errors
  109.     ErrValid,
  110.     ErrUnknownProtocol,
  111.     ErrUnsupported,
  112.     ErrParse,
  113.     // errors on connect
  114.     ErrLoginIncorrect,
  115.     ErrHostNotFound,
  116.     // protocol errors
  117.     ErrListChildren,
  118.     ErrListChlidren = ErrListChildren, // ### remove in 4.0
  119.     ErrMkDir,
  120.     ErrMkdir = ErrMkDir, // ### remove in 4.0
  121.     ErrRemove,
  122.     ErrRename,
  123.     ErrGet,
  124.     ErrPut,
  125.     ErrFileNotExisting,
  126.     ErrPermissionDenied
  127.     };
  128.  
  129.     QNetworkProtocol();
  130.     virtual ~QNetworkProtocol();
  131.  
  132.     virtual void setUrl( QUrlOperator *u );
  133.  
  134.     virtual void setAutoDelete( bool b, int i = 10000 );
  135.     bool autoDelete() const;
  136.  
  137.     static void registerNetworkProtocol( const QString &protocol,
  138.                      QNetworkProtocolFactoryBase *protocolFactory );
  139.     static QNetworkProtocol *getNetworkProtocol( const QString &protocol );
  140.     static bool hasOnlyLocalFileSystem();
  141.  
  142.     virtual int supportedOperations() const;
  143.     virtual void addOperation( QNetworkOperation *op );
  144.  
  145.     QUrlOperator *url() const;
  146.     QNetworkOperation *operationInProgress() const;
  147.     virtual void clearOperationQueue();
  148.     virtual void stop();
  149.  
  150. signals:
  151.     void data( const QByteArray &, QNetworkOperation *res );
  152.     void connectionStateChanged( int state, const QString &data );
  153.     void finished( QNetworkOperation *res );
  154.     void start( QNetworkOperation *res );
  155.     void newChildren( const QValueList<QUrlInfo> &, QNetworkOperation *res );
  156.     void newChild( const QUrlInfo &, QNetworkOperation *res );
  157.     void createdDirectory( const QUrlInfo &, QNetworkOperation *res );
  158.     void removed( QNetworkOperation *res );
  159.     void itemChanged( QNetworkOperation *res );
  160.     void dataTransferProgress( int bytesDone, int bytesTotal, QNetworkOperation *res );
  161.  
  162. protected:
  163.     virtual void processOperation( QNetworkOperation *op );
  164.     virtual void operationListChildren( QNetworkOperation *op );
  165.     virtual void operationMkDir( QNetworkOperation *op );
  166.     virtual void operationRemove( QNetworkOperation *op );
  167.     virtual void operationRename( QNetworkOperation *op );
  168.     virtual void operationGet( QNetworkOperation *op );
  169.     virtual void operationPut( QNetworkOperation *op );
  170.     virtual void operationPutChunk( QNetworkOperation *op );
  171.     virtual bool checkConnection( QNetworkOperation *op );
  172.  
  173. private:
  174.     QNetworkProtocolPrivate *d;
  175.  
  176. private slots:
  177.     void processNextOperation( QNetworkOperation *old );
  178.     void startOps();
  179.     void emitNewChildren( const QUrlInfo &i, QNetworkOperation *op );
  180.  
  181.     void removeMe();
  182.  
  183. };
  184.  
  185. class QNetworkOperationPrivate;
  186.  
  187. class Q_EXPORT QNetworkOperation : public QObject
  188. {
  189.     Q_OBJECT
  190.     friend class QUrlOperator;
  191.  
  192. public:
  193.     QNetworkOperation( QNetworkProtocol::Operation operation,
  194.             const QString &arg0, const QString &arg1,
  195.             const QString &arg2 );
  196.     QNetworkOperation( QNetworkProtocol::Operation operation,
  197.             const QByteArray &arg0, const QByteArray &arg1,
  198.             const QByteArray &arg2 );
  199.     ~QNetworkOperation();
  200.  
  201.     void setState( QNetworkProtocol::State state );
  202.     void setProtocolDetail( const QString &detail );
  203.     void setErrorCode( int ec );
  204.     void setArg( int num, const QString &arg );
  205.     void setRawArg( int num, const QByteArray &arg );
  206.  
  207.     QNetworkProtocol::Operation operation() const;
  208.     QNetworkProtocol::State state() const;
  209.     QString arg( int num ) const;
  210.     QByteArray rawArg( int num ) const;
  211.     QString protocolDetail() const;
  212.     int errorCode() const;
  213.  
  214.     void free();
  215.  
  216. private slots:
  217.     void deleteMe();
  218.  
  219. private:
  220.     QByteArray &raw( int num ) const;
  221.     QNetworkOperationPrivate *d;
  222.  
  223. };
  224.  
  225. #endif // QT_NO_NETWORKPROTOCOL
  226.  
  227. #endif // QNETWORKPROTOCOL_H
  228.