ats_ril: - removed some redundantly saved plugin environment attributes
[oweals/gnunet.git] / src / ats / test_ats_mlp_update.c
index ed48337e502cb4980cc4db25d9086f0d0a5c2f0e..8e5a1d6ebd23ea20a4af0b18f06a94713d1bd7b8 100644 (file)
@@ -28,7 +28,8 @@
 #include "gnunet_util_lib.h"
 #include "gnunet_statistics_service.h"
 #include "gnunet_ats_service.h"
-#include "gnunet-service-ats_addresses_mlp.h"
+#include "gnunet-service-ats-solver_mlp.h"
+#include "gnunet-service-ats_normalization.h"
 #include "test_ats_api_common.h"
 
 /**
@@ -41,6 +42,7 @@ static int ret;
  */
 struct GNUNET_ATS_Information ats[4];
 
+struct GNUNET_ATS_Information ats_prev[4];
 
 /**
  * MLP solver handle
@@ -79,7 +81,7 @@ int addr_it (void *cls,
              void *value)
 {
        struct ATS_Address *address = (struct ATS_Address *) value;
-       GAS_mlp_address_delete (mlp, addresses, address, GNUNET_NO);
+       GAS_mlp_address_delete (mlp, address, GNUNET_NO);
        GNUNET_CONTAINER_multihashmap_remove (addresses, key, value);
   GNUNET_free (address);
        return GNUNET_OK;
@@ -110,6 +112,7 @@ end_now (int res)
                GAS_mlp_done (mlp);
                mlp = NULL;
   }
+  GAS_normalization_stop ();
 
        ret = res;
 }
@@ -130,6 +133,27 @@ end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
        end_now (1);
 }
 
+static const double *
+get_preferences_cb (void *cls, const struct GNUNET_PeerIdentity *id)
+{
+       return GAS_normalization_get_preferences (id);
+}
+
+const double *
+get_property_cb (void *cls, const struct ATS_Address *address)
+{
+       return GAS_normalization_get_properties ((struct ATS_Address *) address);
+}
+
+static void
+normalized_property_changed_cb (void *cls,
+                                                                                                                struct ATS_Address *peer,
+                                                                                                                uint32_t type,
+                                                                                                                double prop_rel)
+{
+        /* TODO */
+}
+
 
 static void
 bandwidth_changed_cb (void *cls, struct ATS_Address *address)
@@ -186,13 +210,18 @@ check (void *cls, char *const *args, const char *cfgfile,
       end_now (1);
       return;
   }
+  GAS_normalization_start (NULL, NULL, &normalized_property_changed_cb, NULL);
 
   /* Setup address hashmap */
   addresses = GNUNET_CONTAINER_multihashmap_create (10, GNUNET_NO);
 
   /* Init MLP solver */
-  mlp  = GAS_mlp_init (cfg, stats, quotas, quotas_out, quotas_in,
-               GNUNET_ATS_NetworkTypeCount, &bandwidth_changed_cb, NULL);
+  mlp  = GAS_mlp_init (cfg, stats, addresses,
+               quotas, quotas_out, quotas_in,
+               GNUNET_ATS_NetworkTypeCount,
+               &bandwidth_changed_cb, NULL,
+               &get_preferences_cb, NULL,
+               &get_property_cb, NULL);
   if (NULL == mlp)
   {
        GNUNET_break (0);
@@ -220,14 +249,16 @@ check (void *cls, char *const *args, const char *cfgfile,
   GNUNET_CONTAINER_multihashmap_put (addresses, &p[0].hashPubKey, address[0],
                GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
   /* Adding address 0 */
-  GAS_mlp_address_add (mlp, addresses, address[0]);
+  GAS_mlp_address_add (mlp, address[0], GNUNET_ATS_NET_UNSPECIFIED);
 
   /* Retrieving preferred address for peer and wait for callback */
-  GAS_mlp_get_preferred_address (mlp, addresses, &p[0]);
+  GAS_mlp_get_preferred_address (mlp, &p[0]);
 
   /* Solve problem to build matrix */
-  GAS_mlp_solve_problem (mlp, addresses);
+  GAS_mlp_solve_problem (mlp);
 
+  address[0]->atsi = ats;
+  address[0]->atsi_count = 4;
   /* Updating address 0*/
   ats[0].type =  htonl (GNUNET_ATS_NETWORK_TYPE);
   ats[0].value = htonl (GNUNET_ATS_NET_WAN);
@@ -237,10 +268,21 @@ check (void *cls, char *const *args, const char *cfgfile,
   ats[2].value = htonl (1);
   ats[3].type =  htonl (GNUNET_ATS_ARRAY_TERMINATOR);
   ats[3].value = htonl (GNUNET_ATS_ARRAY_TERMINATOR);
-  GAS_mlp_address_update (mlp, addresses, address[0], 1, GNUNET_NO, ats, 4);
+
+  ats_prev[0].type =  htonl (GNUNET_ATS_NETWORK_TYPE);
+  ats_prev[0].value = htonl (GNUNET_ATS_NET_UNSPECIFIED);
+  ats_prev[1].type =  htonl (GNUNET_ATS_QUALITY_NET_DELAY);
+  ats_prev[1].value = htonl (GNUNET_ATS_VALUE_UNDEFINED);
+  ats_prev[2].type =  htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
+  ats_prev[2].value = htonl (GNUNET_ATS_VALUE_UNDEFINED);
+  ats_prev[3].type =  htonl (GNUNET_ATS_ARRAY_TERMINATOR);
+  ats_prev[3].value = htonl (GNUNET_ATS_VALUE_UNDEFINED);
+
+  GAS_mlp_address_property_changed(mlp, address[0], GNUNET_ATS_QUALITY_NET_DELAY, 10, 1.1);
+  GAS_mlp_address_property_changed(mlp, address[0], GNUNET_ATS_QUALITY_NET_DISTANCE, 1, 1.0);
 
   /* Solve problem to build matrix */
-  GAS_mlp_solve_problem (mlp, addresses);
+  GAS_mlp_solve_problem (mlp);
 }