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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
/*
* Copyright (c) 2017 Balabit
* Copyright (c) 2017 Laszlo Budai
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "stats/stats-cluster-single.h"
#include "stats/stats-cluster.h"
static const gchar *tag_names[SC_TYPE_SINGLE_MAX] =
{
/* [SC_TYPE_SINGLE_VALUE] = */ "value",
};
static void
_counter_group_free(StatsCounterGroup *counter_group)
{
g_free(counter_group->counters);
}
static void
_counter_group_init(StatsCounterGroupInit *self, StatsCounterGroup *counter_group)
{
counter_group->counters = g_new0(StatsCounterItem, SC_TYPE_SINGLE_MAX);
counter_group->capacity = SC_TYPE_SINGLE_MAX;
counter_group->counter_names = self->counter.names;
counter_group->free_fn = _counter_group_free;
}
void
stats_cluster_single_key_legacy_set(StatsClusterKey *key, guint16 component, const gchar *id, const gchar *instance)
{
stats_cluster_key_legacy_set(key, component, id, instance, (StatsCounterGroupInit)
{
.counter.names = tag_names, .init = _counter_group_init, .equals = NULL
});
}
void
stats_cluster_single_key_add_legacy_alias(StatsClusterKey *key, guint16 component, const gchar *id,
const gchar *instance)
{
stats_cluster_key_add_legacy_alias(key, component, id, instance, (StatsCounterGroupInit)
{
.counter.names = tag_names, .init = _counter_group_init, .equals = NULL
});
}
static void
_counter_group_with_name_free(StatsCounterGroup *counter_group)
{
g_free((gchar *)counter_group->counter_names[0]);
g_free(counter_group->counter_names);
_counter_group_free(counter_group);
}
static void
_counter_group_init_with_name(StatsCounterGroupInit *self, StatsCounterGroup *counter_group)
{
counter_group->counters = g_new0(StatsCounterItem, SC_TYPE_SINGLE_MAX);
counter_group->capacity = SC_TYPE_SINGLE_MAX;
const gchar **counter_names = g_new0(const gchar *, 1);
counter_names[0] = g_strdup(self->counter.name);
counter_group->counter_names = counter_names;
counter_group->free_fn = _counter_group_with_name_free;
}
static void
_clone_with_name(StatsCounterGroupInit *dst, const StatsCounterGroupInit *src)
{
dst->counter.name = g_strdup(src->counter.name);
dst->init = src->init;
dst->equals = src->equals;
dst->clone = src->clone;
dst->cloned_free = src->cloned_free;
}
static void
_cloned_free_with_name(StatsCounterGroupInit *self)
{
g_free((gchar *)self->counter.name);
}
static gboolean
_group_init_equals(const StatsCounterGroupInit *self, const StatsCounterGroupInit *other)
{
g_assert(self != NULL && other != NULL && self->counter.name != NULL && other->counter.name != NULL);
return (self->init == other->init) && (g_strcmp0(self->counter.name, other->counter.name) == 0);
}
void
stats_cluster_single_key_legacy_set_with_name(StatsClusterKey *key, guint16 component, const gchar *id,
const gchar *instance,
const gchar *name)
{
stats_cluster_key_legacy_set(key, component, id, instance, (StatsCounterGroupInit)
{
.counter.name = name, .init = _counter_group_init_with_name, .equals = _group_init_equals,
.clone = _clone_with_name, .cloned_free = _cloned_free_with_name
});
}
void
stats_cluster_single_key_add_legacy_alias_with_name(StatsClusterKey *key, guint16 component, const gchar *id,
const gchar *instance, const gchar *name)
{
stats_cluster_key_add_legacy_alias(key, component, id, instance, (StatsCounterGroupInit)
{
.counter.name = name, .init = _counter_group_init_with_name, .equals = _group_init_equals,
.clone = _clone_with_name, .cloned_free = _cloned_free_with_name
});
}
void
stats_cluster_single_key_set(StatsClusterKey *key, const gchar *name, StatsClusterLabel *labels, gsize labels_len)
{
stats_cluster_key_set(key, name, labels, labels_len, (StatsCounterGroupInit)
{
.counter.names = tag_names, .init = _counter_group_init, .equals = NULL
});
}
void
stats_cluster_single_key_add_unit(StatsClusterKey *key, StatsClusterUnit stored_unit)
{
key->formatting.stored_unit = stored_unit;
}
void
stats_cluster_single_key_add_frame_of_reference(StatsClusterKey *key, StatsClusterFrameOfReference frame_of_reference)
{
key->formatting.frame_of_reference = frame_of_reference;
}
StatsCounterItem *
stats_cluster_single_get_counter(StatsCluster *self)
{
return self ? &self->counter_group.counters[0] : NULL;
}
|