/thirdparty/qxt/qxtweb-standalone/qxtweb/qxtwebcgiservice_p.h

http://github.com/tomahawk-player/tomahawk · C Header · 71 lines · 39 code · 8 blank · 24 comment · 0 complexity · 02a68561936730ec4b70011c22928bed MD5 · raw file

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) Qxt Foundation. Some rights reserved.
  4. **
  5. ** This file is part of the QxtWeb module of the Qxt library.
  6. **
  7. ** This library is free software; you can redistribute it and/or modify it
  8. ** under the terms of the Common Public License, version 1.0, as published
  9. ** by IBM, and/or under the terms of the GNU Lesser General Public License,
  10. ** version 2.1, as published by the Free Software Foundation.
  11. **
  12. ** This file is provided "AS IS", without WARRANTIES OR CONDITIONS OF ANY
  13. ** KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY
  14. ** WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR
  15. ** FITNESS FOR A PARTICULAR PURPOSE.
  16. **
  17. ** You should have received a copy of the CPL and the LGPL along with this
  18. ** file. See the LICENSE file and the cpl1.0.txt/lgpl-2.1.txt files
  19. ** included with the source distribution for more information.
  20. ** If you did not receive a copy of the licenses, contact the Qxt Foundation.
  21. **
  22. ** <http://libqxt.org> <foundation@libqxt.org>
  23. **
  24. ****************************************************************************/
  25. #ifndef QXTWEBCGISERVICE_P_H
  26. #define QXTWEBCGISERVICE_P_H
  27. #include "qxtwebcgiservice.h"
  28. #include <QString>
  29. #include <QHash>
  30. #include <QPair>
  31. #include <QTimer>
  32. #include <QSignalMapper>
  33. #ifndef QXT_DOXYGEN_RUN
  34. QT_FORWARD_DECLARE_CLASS(QProcess)
  35. class QxtWebContent;
  36. struct QxtCgiRequestInfo
  37. {
  38. QxtCgiRequestInfo();
  39. QxtCgiRequestInfo(QxtWebRequestEvent* req);
  40. int sessionID, requestID;
  41. QHash<QString, QString> headers;
  42. bool eventSent, terminateSent;
  43. QTimer* timeout;
  44. };
  45. class QxtWebCgiServicePrivate : public QObject, public QxtPrivate<QxtWebCgiService>
  46. {
  47. Q_OBJECT
  48. public:
  49. QXT_DECLARE_PUBLIC(QxtWebCgiService)
  50. QHash<QProcess*, QxtCgiRequestInfo> requests;
  51. QHash<QxtWebContent*, QProcess*> processes;
  52. QString binary;
  53. int timeout;
  54. bool timeoutOverride;
  55. QSignalMapper timeoutMapper;
  56. public Q_SLOTS:
  57. void browserReadyRead(QObject* o_content = 0);
  58. void processReadyRead();
  59. void processFinished();
  60. void terminateProcess(QObject* o_process);
  61. };
  62. #endif // QXT_DOXYGEN_RUN
  63. #endif // QXTWEBSERVICEDIRECTORY_P_H