]> git.mxchange.org Git - flightgear.git/blob - src/Network/jpg-httpd.cxx
0cc9ee29fd466737be4f03073090c0981659c1cd
[flightgear.git] / src / Network / jpg-httpd.cxx
1 // httpd.hxx -- FGFS http property manager interface / external script
2 //              and control class
3 //
4 // Written by Curtis Olson, started June 2001.
5 //
6 // Copyright (C) 2001  Curtis L. Olson - http://www.flightgear.org/~curt
7 //
8 // Jpeg Image Support added August 2001
9 //  by Norman Vine - nhv@cape.com
10 //
11 // This program is free software; you can redistribute it and/or
12 // modify it under the terms of the GNU General Public License as
13 // published by the Free Software Foundation; either version 2 of the
14 // License, or (at your option) any later version.
15 //
16 // This program is distributed in the hope that it will be useful, but
17 // WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 // General Public License for more details.
20 //
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24 //
25 // $Id$
26
27
28 #ifdef HAVE_CONFIG_H
29 #  include <config.h>
30 #endif
31
32 #include <simgear/compiler.h>
33
34 #include <stdlib.h>             // atoi() atof()
35
36 #include STL_STRING
37
38 #include <simgear/debug/logstream.hxx>
39 #include <simgear/io/iochannel.hxx>
40 #include <simgear/math/sg_types.hxx>
41 #include <simgear/props/props.hxx>
42
43 #include <Main/fg_props.hxx>
44 #include <Main/globals.hxx>
45
46 #include "jpg-httpd.hxx"
47
48 //[Leidson<]
49 #define __MAX_HTTP_BLOCK_SIZE       4096
50 #define __MAX_STRING_SIZE           2048
51 #define __TIMEOUT_COUNT             5
52 #define __HTTP_GET_STRING           "GET "
53 //[Leidson>]
54
55
56 SG_USING_STD(string);
57
58
59 bool FGJpegHttpd::open() {
60     if ( is_enabled() ) {
61         SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel " 
62                 << "is already in use, ignoring" );
63         return false;
64     }
65
66     imageServer = new HttpdImageServer( port );
67     
68     set_hz( 5 );                // default to processing requests @ 5Hz
69     set_enabled( true );
70
71     return true;
72 }
73
74
75 bool FGJpegHttpd::process() {
76     netChannel::poll();
77
78     return true;
79 }
80
81
82 bool FGJpegHttpd::close() {
83     delete imageServer;
84
85     return true;
86 }
87
88 // Handle http GET requests
89 void HttpdImageChannel :: foundTerminator( void ) {
90
91     closeWhenDone();
92
93     char      szTemp[256];
94     char      szResponse[__MAX_STRING_SIZE];
95     char      *pRequest     = buffer.getData();
96     int       nStep         = 0;
97     int       nBytesSent    = 0;
98     int       nTimeoutCount = 0;
99     int       nBufferCount  = 0;
100     int       nImageLen;
101     int       nBlockSize;
102
103
104     if ( strstr( pRequest, __HTTP_GET_STRING ) != NULL ) {
105         
106         SG_LOG( SG_IO, SG_DEBUG, "<<<<<<<<< HTTP Request : " << pRequest );
107
108         nImageLen  = JpgFactory -> render();
109         nBlockSize = ( nImageLen < __MAX_HTTP_BLOCK_SIZE ? nImageLen : __MAX_HTTP_BLOCK_SIZE );
110
111         if( nImageLen ) {
112             strcpy( szResponse, "HTTP/1.1 200 OK" );
113             strcat( szResponse, getTerminator() );
114             strcat( szResponse, "Content-Type: image/jpeg" );
115             strcat( szResponse, getTerminator() );
116
117             SG_LOG( SG_IO, SG_DEBUG, "info->numbytes = " << nImageLen );
118             sprintf( szTemp, "Content-Length: %d", nImageLen );
119             strcat( szResponse, szTemp );
120
121             strcat( szResponse, getTerminator() );
122             strcat( szResponse, "Connection: close" );
123             strcat( szResponse, getTerminator() );
124             strcat( szResponse, getTerminator() );
125
126             if( getHandle() == -1 )  {
127                 SG_LOG( SG_IO, SG_DEBUG, "<<<<<<<<< Invalid socket handle. Ignoring request.\n" );
128                 buffer.remove();
129                 SG_LOG( SG_IO, SG_DEBUG, "<<<<<<<<< End of image Transmission.\n" );
130                 return;
131             }
132
133             if( send( ( char * ) szResponse, strlen( szResponse ) ) <= 0 )  {
134                 SG_LOG( SG_IO, SG_DEBUG, "<<<<<<<<< Error to send HTTP response. Ignoring request.\n" );
135                 buffer.remove();
136                 SG_LOG( SG_IO, SG_DEBUG, "<<<<<<<<< End of image Transmission.\n" );
137                 return;
138             }
139
140             /*
141              * Send block with size defined by __MAX_HTTP_BLOCK_SIZE
142              */
143             while( nStep <= nImageLen ) {
144                 nBufferCount++;
145
146                 if( getHandle() == -1 )  {
147                     SG_LOG( SG_IO, SG_DEBUG, "<<<<<<<<< Invalid socket handle. Ignoring request.\n" );
148                     break;
149                 }
150
151                 nBytesSent = send( ( char * ) JpgFactory -> data() + nStep, nBlockSize );
152
153                 if( nBytesSent <= 0 )  {
154                     if( nTimeoutCount == __TIMEOUT_COUNT )  {
155                         SG_LOG( SG_IO, SG_DEBUG, "<<<<<<<<< Timeout reached. Exiting before end of image transmission.\n" );
156                         nTimeoutCount = 0;
157                         break;
158                     }
159
160                 SG_LOG( SG_IO, SG_DEBUG, "<<<<<<<<< Zero bytes sent.\n" );
161
162 #ifdef _WIN32
163                 Sleep(1000);
164 #else
165                 sleep(1);
166 #endif
167                 nTimeoutCount++;
168                 continue;
169             }
170
171             SG_LOG( SG_IO, SG_DEBUG, ">>>>>>>>> (" << nBufferCount << ") BLOCK STEP " << nStep << " - IMAGELEN " << nImageLen << " - BLOCKSIZE " << nBlockSize << " - SENT " << nBytesSent );
172
173             /*
174              * Calculate remaining image.
175              */
176             if( ( nStep + nBlockSize ) >= nImageLen ) {
177                 nBlockSize = ( nImageLen - nStep );
178                 nStep += nBlockSize;
179             }
180
181             nStep += nBytesSent;
182             nTimeoutCount = 0;
183 #ifdef _WIN32
184             Sleep(1);
185 #else
186             usleep( 1000 );
187 #endif
188         }
189
190         SG_LOG( SG_IO, SG_DEBUG, "<<<<<<<<< End of image Transmission.\n" );
191
192         } else {
193             SG_LOG( SG_IO, SG_DEBUG, "!!! NO IMAGE !!!  info -> numbytes = " << nImageLen );
194         }
195
196         /*
197          * Release JPEG buffer.
198          */
199         JpgFactory -> destroy();
200     }
201
202     buffer.remove();
203 }