]> git.mxchange.org Git - flightgear.git/blobdiff - src/Environment/environment_ctrl.cxx
Frederic Bouvier:
[flightgear.git] / src / Environment / environment_ctrl.cxx
index 0e0d4dc2cd5ec9f95d85fecc5a97c1ec9e8855ca..7e7c8cdbe2e61cf40c04c6ef468c0c816710cc93 100644 (file)
 #include <stdlib.h>
 #include <algorithm>
 
+#include <simgear/structure/commands.hxx>
 #include <simgear/structure/exception.hxx>
 
+#include <Airports/simple.hxx>
 #include <Main/fg_props.hxx>
+#include <Main/util.hxx>
 
 #include "environment_mgr.hxx"
 #include "environment_ctrl.hxx"
 
 SG_USING_STD(sort);
 
-// FIXME, from options.cxx
-extern void fgSetupWind (double min_hdg, double max_hdg, double speed, double gust);
-
 
 \f
 ////////////////////////////////////////////////////////////////////////
@@ -316,72 +316,120 @@ FGInterpolateEnvironmentCtrl::bucket::operator< (const bucket &b) const
 
 FGMetarEnvironmentCtrl::FGMetarEnvironmentCtrl ()
     : env( new FGInterpolateEnvironmentCtrl ),
-      _icao( strdup( fgGetString("/sim/presets/airport-id") ) )
+      _icao( "" ),
+      search_interval_sec( 60.0 ),        // 1 minute
+      same_station_interval_sec( 900.0 ), // 15 minutes
+      search_elapsed( 9999.0 ),
+      fetch_elapsed( 9999.0 ),
+      proxy_host( fgGetNode("/sim/presets/proxy/host", true) ),
+      proxy_port( fgGetNode("/sim/presets/proxy/port", true) ),
+      proxy_auth( fgGetNode("/sim/presets/proxy/authentication", true) )
+#if defined(ENABLE_THREADS) && ENABLE_THREADS
+      ,_error_dt( 0.0 ),
+      _error_count( 0 )
+#endif
 {
+#if defined(ENABLE_THREADS) && ENABLE_THREADS
+    thread = new MetarThread(this);
+    thread->start();
+#endif // ENABLE_THREADS
 }
 
 FGMetarEnvironmentCtrl::~FGMetarEnvironmentCtrl ()
 {
-    if (_icao) {
-      free(_icao);
-      _icao = NULL;
-    }
+#if defined(ENABLE_THREADS) && ENABLE_THREADS
+   thread->cancel();
+   thread->join();
+#endif // ENABLE_THREADS
 
    delete env;
    env = NULL;
 }
 
 
+// use a "command" to set station temp at station elevation
+static void set_temp_at_altitude( float temp_degc, float altitude_ft ) {
+    SGPropertyNode args;
+    SGPropertyNode *node = args.getNode("temp-degc", 0, true);
+    node->setFloatValue( temp_degc );
+    node = args.getNode("altitude-ft", 0, true);
+    node->setFloatValue( altitude_ft );
+    globals->get_commands()->execute("set-outside-air-temp-degc", &args);
+}
+
+
+static void set_dewpoint_at_altitude( float dewpoint_degc, float altitude_ft ) {
+    SGPropertyNode args;
+    SGPropertyNode *node = args.getNode("dewpoint-degc", 0, true);
+    node->setFloatValue( dewpoint_degc );
+    node = args.getNode("altitude-ft", 0, true);
+    node->setFloatValue( altitude_ft );
+    globals->get_commands()->execute("set-dewpoint-temp-degc", &args);
+}
+
+
 void
