fal->quality[c].values[1] = fal->quality[c].values[2];
fal->quality[c].values[2] = value;
set = GNUNET_YES;
-#if HAVE_GLPK
+#if HAVE_LIBGLPK
ats_modify_problem_state (ats, ATS_QUALITY_UPDATED);
#endif
}
{
fal->ressources[c].c = value;
set = GNUNET_YES;
-#if HAVE_GLPK
+#if HAVE_LIBGLPK
ats_modify_problem_state (ats, ATS_COST_UPDATED);
#endif
}
}
GNUNET_free_non_null(pos->ressources);
GNUNET_free_non_null(pos->quality);
-#if HAVE_GLPK
+#if HAVE_LIBGLPK
ats_modify_problem_state (ats, ATS_MODIFIED);
#endif
if (GNUNET_YES != pos->connected)
/* notify ats about connecting peer */
if ((ats != NULL) && (shutdown_in_progress == GNUNET_NO))
{
-#if HAVE_GLPK
+#if HAVE_LIBGLPK
ats_modify_problem_state(ats, ATS_MODIFIED);
- ats_calculate_bandwidth_distribution (ats, stats);
+ ats_calculate_bandwidth_distribution (ats);
#endif
}
cpos = clients;
/* notify ats about connecting peer */
if ((ats != NULL) && (shutdown_in_progress == GNUNET_NO))
{
-#if HAVE_GLPK
+#if HAVE_LIBGLPK
ats_modify_problem_state(ats, ATS_MODIFIED);
- ats_calculate_bandwidth_distribution (ats, stats);
+ ats_calculate_bandwidth_distribution (ats);
#endif
}
n->received_pong = GNUNET_NO;
notify_clients_disconnect (&n->id);
}
-#if HAVE_GLPK
+#if HAVE_LIBGLPK
ats_modify_problem_state(ats, ATS_MODIFIED);
#endif
/* clean up all plugins, cancel connections and pending transmissions */
if ((ntohs(message->type) == GNUNET_MESSAGE_TYPE_TRANSPORT_ATS) &&
(ntohs(message->size) == (sizeof (struct GNUNET_MessageHeader) + sizeof (uint32_t))))
{
-#if HAVE_GLPK
+#if HAVE_LIBGLPK
uint32_t value = ntohl(*((uint32_t *) &message[1]));
//GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "GNUNET_MESSAGE_TYPE_TRANSPORT_ATS: %i \n", value);
/* Force ressource and quality update */
GNUNET_SCHEDULER_cancel(ats_task);
ats_task = GNUNET_SCHEDULER_NO_TASK;
}
-#if HAVE_GLPK
+#if HAVE_LIBGLPK
if (ats != NULL)
ats_shutdown (ats);
#endif
#if DEBUG_ATS
GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Running scheduled calculation\n");
#endif
-#if HAVE_GLPK
- ats_calculate_bandwidth_distribution (ats, stats);
+#if HAVE_LIBGLPK
+ ats_calculate_bandwidth_distribution (ats);
#endif
last_ats_execution = GNUNET_TIME_absolute_get();
int co;
char * section;
unsigned long long value;
-#if HAVE_GLPK
+#if HAVE_LIBGLPK
double D = 1.0;
double U = 1.0;
double R = 1.0;
}
GNUNET_free (section);
}
-#if HAVE_GLPK
+#if HAVE_LIBGLPK
ats = ats_init (D, U, R, v_b_min, v_n_min,
ATS_MAX_ITERATIONS, ATS_MAX_EXEC_DURATION,
create_ats_information,
"transport",
"ATS_MIN_INTERVAL",
&ats_minimum_interval));
-#if HAVE_GLPK
+#if HAVE_LIBGLPK
ats_set_logging_options (ats,
+ stats,
minimum_addresses,
minimum_peers,
overwrite_dump,
_dummy2();
}
+
+
static void _dummy2 ()
{
ats_modify_problem_state (NULL, 0);
+ qm[1].atis_index = 0;
_dummy();
int t = ATS_COST_UPDATED + ATS_MODIFIED + ATS_NEW;
t = 0;
void
-ats_calculate_bandwidth_distribution (struct ATS_Handle * ats,
- struct GNUNET_STATISTICS_Handle *stats)
+ats_calculate_bandwidth_distribution (struct ATS_Handle * ats)
{
struct GNUNET_TIME_Absolute start;
struct GNUNET_TIME_Relative creation;
(ats->internal.simplex_rerun_required == GNUNET_NO) ? "NO" : "YES",
(ats->internal.solution == 5) ? "OPTIMAL" : "INVALID");
ats->successful_executions ++;
- GNUNET_STATISTICS_set (stats, "# ATS successful executions",
+ GNUNET_STATISTICS_set (ats->stats, "# ATS successful executions",
ats->successful_executions,
GNUNET_NO);
if ((ats->internal.recreate_problem == GNUNET_YES) || (ats->prob==NULL))
- GNUNET_STATISTICS_set (stats, "ATS state",ATS_NEW, GNUNET_NO);
+ GNUNET_STATISTICS_set (ats->stats, "ATS state",ATS_NEW, GNUNET_NO);
else if ((ats->internal.modified_resources == GNUNET_YES) &&
(ats->internal.modified_quality == GNUNET_NO))
- GNUNET_STATISTICS_set (stats, "ATS state", ATS_COST_UPDATED, GNUNET_NO);
+ GNUNET_STATISTICS_set (ats->stats, "ATS state", ATS_COST_UPDATED, GNUNET_NO);
else if ((ats->internal.modified_resources == GNUNET_NO) &&
(ats->internal.modified_quality == GNUNET_YES) &&
(ats->internal.simplex_rerun_required == GNUNET_NO))
- GNUNET_STATISTICS_set (stats, "ATS state", ATS_QUALITY_UPDATED, GNUNET_NO);
+ GNUNET_STATISTICS_set (ats->stats, "ATS state", ATS_QUALITY_UPDATED, GNUNET_NO);
else if ((ats->internal.modified_resources == GNUNET_YES) &&
(ats->internal.modified_quality == GNUNET_YES) &&
(ats->internal.simplex_rerun_required == GNUNET_NO))
- GNUNET_STATISTICS_set (stats, "ATS state", ATS_QUALITY_COST_UPDATED, GNUNET_NO);
+ GNUNET_STATISTICS_set (ats->stats, "ATS state", ATS_QUALITY_COST_UPDATED, GNUNET_NO);
else if (ats->internal.simplex_rerun_required == GNUNET_NO)
- GNUNET_STATISTICS_set (stats, "ATS state", ATS_UNMODIFIED, GNUNET_NO);
+ GNUNET_STATISTICS_set (ats->stats, "ATS state", ATS_UNMODIFIED, GNUNET_NO);
}
else
{
if (ats->internal.c_peers != 0)
{
ats->invalid_executions ++;
- GNUNET_STATISTICS_set (stats, "# ATS invalid executions",
+ GNUNET_STATISTICS_set (ats->stats, "# ATS invalid executions",
ats->invalid_executions, GNUNET_NO);
}
else
{
- GNUNET_STATISTICS_set (stats, "# ATS successful executions",
+ GNUNET_STATISTICS_set (ats->stats, "# ATS successful executions",
ats->successful_executions, GNUNET_NO);
}
}
- GNUNET_STATISTICS_set (stats,
+ GNUNET_STATISTICS_set (ats->stats,
"ATS duration", solving.rel_value + creation.rel_value, GNUNET_NO);
- GNUNET_STATISTICS_set (stats,
+ GNUNET_STATISTICS_set (ats->stats,
"ATS mechanisms", ats->internal.c_mechs, GNUNET_NO);
- GNUNET_STATISTICS_set (stats,
+ GNUNET_STATISTICS_set (ats->stats,
"ATS peers", ats->internal.c_peers, GNUNET_NO);
- GNUNET_STATISTICS_set (stats,
+ GNUNET_STATISTICS_set (ats->stats,
"ATS solution", ats->internal.solution, GNUNET_NO);
- GNUNET_STATISTICS_set (stats,
+ GNUNET_STATISTICS_set (ats->stats,
"ATS timestamp", start.abs_value, GNUNET_NO);
if ((ats->save_mlp == GNUNET_YES) &&
}
void ats_set_logging_options (struct ATS_Handle * ats,
+ struct GNUNET_STATISTICS_Handle * stats,
int minimum_addresses,
int minimum_peers,
int overwrite_dump,
{
if (ats == NULL)
return;
-
+ ats->stats = stats;
ats->dump_min_addr = minimum_addresses;
ats->dump_min_peers = minimum_peers;
ats->dump_overwrite = overwrite_dump;