1 // terrasync.cxx -- "JIT" scenery fetcher
3 // Written by Curtis Olson, started November 2002.
5 // Copyright (C) 2002 Curtis L. Olson - http://www.flightgear.org/~curt
6 // Copyright (C) 2008 Alexander R. Perry <alex.perry@ieee.org>
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
35 #elif defined(_MSC_VER)
37 # ifndef HAVE_SVN_CLIENT_H
43 #include <stdlib.h> // atoi() atof() abs() system()
44 #include <signal.h> // signal()
46 #include <simgear/compiler.h>
54 #include <simgear/io/raw_socket.hxx>
55 #include <simgear/bucket/newbucket.hxx>
56 #include <simgear/misc/sg_path.hxx>
58 #ifdef HAVE_SVN_CLIENT_H
59 # ifdef HAVE_LIBSVN_CLIENT_1
60 # include <svn_auth.h>
61 # include <svn_client.h>
62 # include <svn_cmdline.h>
63 # include <svn_pools.h>
65 # undef HAVE_SVN_CLIENT_H
71 const char* source_base = NULL;
72 const char* svn_base =
73 "http://terrascenery.googlecode.com/svn/trunk/data/Scenery";
74 const char* rsync_base = "scenery.flightgear.org::Scenery";
75 const char* dest_base = "terrasyncdir";
76 const char* rsync_cmd =
77 "rsync --verbose --archive --delete --perms --owner --group";
79 #ifdef HAVE_SVN_CLIENT_H
83 const char* svn_cmd = "svn checkout";
87 static void usage( const string& prog ) {
89 "Usage: terrasync [options]\n"
91 " -d <dest> destination directory [required]\n"
92 " -R transport using pipe to rsync\n"
93 " -S transport using built-in svn\n"
94 " -p <port> listen on UDP port [default: 5501]\n"
95 " -s <source> source base [default: '']\n"
96 " -pid <pidfile> write PID to file\n"
97 " -v be more verbose\n"
100 #ifdef HAVE_SVN_CLIENT_H
101 cout << " (defaults to the built in subversion)" << endl;
103 cout << " (defaults to rsync, using external commands)" << endl;
106 cout << "\nExample:\n"
107 "pid=$(cat $pidfile 2>/dev/null)\n"
108 "if test -n \"$pid\" && kill -0 $pid ; then\n"
109 " echo \"terrasync already running: $pid\"\n"
111 " nice /games/sport/fgs/utils/TerraSync/terrasync \\\n"
112 " -v -pid $pidfile -S -p 5500 -d /games/orig/terrasync &\n"
117 deque<string> waitingTiles;
118 typedef map<string,time_t> CompletedTiles;
119 CompletedTiles completedTiles;
120 simgear::Socket theSocket;
122 #ifdef HAVE_SVN_CLIENT_H
124 // Things we need for doing subversion checkout - often
125 apr_pool_t *mysvn_pool = NULL;
126 svn_client_ctx_t *mysvn_ctx = NULL;
127 svn_opt_revision_t *mysvn_rev = NULL;
128 svn_opt_revision_t *mysvn_rev_peg = NULL;
130 static const svn_version_checklist_t mysvn_checklist[] = {
131 { "svn_subr", svn_subr_version },
132 { "svn_client", svn_client_version },
136 // Configure our subversion session
137 int mysvn_setup(void) {
138 // Are we already prepared?
139 if (mysvn_pool) return EXIT_SUCCESS;
140 // No, so initialize svn internals generally
142 // there is a segfault when providing an error stream.
143 // Apparently, calling setvbuf with a nul buffer is
144 // not supported under msvc 7.1 ( code inside svn_cmdline_init )
145 if (svn_cmdline_init("terrasync", 0) != EXIT_SUCCESS)
148 if (svn_cmdline_init("terrasync", stderr) != EXIT_SUCCESS)
152 apr_pool_create(&pool, NULL);
153 svn_error_t *err = NULL;
154 SVN_VERSION_DEFINE(mysvn_version);
155 err = svn_ver_check_list(&mysvn_version, mysvn_checklist);
157 return svn_cmdline_handle_exit_error(err, pool, "terrasync: ");
158 err = svn_ra_initialize(pool);
160 return svn_cmdline_handle_exit_error(err, pool, "terrasync: ");
161 char *config_dir = NULL;
162 err = svn_config_ensure(config_dir, pool);
164 return svn_cmdline_handle_exit_error(err, pool, "terrasync: ");
165 err = svn_client_create_context(&mysvn_ctx, pool);
167 return svn_cmdline_handle_exit_error(err, pool, "terrasync: ");
168 err = svn_config_get_config(&(mysvn_ctx->config),
171 return svn_cmdline_handle_exit_error(err, pool, "terrasync: ");
173 cfg = ( svn_config_t*) apr_hash_get(
175 SVN_CONFIG_CATEGORY_CONFIG,
176 APR_HASH_KEY_STRING);
178 return svn_cmdline_handle_exit_error(err, pool, "terrasync: ");
179 svn_auth_baton_t *ab;
180 err = svn_cmdline_setup_auth_baton(&ab,
181 TRUE, NULL, NULL, config_dir, TRUE, cfg,
182 mysvn_ctx->cancel_func, mysvn_ctx->cancel_baton, pool);
184 return svn_cmdline_handle_exit_error(err, pool, "terrasync: ");
185 mysvn_ctx->auth_baton = ab;
186 mysvn_ctx->conflict_func = NULL;
187 mysvn_ctx->conflict_baton = NULL;
188 // Now our magic revisions
189 mysvn_rev = (svn_opt_revision_t*) apr_palloc(pool,
190 sizeof(svn_opt_revision_t));
193 mysvn_rev_peg = (svn_opt_revision_t*) apr_palloc(pool,
194 sizeof(svn_opt_revision_t));
197 mysvn_rev->kind = svn_opt_revision_head;
198 mysvn_rev_peg->kind = svn_opt_revision_unspecified;
199 // Success if we got this far
206 // sync one directory tree
207 void sync_tree(const char* dir) {
210 SGPath path( dest_base );
213 rc = path.create_dir( 0755 );
215 cout << "Return code = " << rc << endl;
220 #ifdef HAVE_SVN_CLIENT_H
221 cout << dir << " ... ";
223 char dest_base_dir[512];
224 snprintf( command, 512,
225 "%s/%s", source_base, dir);
226 snprintf( dest_base_dir, 512,
227 "%s/%s", dest_base, dir);
228 svn_error_t *err = NULL;
229 if (mysvn_setup() != EXIT_SUCCESS)
231 apr_pool_t *subpool = svn_pool_create(mysvn_pool);
233 #if (SVN_VER_MINOR >= 5)
234 err = svn_client_checkout3(NULL,
240 0, // ignore-externals = false
241 0, // allow unver obstructions = false
246 err = svn_client_checkout2(NULL,
251 1, // recurse=true - same as svn_depth_infinity for checkout3 above
252 0, // ignore externals = false
258 // Report errors from the checkout attempt
259 cout << "failed: " << endl
260 << err->message << endl;
261 svn_error_clear(err);
264 cout << "done" << endl;
266 svn_pool_destroy(subpool);
270 snprintf( command, 512,
271 "%s %s/%s %s/%s", svn_cmd,
276 snprintf( command, 512,
277 "%s %s/%s/ %s/%s/", rsync_cmd,
281 cout << command << endl;
282 rc = system( command );
284 cout << "Return code = " << rc << endl;
285 if (rc == 5120) exit(1);
289 #if defined(_MSC_VER) || defined(__MINGW32__)
290 typedef void (__cdecl * sighandler_t)(int);
291 #elif defined( __APPLE__ )
292 typedef sig_t sighandler_t;
295 bool terminating = false;
296 sighandler_t prior_signal_handlers[32];
297 int termination_triggering_signals[] = {
298 #if defined(_MSC_VER) || defined(__MINGW32__)
299 SIGINT, SIGILL, SIGFPE, SIGSEGV, SIGTERM, SIGBREAK, SIGABRT,
301 SIGHUP, SIGINT, SIGQUIT, SIGKILL, SIGTERM,
303 0}; // zero terminated
305 void terminate_request_handler(int param) {
306 char msg[] = "\nReceived signal XX, intend to exit soon.\n"
307 "repeat the signal to force immediate termination.\n";
308 msg[17] = '0' + param / 10;
309 msg[18] = '0' + param % 10;
310 write(1, msg, sizeof(msg) - 1);
312 signal(param, prior_signal_handlers[param]);
317 const int nowhere = -9999;
321 static void parse_message( const string &msg, int *lat, int *lon ) {
325 // find GGA string and advance to start of lat
326 string::size_type pos = text.find( "$GPGGA" );
327 if ( pos == string::npos )
333 string tmp = text.substr( pos + 7 );
334 pos = tmp.find( "," );
335 tmp = tmp.substr( pos + 1 );
336 // cout << "-> " << tmp << endl;
338 // find lat then advance to start of hemisphere
339 pos = tmp.find( "," );
340 string lats = tmp.substr( 0, pos );
341 dlat = atof( lats.c_str() ) / 100.0;
342 tmp = tmp.substr( pos + 1 );
344 // find N/S hemisphere and advance to start of lon
345 if ( tmp.substr( 0, 1 ) == "S" ) {
348 pos = tmp.find( "," );
349 tmp = tmp.substr( pos + 1 );
352 pos = tmp.find( "," );
353 string lons = tmp.substr( 0, pos );
354 dlon = atof( lons.c_str() ) / 100.0;
355 tmp = tmp.substr( pos + 1 );
357 // find E/W hemisphere and advance to start of lon
358 if ( tmp.substr( 0, 1 ) == "W" ) {
363 *lat = (int)dlat - 1;
369 *lon = (int)dlon - 1;
374 if ((dlon == 0) && (dlat == 0)) {
382 static void sync_area( int lat, int lon ) {
383 if ( lat < -90 || lat > 90 || lon < -180 || lon > 180 )
386 int baselat, baselon;
389 int base = (int)(lat / 10);
390 if ( lat == base * 10 ) {
393 baselat = (base - 1) * 10;
397 baselat = (int)(lat / 10) * 10;
401 int base = (int)(lon / 10);
402 if ( lon == base * 10 ) {
405 baselon = (base - 1) * 10;
409 baselon = (int)(lon / 10) * 10;
413 const char* terrainobjects[3] = { "Terrain", "Objects", 0 };
415 for (const char** tree = &terrainobjects[0]; *tree; tree++) {
417 snprintf( dir, 512, "%s/%c%03d%c%02d/%c%03d%c%02d",
419 EW, abs(baselon), NS, abs(baselat),
420 EW, abs(lon), NS, abs(lat) );
421 waitingTiles.push_back( dir );
427 static void sync_areas( int lat, int lon, int lat_dir, int lon_dir ) {
428 // do current 1x1 degree area first
429 sync_area( lat, lon );
431 if ( lat_dir == 0 && lon_dir == 0 ) {
432 // now do surrounding 8 1x1 degree areas.
433 for ( int i = lat - 1; i <= lat + 1; ++i ) {
434 for ( int j = lon - 1; j <= lon + 1; ++j ) {
435 if ( i != lat || j != lon ) {
441 if ( lat_dir != 0 ) {
442 sync_area( lat + lat_dir, lon );
443 sync_area( lat + lat_dir, lon - 1 );
444 sync_area( lat + lat_dir, lon + 1 );
446 if ( lon_dir != 0 ) {
447 sync_area( lat, lon + lon_dir );
448 sync_area( lat - 1, lon + lon_dir );
449 sync_area( lat + 1, lon + lon_dir );
454 void getWaitingTile() {
455 while ( !waitingTiles.empty() ) {
456 CompletedTiles::iterator ii =
457 completedTiles.find( waitingTiles.front() );
458 time_t now = time(0);
459 if ( ii == completedTiles.end() || ii->second + 600 < now ) {
460 sync_tree(waitingTiles.front().c_str());
461 completedTiles[ waitingTiles.front() ] = now;
462 waitingTiles.pop_front();
465 waitingTiles.pop_front();
469 int main( int argc, char **argv ) {
471 char host[256] = "localhost";
472 bool testing = false;
473 bool do_checkout(true);
475 const char* pidfn = "";
480 if ( (string)argv[i] == "-p" ) {
482 port = atoi( argv[i] );
483 } else if ( string(argv[i]).find("-pid") == 0 ) {
486 cout << "pidfn: " << pidfn << endl;
487 } else if ( (string)argv[i] == "-s" ) {
489 source_base = argv[i];
490 } else if ( (string)argv[i] == "-d" ) {
493 } else if ( (string)argv[i] == "-R" ) {
495 } else if ( (string)argv[i] == "-S" ) {
497 } else if ( (string)argv[i] == "-v" ) {
499 } else if ( (string)argv[i] == "-T" ) {
501 } else if ( (string)argv[i] == "-h" ) {
505 cerr << "Unrecognized verbiage '" << argv[i] << "'" << endl;
514 pidstream.open(pidfn);
515 if (!pidstream.good()) {
516 cerr << "Cannot open pid file '" << pidfn << "': ";
520 pidstream << getpid() << endl;
524 // Use the appropriate default for the "-s" flag
525 if (source_base == NULL) {
527 source_base = svn_base;
529 source_base = rsync_base;
532 // Must call this before any other net stuff
533 simgear::Socket::initSockets();
535 if ( ! theSocket.open( false ) ) { // open a UDP socket
536 printf("error opening socket\n");
540 if ( theSocket.bind( host, port ) == -1 ) {
541 printf("error binding to port %d\n", port);
549 int last_lat = nowhere;
550 int last_lon = nowhere;
551 bool recv_msg = false;
555 for ( synced_other = 'K'; synced_other <= 'Z'; synced_other++ ) {
557 snprintf( dir, 512, "Airports/%c", synced_other );
558 waitingTiles.push_back( dir );
560 for ( synced_other = 'A'; synced_other <= 'J'; synced_other++ ) {
562 snprintf( dir, 512, "Airports/%c", synced_other );
563 waitingTiles.push_back( dir );
566 waitingTiles.push_back( "Models" );
571 for (int* sigp=termination_triggering_signals; *sigp; sigp++) {
572 prior_signal_handlers[*sigp] =
573 signal(*sigp, *terminate_request_handler);
574 if (verbose) cout << "Intercepted signal " << *sigp << endl;
577 while ( !terminating ) {
581 // No FGFS communications
584 recv_msg = (lat != last_lat) || (lon != last_lon);
586 if (verbose && waitingTiles.empty()) {
587 cout << "Idle; waiting for FlightGear position\n";
589 theSocket.setBlocking(waitingTiles.empty());
590 len = theSocket.recv(msg, maxlen, 0);
594 if (verbose) cout << "recv length: " << len << endl;
595 parse_message( msg, &lat, &lon );
600 // Ignore messages where the location does not change
601 if ( lat != last_lat || lon != last_lon ) {
602 cout << "pos in msg = " << lat << "," << lon << endl;
603 deque<string> oldRequests;
604 oldRequests.swap( waitingTiles );
605 int lat_dir, lon_dir, dist;
606 if ( last_lat == nowhere || last_lon == nowhere ) {
607 lat_dir = lon_dir = 0;
609 dist = lat - last_lat;
611 lat_dir = dist / abs(dist);
615 dist = lon - last_lon;
617 lon_dir = dist / abs(dist);
622 cout << "lat = " << lat << " lon = " << lon << endl;
623 cout << "lat_dir = " << lat_dir << " "
624 << "lon_dir = " << lon_dir << endl;
625 sync_areas( lat, lon, lat_dir, lon_dir );
626 while ( !oldRequests.empty() ) {
627 waitingTiles.push_back( oldRequests.front() );
628 oldRequests.pop_front();
635 // No messages inbound, so process some pending work
636 else if ( !waitingTiles.empty() ) {
640 else if ( testing ) {
649 } // while !terminating