-FGMetarEnvironmentCtrl::init ()
+FGMetarEnvironmentCtrl::update_env_config ()
 {
-    if (_icao != NULL) {
-        free(_icao);
-        _icao = NULL;
-    }
-
-    fetch_data(_icao);
     fgSetupWind( fgGetDouble("/environment/metar/base-wind-range-from"),
                  fgGetDouble("/environment/metar/base-wind-range-to"),
                  fgGetDouble("/environment/metar/base-wind-speed-kt"),
                  fgGetDouble("/environment/metar/gust-wind-speed-kt") );
 
-    fgSetDouble("/environment/visibility-m",
-        fgGetDouble("/environment/metar/min-visibility-m"));
-    fgSetDouble("/environment/temperature-degc",
-        fgGetDouble("/environment/metar/temperature-degc"));
-    fgSetDouble("/environment/dewpoint-degc",
-        fgGetDouble("/environment/metar/dewpoint-degc"));
-    fgSetDouble("/environment/pressure-inhg",
-        fgGetDouble("/environment/metar/pressure-inhg"));
-
-    env->init();
+    fgDefaultWeatherValue( "visibility-m",
+                           fgGetDouble("/environment/metar/min-visibility-m") );
+    set_temp_at_altitude( fgGetDouble("/environment/metar/temperature-degc"),
+                          station_elevation_ft );
+    set_dewpoint_at_altitude( fgGetDouble("/environment/metar/dewpoint-degc"),
+                              station_elevation_ft );
+    fgDefaultWeatherValue( "pressure-sea-level-inhg",
+                           fgGetDouble("/environment/metar/pressure-inhg") );
 }
 
 void
