summaryrefslogtreecommitdiff
path: root/python/gras/stats/main.js
blob: a27c0b75da2d8263f53a961a8896f3142880cea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/***********************************************************************
 * Some constants
 **********************************************************************/
var GRAS_CHARTS_STD_WIDTH = 250;

/***********************************************************************
 * Stats registry data structure
 **********************************************************************/
var GrasStatsRegistry = function()
{
    this.init = false;
    this.overall_rate = 2.0;
    this.overall_active = true;
    this.block_ids = new Array();
    this.top_id = 'top';
    this.online = true;
    this.offline_count = 0;
}

/***********************************************************************
 * Query stats
 **********************************************************************/
var gras_query_stats = function(registry)
{
    $.ajax({
        type: "GET",
        async: true,
        url: "/stats.xml",
        dataType: "xml",
        success: function(xml)
        {
            registry.online = true;
            gras_chart_factory_online(registry);
            if (registry.overall_active)
            {
                if ($(xml, "gras_stats") !== undefined)
                {
                    if (!registry.init)
                    {
                        gras_chart_factory_setup(registry, xml);
                        try{gras_chart_load(registry);}catch(e){}
                        registry.init = true;
                    }
                    $.each(registry.active_charts, function(index, chart_info)
                    {
                        chart_info.chart.update(xml);
                    });
                }

                registry.timeout_handle = window.setTimeout(function()
                {
                    gras_query_stats(registry);
                }, Math.round(1000/registry.overall_rate));
            }
        },
        error: function()
        {
            registry.online = false;
            gras_chart_factory_online(registry);
            registry.timeout_handle = window.setTimeout(function()
            {
                gras_query_stats(registry);
            }, 1000);
        },
    });
}

/***********************************************************************
 * Init
 **********************************************************************/
var gras_stats_main = function()
{
    var registry = new GrasStatsRegistry();
    gras_chart_factory_init(registry);
    gras_query_stats(registry);
}