]> git.mxchange.org Git - simgear.git/blob - simgear/io/HTTPFileRequest.cxx
Remove SVN sync code.
[simgear.git] / simgear / io / HTTPFileRequest.cxx
1 // HTTP request writing response to a file.
2 //
3 // Copyright (C) 2013  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
18
19 #include "HTTPFileRequest.hxx"
20 #include <simgear/debug/logstream.hxx>
21 #include <simgear/misc/sg_path.hxx>
22
23 namespace simgear
24 {
25 namespace HTTP
26 {
27
28   //----------------------------------------------------------------------------
29   FileRequest::FileRequest(const std::string& url, const std::string& path):
30     Request(url, "GET"),
31     _filename(path)
32   {
33
34   }
35
36   //----------------------------------------------------------------------------
37   void FileRequest::responseHeadersComplete()
38   {
39     Request::responseHeadersComplete();
40
41     if( responseCode() != 200 )
42       return setFailure(responseCode(), responseReason());
43
44     if( !_filename.empty() )
45     {
46       // TODO validate path? (would require to expose fgValidatePath somehow to
47       //      simgear)
48       SGPath path(_filename);
49       path.create_dir(0755);
50
51       _file.open(_filename.c_str(), std::ios::binary | std::ios::trunc);
52     }
53
54     if( !_file )
55     {
56       SG_LOG
57       (
58         SG_IO,
59         SG_WARN,
60         "HTTP::FileRequest: failed to open file '" << _filename << "'"
61       );
62     }
63   }
64
65   //----------------------------------------------------------------------------
66   void FileRequest::gotBodyData(const char* s, int n)
67   {
68     if( !_file )
69     {
70       SG_LOG
71       (
72         SG_IO,
73         SG_DEBUG,
74         "HTTP::FileRequest: received data for closed file '" << _filename << "'"
75       );
76       return;
77     }
78
79     _file.write(s, n);
80   }
81
82   //----------------------------------------------------------------------------
83   void FileRequest::onAlways()
84   {
85     _file.close();
86   }
87
88 } // namespace HTTP
89 } // namespace simgear