-FGMetarEnvironmentCtrl::reinit ()
+FGMetarEnvironmentCtrl::init ()
 {
-    if (_icao != NULL) {
-        free(_icao);
-        _icao = NULL;
+    const SGPropertyNode *longitude
+        = fgGetNode( "/position/longitude-deg", true );
+    const SGPropertyNode *latitude
+        = fgGetNode( "/position/latitude-deg", true );
+
+    bool found_metar = false;
+
+    while ( !found_metar && (_error_count < 3) ) {
+        FGAirport a = globals->get_airports()
+            ->search( longitude->getDoubleValue(),
+                      latitude->getDoubleValue(),
+                      true );
+        FGMetarResult result = fetch_data( a.id );
+        if ( result.m != NULL ) {
+            SG_LOG( SG_GENERAL, SG_INFO, "closest station w/ metar = " << a.id);
+            last_apt = a;
+            _icao = a.id;
+            search_elapsed = 0.0;
+            fetch_elapsed = 0.0;
+            update_metar_properties( result.m );
+            update_env_config();
+            env->init();
+            found_metar = true;
+        } else {
+            // mark as no metar so it doesn't show up in subsequent
+            // searches.
+            SG_LOG( SG_GENERAL, SG_INFO, "no metar at metar = " << a.id );
+            globals->get_airports()->no_metar( a.id );
+        }
     }
+}
 
-    fetch_data(_icao);
-    fgSetupWind( fgGetDouble("/environment/metar/base-wind-range-from"),
-                 fgGetDouble("/environment/metar/base-wind-range-to"),
-                 fgGetDouble("/environment/metar/base-wind-speed-kt"),
-                 fgGetDouble("/environment/metar/gust-wind-speed-kt") );
-
-    fgSetDouble("/environment/visibility-m",
-        fgGetDouble("/environment/metar/min-visibility-m"));
-    fgSetDouble("/environment/pressure-inhg",
-        fgGetDouble("/environment/metar/pressure-inhg"));
+void
+FGMetarEnvironmentCtrl::reinit ()
+{
+    _error_count = 0;
+    _error_dt = 0.0;
 
-    // FIXME: The following seem to egt overriden?
-    fgSetDouble("/environment/temperature-degc",
-        fgGetDouble("/environment/metar/temperature-degc"));
-    fgSetDouble("/environment/dewpoint-degc",
-        fgGetDouble("/environment/metar/dewpoint-degc"));
+#if 0
+    update_env_config();
+#endif
 
     env->reinit();
 }
@@ -389,41 +437,139 @@ FGMetarEnvironmentCtrl::reinit ()
 void
 FGMetarEnvironmentCtrl::update(double delta_time_sec)
 {
+
+    _dt += delta_time_sec;
+    if (_error_count >= 3)
+       return;
+
+    FGMetarResult result;
+
+    static const SGPropertyNode *longitude
+        = fgGetNode( "/position/longitude-deg", true );
+    static const SGPropertyNode *latitude
+        = fgGetNode( "/position/latitude-deg", true );
+    search_elapsed += delta_time_sec;
+    fetch_elapsed += delta_time_sec;
+
+    // if time for a new search request, push it onto the request
+    // queue
+    if ( search_elapsed > search_interval_sec ) {
+        FGAirport a = globals->get_airports()
+            ->search( longitude->getDoubleValue(),
+                      latitude->getDoubleValue(),
+                      true );
+        if ( last_apt.id != a.id
+             || fetch_elapsed > same_station_interval_sec )
+        {
+            SG_LOG( SG_GENERAL, SG_INFO, "closest station w/ metar = " << a.id);
+            request_queue.push( a.id );
+            last_apt = a;
+            _icao = a.id;
+            search_elapsed = 0.0;
+            fetch_elapsed = 0.0;
+        } else {
+            search_elapsed = 0.0;
+            SG_LOG( SG_GENERAL, SG_INFO, "same station, waiting = "
+                 << same_station_interval_sec - fetch_elapsed );
+        }
+    }
+
+#if defined(ENABLE_THREADS) && ENABLE_THREADS
+    // No loader thread running so manually fetch the data
+    string id = "";
+    while ( !request_queue.empty() ) {
+        id = request_queue.front();
+        request_queue.pop();
+    }
+
+    if ( !id.empty() ) {
+        SG_LOG( SG_GENERAL, SG_INFO, "inline fetching = " << id );
+        result = fetch_data( id );
+        result_queue.push( result );
+    }
+#endif // ENABLE_THREADS
+
+    // process any results from the loader.
+    while ( !result_queue.empty() ) {
+        result = result_queue.front();
+        result_queue.pop();
+        if ( result.m != NULL ) {
+            update_metar_properties( result.m );
+            delete result.m;
+            update_env_config();
+            env->reinit();
+        } else {
+            // mark as no metar so it doesn't show up in subsequent
+            // searches, and signal an immediate re-search.
+            SG_LOG( SG_GENERAL, SG_WARN,
+                    "no metar at station = " << result.icao );
+            globals->get_airports()->no_metar( result.icao );
+            search_elapsed = 9999.0;
+        }
+    }
+
     env->update(delta_time_sec);
 }
 
+
 void
 FGMetarEnvironmentCtrl::setEnvironment (FGEnvironment * environment)
 {
     env->setEnvironment(environment);
 }
 
-void
-FGMetarEnvironmentCtrl::fetch_data (const char *icao)
+FGMetarResult
+FGMetarEnvironmentCtrl::fetch_data( const string &icao )
 {
-    char s[128];
-    double d, dt;
-    int i;
+    FGMetarResult result;
+    result.icao = icao;
 
-    if ((icao == NULL) && (_icao == NULL)) {
-        _icao = strdup( fgGetString("/sim/presets/airport-id") );
+    // if the last error was more than three seconds ago,
+    // then pretent nothing happened.
+    if (_error_dt < 3) {
+        _error_dt += _dt;
 
-    } else if (icao != NULL) {
-        if (_icao != NULL)
-            free(_icao);
-
-        _icao = strdup(icao);
+    } else {
+        _error_dt = 0.0;
+        _error_count = 0;
     }
 
-    SGMetar *m;
+    // fetch station elevation if exists
+    FGAirport a = globals->get_airports()->search( icao );
+    station_elevation_ft = a.elevation;
+
+    // fetch current metar data
     try {
-        m = new SGMetar(_icao);
+        string host = proxy_host->getStringValue();
+        string auth = proxy_auth->getStringValue();
+        string port = proxy_port->getStringValue();
+        result.m = new SGMetar( icao, host, port, auth);
+
     } catch (const sg_io_exception& e) {
         SG_LOG( SG_GENERAL, SG_WARN, "Error fetching live weather data: "
-                                      << e.getFormattedMessage().c_str() );
-        return;
+                << e.getFormattedMessage().c_str() );
+        if (_error_count++ >= 3) {
+           SG_LOG( SG_GENERAL, SG_WARN, "Stop fetching data permanently.");
+           thread->cancel();
+           thread->join();
+        }
+
+        result.m = NULL;
     }
 
+    _dt = 0;
+
+    return result;
+}
+
+
+void
+FGMetarEnvironmentCtrl::update_metar_properties( SGMetar *m )
+{
+    int i;
+    double d, dt;
+    char s[128];
+
     d = m->getMinVisibility().getVisibility_m();
     d = (d != SGMetarNaN) ? d : 10000;
     fgSetDouble("/environment/metar/min-visibility-m", d);
@@ -450,9 +596,9 @@ FGMetarEnvironmentCtrl::fetch_data (const char *icao)
     i = m->getWindDir();
     if ( i == -1 ) {
         fgSetInt("/environment/metar/base-wind-range-from",
-                    m->getWindRangeFrom() );
+                 m->getWindRangeFrom() );
         fgSetInt("/environment/metar/base-wind-range-to",
-                    m->getWindRangeTo() );
+                 m->getWindRangeTo() );
     } else {
         fgSetInt("/environment/metar/base-wind-range-from", i);
         fgSetInt("/environment/metar/base-wind-range-to", i);
@@ -471,7 +617,7 @@ FGMetarEnvironmentCtrl::fetch_data (const char *icao)
         fgSetDouble("/environment/metar/dewpoint-degc", dt);
         fgSetDouble("/environment/metar/rel-humidity-norm",
                     m->getRelHumidity() );
-    }   
+    }
     d = (d != SGMetarNaN) ? d : 15.0;
     fgSetDouble("/environment/metar/temperature-degc", d);
 
