]> git.mxchange.org Git - simgear.git/blob - simgear/io/SVNRepository.cxx
HTTP SVN fixes, cap max update-report depth.
[simgear.git] / simgear / io / SVNRepository.cxx
1 // DAVMirrorTree -- mirror a DAV tree to the local file-system
2 //
3 // Copyright (C) 2012  James Turner <zakalawe@mac.com>
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18
19 #include "SVNRepository.hxx"
20
21 #include <iostream>
22 #include <cstring>
23 #include <cassert>
24 #include <algorithm>
25 #include <sstream>
26 #include <map>
27 #include <set>
28 #include <fstream>
29
30 #include <boost/foreach.hpp>
31
32 #include "simgear/debug/logstream.hxx"
33 #include "simgear/misc/strutils.hxx"
34 #include <simgear/misc/sg_dir.hxx>
35 #include <simgear/io/HTTPClient.hxx>
36 #include <simgear/io/DAVMultiStatus.hxx>
37 #include <simgear/io/SVNDirectory.hxx>
38 #include <simgear/io/sg_file.hxx>
39 #include <simgear/io/SVNReportParser.hxx>
40
41 using std::cout;
42 using std::cerr;
43 using std::endl;
44 using std::string;
45
46 namespace simgear
47 {
48
49 typedef std::vector<HTTP::Request_ptr> RequestVector;
50
51 class SVNRepoPrivate
52 {
53 public:
54     SVNRepoPrivate(SVNRepository* parent) : 
55         p(parent), 
56         isUpdating(false),
57         status(SVNRepository::SVN_NO_ERROR)
58     { ; }
59     
60     SVNRepository* p; // link back to outer
61     SVNDirectory* rootCollection;
62     HTTP::Client* http;
63     std::string baseUrl;
64     std::string vccUrl;
65     std::string targetRevision;
66     bool isUpdating;
67     SVNRepository::ResultCode status;
68     
69     void svnUpdateDone()
70     {
71         isUpdating = false;
72     }
73     
74     void updateFailed(HTTP::Request* req, SVNRepository::ResultCode err)
75     {
76         SG_LOG(SG_IO, SG_WARN, "SVN: failed to update from:" << req->url());
77         isUpdating = false;
78         status = err;
79     }
80       
81     void propFindComplete(HTTP::Request* req, DAVCollection* col);
82     void propFindFailed(HTTP::Request* req, SVNRepository::ResultCode err);
83 };
84
85
86 namespace { // anonmouse
87     
88     string makeAbsoluteUrl(const string& url, const string& base)
89     {
90       if (strutils::starts_with(url, "http://"))
91         return url; // already absolute
92   
93       assert(strutils::starts_with(base, "http://"));
94       int schemeEnd = base.find("://");
95       int hostEnd = base.find('/', schemeEnd + 3);
96       if (hostEnd < 0) {
97         return url;
98       }
99   
100       return base.substr(0, hostEnd) + url;
101     }
102     
103     // keep the responses small by only requesting the properties we actually
104     // care about; the ETag, length and MD5-sum
105     const char* PROPFIND_REQUEST_BODY =
106       "<?xml version=\"1.0\" encoding=\"utf-8\" ?>"
107       "<D:propfind xmlns:D=\"DAV:\">"
108       "<D:prop xmlns:R=\"http://subversion.tigris.org/xmlns/dav/\">"
109       "<D:resourcetype/>"
110       "<D:version-name/>"
111       "<D:version-controlled-configuration/>"
112       "</D:prop>"
113       "</D:propfind>";
114
115     class PropFindRequest : public HTTP::Request
116     {
117     public:
118       PropFindRequest(SVNRepoPrivate* repo) :
119         Request(repo->baseUrl, "PROPFIND"),
120         _repo(repo)
121       {
122       }
123   
124       virtual string_list requestHeaders() const
125       {
126         string_list r;
127         r.push_back("Depth");
128         return r;
129       }
130   
131       virtual string header(const string& name) const
132       {
133           if (name == "Depth") {
134               return "0";
135           }
136           
137           return string();
138       }
139   
140       virtual string requestBodyType() const
141       {
142           return "application/xml; charset=\"utf-8\"";
143       }
144   
145       virtual int requestBodyLength() const
146       {
147         return strlen(PROPFIND_REQUEST_BODY);
148       }
149   
150       virtual int getBodyData(char* buf, int count) const
151       {
152         int bodyLen = strlen(PROPFIND_REQUEST_BODY);
153         assert(count >= bodyLen);
154         memcpy(buf, PROPFIND_REQUEST_BODY, bodyLen);
155         return bodyLen;
156       }
157
158     protected:
159       virtual void responseHeadersComplete()
160       {
161         if (responseCode() == 207) {
162             // fine
163         } else if (responseCode() == 404) {
164             _repo->propFindFailed(this, SVNRepository::SVN_ERROR_NOT_FOUND);
165         } else {
166             SG_LOG(SG_IO, SG_WARN, "request for:" << url() << 
167                 " return code " << responseCode());
168             _repo->propFindFailed(this, SVNRepository::SVN_ERROR_SOCKET);
169         }
170       }
171   
172       virtual void responseComplete()
173       {
174         if (responseCode() == 207) {
175           _davStatus.finishParse();
176           _repo->propFindComplete(this, (DAVCollection*) _davStatus.resource());
177         }
178       }
179   
180       virtual void gotBodyData(const char* s, int n)
181       {
182         if (responseCode() != 207) {
183           return;
184         }
185         _davStatus.parseXML(s, n);
186       }
187         
188         virtual void failed()
189         {
190             HTTP::Request::failed();
191             _repo->propFindFailed(this, SVNRepository::SVN_ERROR_SOCKET);
192         }
193         
194     private:
195       SVNRepoPrivate* _repo;
196       DAVMultiStatus _davStatus;
197     };
198
199 class UpdateReportRequest : public HTTP::Request
200 {
201 public:
202   UpdateReportRequest(SVNRepoPrivate* repo, 
203       const std::string& aVersionName,
204       bool startEmpty) :
205     HTTP::Request("", "REPORT"),
206     _requestSent(0),
207     _parser(repo->p),
208     _repo(repo),
209     _failed(false)
210   {       
211     setUrl(repo->vccUrl);
212
213     _request =
214     "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n"
215     "<S:update-report send-all=\"true\" xmlns:S=\"svn:\">\n"
216     "<S:src-path>" + repo->baseUrl + "</S:src-path>\n"
217     "<S:depth>unknown</S:depth>\n";
218
219     _request += "<S:entry rev=\"" + aVersionName + "\" depth=\"infinity\" start-empty=\"true\"/>\n";
220      
221     if (!startEmpty) {
222         string_list entries;
223         _repo->rootCollection->mergeUpdateReportDetails(0, entries);
224         BOOST_FOREACH(string e, entries) {
225             _request += e + "\n";
226         }
227     }
228
229     _request += "</S:update-report>";   
230   }
231
232   virtual string requestBodyType() const
233   {
234     return "application/xml; charset=\"utf-8\"";
235   }
236
237   virtual int requestBodyLength() const
238   {
239     return _request.size();
240   }
241
242   virtual int getBodyData(char* buf, int count) const
243   {
244     int len = std::min(count, requestBodyLength() - _requestSent);
245     memcpy(buf, _request.c_str() + _requestSent, len);
246     _requestSent += len;
247     return len;
248   }
249
250 protected:
251   virtual void responseHeadersComplete()
252   {
253
254   }
255
256   virtual void responseComplete()
257   {
258       if (_failed) {
259           return;
260       }
261       
262     if (responseCode() == 200) {
263           SVNRepository::ResultCode err = _parser.finishParse();
264           if (err) {
265               _repo->updateFailed(this, err);
266               _failed = true;
267           } else {
268               _repo->svnUpdateDone();
269           }
270     } else if (responseCode() == 404) {
271         _repo->updateFailed(this, SVNRepository::SVN_ERROR_NOT_FOUND);
272         _failed = true;
273     } else {
274         SG_LOG(SG_IO, SG_WARN, "SVN: request for:" << url() <<
275         " return code " << responseCode());
276         _repo->updateFailed(this, SVNRepository::SVN_ERROR_SOCKET);
277         _failed = true;
278     }
279   }
280
281   virtual void gotBodyData(const char* s, int n)
282   {    
283       if (_failed) {
284           return;
285       }
286       
287     if (responseCode() != 200) {
288         return;
289     }
290     
291     //cout << "body data:" << string(s, n) << endl;
292     SVNRepository::ResultCode err = _parser.parseXML(s, n);
293     if (err) {
294         _failed = true;
295         SG_LOG(SG_IO, SG_WARN, "SVN: request for:" << url() <<
296             " XML parse failed");
297         _repo->updateFailed(this, err);
298     }
299   }
300
301     virtual void failed()
302     {
303         HTTP::Request::failed();
304         _repo->updateFailed(this, SVNRepository::SVN_ERROR_SOCKET);
305     }
306 private:
307   string _request;
308   mutable int _requestSent;
309   SVNReportParser _parser;
310   SVNRepoPrivate* _repo;
311   bool _failed;
312 };
313         
314 } // anonymous 
315
316 SVNRepository::SVNRepository(const SGPath& base, HTTP::Client *cl) :
317   _d(new SVNRepoPrivate(this))
318 {
319   _d->http = cl;
320   _d->rootCollection = new SVNDirectory(this, base);
321   _d->baseUrl = _d->rootCollection->url();  
322 }
323
324 SVNRepository::~SVNRepository()
325 {
326     delete _d->rootCollection;
327 }
328
329 void SVNRepository::setBaseUrl(const std::string &url)
330 {
331   _d->baseUrl = url;
332   _d->rootCollection->setBaseUrl(url);
333 }
334
335 std::string SVNRepository::baseUrl() const
336 {
337   return _d->baseUrl;
338 }
339
340 HTTP::Client* SVNRepository::http() const
341 {
342   return _d->http;
343 }
344
345 SGPath SVNRepository::fsBase() const
346 {
347   return _d->rootCollection->fsPath();
348 }
349
350 bool SVNRepository::isBare() const
351 {
352     if (!fsBase().exists() || Dir(fsBase()).isEmpty()) {
353         return true;
354     }
355     
356     if (_d->vccUrl.empty()) {
357         return true;
358     }
359     
360     return false;
361 }
362
363 void SVNRepository::update()
364 {  
365     _d->status = SVN_NO_ERROR;
366     if (_d->targetRevision.empty() || _d->vccUrl.empty()) {        
367         _d->isUpdating = true;        
368         PropFindRequest* pfr = new PropFindRequest(_d.get());
369         http()->makeRequest(pfr);
370         return;
371     }
372         
373     if (_d->targetRevision == rootDir()->cachedRevision()) {
374         SG_LOG(SG_IO, SG_DEBUG, baseUrl() << " in sync at version " << _d->targetRevision);
375         _d->isUpdating = false;
376         return;
377     }
378     
379     _d->isUpdating = true;
380     UpdateReportRequest* urr = new UpdateReportRequest(_d.get(), 
381         _d->targetRevision, isBare());
382     http()->makeRequest(urr);
383 }
384   
385 bool SVNRepository::isDoingSync() const
386 {
387     if (_d->status != SVN_NO_ERROR) {
388         return false;
389     }
390     
391     return _d->isUpdating || _d->rootCollection->isDoingSync();
392 }
393
394 SVNDirectory* SVNRepository::rootDir() const
395 {
396     return _d->rootCollection;
397 }
398
399 SVNRepository::ResultCode
400 SVNRepository::failure() const
401 {
402     return _d->status;
403 }
404
405 ///////////////////////////////////////////////////////////////////////////
406
407 void SVNRepoPrivate::propFindComplete(HTTP::Request* req, DAVCollection* c)
408 {
409     targetRevision = c->versionName();
410     vccUrl = makeAbsoluteUrl(c->versionControlledConfiguration(), baseUrl);
411     rootCollection->collection()->setVersionControlledConfiguration(vccUrl);    
412     p->update();
413 }
414   
415 void SVNRepoPrivate::propFindFailed(HTTP::Request *req, SVNRepository::ResultCode err)
416 {
417     if (err != SVNRepository::SVN_ERROR_NOT_FOUND) {
418         SG_LOG(SG_IO, SG_WARN, "PropFind failed for:" << req->url());
419     }
420     
421     isUpdating = false;
422     status = err;
423 }
424
425 } // of namespace simgear