Fraxinus  16.5.0-fx-rc9
An IGT application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
cxHttpRequestHandler.h
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) 2008-2014, SINTEF Department of Medical Technology
5 All rights reserved.
6 
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9 
10 1. Redistributions of source code must retain the above copyright notice,
11  this list of conditions and the following disclaimer.
12 
13 2. Redistributions in binary form must reproduce the above copyright notice,
14  this list of conditions and the following disclaimer in the documentation
15  and/or other materials provided with the distribution.
16 
17 3. Neither the name of the copyright holder nor the names of its contributors
18  may be used to endorse or promote products derived from this software
19  without specific prior written permission.
20 
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
25 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 =========================================================================*/
32 #ifndef CXHTTPREQUESTHANDLER_H
33 #define CXHTTPREQUESTHANDLER_H
34 
35 #include <QObject>
36 #include "cxVisServices.h"
37 
38 #include "org_custusx_webserver_Export.h"
39 
40 class QHttpRequest;
41 class QHttpResponse;
42 
43 namespace cx
44 {
45 typedef boost::shared_ptr<class RemoteAPI> RemoteAPIPtr;
46 
50 class org_custusx_webserver_EXPORT HttpRequestHandler : public QObject
51 {
52  Q_OBJECT
53 public:
55 public slots:
56  void handle_request(QHttpRequest *req, QHttpResponse *resp);
57 
58 protected:
59  void handle_complete_request(QHttpRequest *req, QHttpResponse *resp);
60  void process_mainpage(QHttpRequest *req, QHttpResponse *resp);
61 
62  void handle_screen(QHttpRequest *req, QHttpResponse *resp);
63  void process_screen(QHttpRequest *req, QHttpResponse *resp);
64 
65  void handle_layout(QHttpRequest *req, QHttpResponse *resp);
66  void process_display(QHttpRequest *req, QHttpResponse *resp);
67  void process_stream(QHttpRequest *req, QHttpResponse *resp);
68  void process_layout(QHttpRequest *req, QHttpResponse *resp);
69 
70  void reply_mainpage(QHttpResponse *resp);
71  void reply_screenshot(QHttpResponse *resp);
72  void reply_notfound(QHttpResponse *resp);
73  void reply_method_not_allowed(QHttpResponse *resp);
74  void reply_layout_list(QHttpResponse *resp);
75  void get_display_image(QHttpResponse *resp);
76  void create_display(QHttpRequest *req, QHttpResponse *resp);
77  void delete_display(QHttpResponse *resp);
78  virtual void create_stream(QHttpRequest *req, QHttpResponse *resp);
79  virtual void delete_stream(QHttpResponse *resp);
80 
81  virtual QString getAdditionalMainPageDescription() const { return ""; }
82 
83 protected:
85 
86 private slots:
87  void onRequestSuccessful();
88 private:
89  struct RequestType
90  {
91  RequestType(QHttpRequest *req_, QHttpResponse *resp_) : req(req_), resp(resp_) {}
92  QHttpRequest *req;
93  QHttpResponse *resp;
94  };
95  QList<RequestType> mRequests;
96 
97 
98  QByteArray generatePNGEncoding(QImage image);
99 
100 };
101 
102 } // namespace cx
103 
104 #endif // CXHTTPREQUESTHANDLER_H
virtual QString getAdditionalMainPageDescription() const
boost::shared_ptr< class RemoteAPI > RemoteAPIPtr