@@ -499,7 +645,7 @@ FGMetarEnvironmentCtrl::fetch_data (const char *icao)
         strncat(s, "/elevation-ft", 128);
         d = cloud->getAltitude_ft();
         d = (d != SGMetarNaN) ? d : -9999;
-        fgSetDouble(s, d);
+        fgSetDouble(s, d + station_elevation_ft);
 
         snprintf(s, 128, cl, i);
         strncat(s, "/thickness-ft", 128);
@@ -509,6 +655,7 @@ FGMetarEnvironmentCtrl::fetch_data (const char *icao)
         strncat(s, "/span-m", 128);
         fgSetDouble(s, 40000.0);
     }
+
     for (; i < FGEnvironmentMgr::MAX_CLOUD_LAYERS; i++) {
         snprintf(s, 128, cl, i);
         strncat(s, "/coverage", 128);
@@ -526,9 +673,42 @@ FGMetarEnvironmentCtrl::fetch_data (const char *icao)
         strncat(s, "/span-m", 128);
         fgSetDouble(s, 40000.0);
     }
+}
+
 
-    delete m;
+#if defined(ENABLE_THREADS) && ENABLE_THREADS
+/**
+ *
+ */
+void
+FGMetarEnvironmentCtrl::MetarThread::run()
+{
+    pthread_cleanup_push( metar_cleanup_handler, fetcher );
+    while ( true )
+    {
+        set_cancel( SGThread::CANCEL_DISABLE );
+
+        string icao = fetcher->request_queue.pop();
+        SG_LOG( SG_GENERAL, SG_INFO, "Thread: fetch metar data = " << icao );
+        FGMetarResult result = fetcher->fetch_data( icao );
+
+        set_cancel( SGThread::CANCEL_DEFERRED );
+
+        fetcher->result_queue.push( result );
+    }
+    pthread_cleanup_pop(1);
+}
+
+/**
+ * Ensure mutex is unlocked.
+ */
+void
+metar_cleanup_handler( void* arg )
+{
+    FGMetarEnvironmentCtrl* fetcher = (FGMetarEnvironmentCtrl*) arg;
+    fetcher->mutex.unlock();
 }
+#endif // ENABLE_THREADS
 
 
 // end of environment_ctrl.cxx