mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
291 lines
8.4 KiB
C
291 lines
8.4 KiB
C
/* sysprof-document-counter.c
|
|
*
|
|
* Copyright 2023 Christian Hergert <chergert@redhat.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "sysprof-document-counter.h"
|
|
#include "sysprof-document-counter-value-private.h"
|
|
#include "sysprof-document-private.h"
|
|
|
|
struct _SysprofDocumentCounter
|
|
{
|
|
GObject parent_instance;
|
|
GRefString *category;
|
|
GRefString *description;
|
|
GRefString *name;
|
|
GArray *values;
|
|
guint id;
|
|
guint type;
|
|
};
|
|
|
|
enum {
|
|
PROP_0,
|
|
PROP_CATEGORY,
|
|
PROP_DESCRIPTION,
|
|
PROP_ID,
|
|
PROP_NAME,
|
|
N_PROPS
|
|
};
|
|
|
|
static guint
|
|
sysprof_document_counter_get_n_items (GListModel *model)
|
|
{
|
|
return sysprof_document_counter_get_n_values (SYSPROF_DOCUMENT_COUNTER (model));
|
|
}
|
|
|
|
static GType
|
|
sysprof_document_counter_get_item_type (GListModel *model)
|
|
{
|
|
return SYSPROF_TYPE_DOCUMENT_COUNTER_VALUE;
|
|
}
|
|
|
|
static gpointer
|
|
sysprof_document_counter_get_item (GListModel *model,
|
|
guint position)
|
|
{
|
|
SysprofDocumentCounter *self = SYSPROF_DOCUMENT_COUNTER (model);
|
|
const SysprofDocumentTimedValue *value;
|
|
|
|
if (position >= self->values->len)
|
|
return NULL;
|
|
|
|
value = &g_array_index (self->values, SysprofDocumentTimedValue, position);
|
|
|
|
return _sysprof_document_counter_value_new (value);
|
|
}
|
|
|
|
static void
|
|
list_model_iface_init (GListModelInterface *iface)
|
|
{
|
|
iface->get_n_items = sysprof_document_counter_get_n_items;
|
|
iface->get_item_type = sysprof_document_counter_get_item_type;
|
|
iface->get_item = sysprof_document_counter_get_item;
|
|
}
|
|
|
|
G_DEFINE_FINAL_TYPE_WITH_CODE (SysprofDocumentCounter, sysprof_document_counter, G_TYPE_OBJECT,
|
|
G_IMPLEMENT_INTERFACE (G_TYPE_LIST_MODEL, list_model_iface_init))
|
|
|
|
static GParamSpec *properties [N_PROPS];
|
|
|
|
static void
|
|
sysprof_document_counter_finalize (GObject *object)
|
|
{
|
|
SysprofDocumentCounter *self = (SysprofDocumentCounter *)object;
|
|
|
|
g_clear_pointer (&self->category, g_ref_string_release);
|
|
g_clear_pointer (&self->description, g_ref_string_release);
|
|
g_clear_pointer (&self->name, g_ref_string_release);
|
|
g_clear_pointer (&self->values, g_array_unref);
|
|
|
|
G_OBJECT_CLASS (sysprof_document_counter_parent_class)->finalize (object);
|
|
}
|
|
|
|
static void
|
|
sysprof_document_counter_get_property (GObject *object,
|
|
guint prop_id,
|
|
GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
SysprofDocumentCounter *self = SYSPROF_DOCUMENT_COUNTER (object);
|
|
|
|
switch (prop_id)
|
|
{
|
|
case PROP_CATEGORY:
|
|
g_value_set_string (value, sysprof_document_counter_get_category (self));
|
|
break;
|
|
|
|
case PROP_DESCRIPTION:
|
|
g_value_set_string (value, sysprof_document_counter_get_description (self));
|
|
break;
|
|
|
|
case PROP_NAME:
|
|
g_value_set_string (value, sysprof_document_counter_get_name (self));
|
|
break;
|
|
|
|
case PROP_ID:
|
|
g_value_set_uint (value, sysprof_document_counter_get_id (self));
|
|
break;
|
|
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
}
|
|
}
|
|
|
|
static void
|
|
sysprof_document_counter_class_init (SysprofDocumentCounterClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
object_class->finalize = sysprof_document_counter_finalize;
|
|
object_class->get_property = sysprof_document_counter_get_property;
|
|
|
|
properties [PROP_ID] =
|
|
g_param_spec_uint ("id", NULL, NULL,
|
|
0, G_MAXUINT, 0,
|
|
(G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
|
|
|
properties [PROP_CATEGORY] =
|
|
g_param_spec_string ("category", NULL, NULL,
|
|
NULL,
|
|
(G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
|
|
|
properties [PROP_DESCRIPTION] =
|
|
g_param_spec_string ("description", NULL, NULL,
|
|
NULL,
|
|
(G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
|
|
|
properties [PROP_NAME] =
|
|
g_param_spec_string ("name", NULL, NULL,
|
|
NULL,
|
|
(G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_properties (object_class, N_PROPS, properties);
|
|
}
|
|
|
|
static void
|
|
sysprof_document_counter_init (SysprofDocumentCounter *self)
|
|
{
|
|
}
|
|
|
|
SysprofDocumentCounter *
|
|
_sysprof_document_counter_new (guint id,
|
|
guint type,
|
|
GRefString *category,
|
|
GRefString *name,
|
|
GRefString *description,
|
|
GArray *values)
|
|
{
|
|
SysprofDocumentCounter *self;
|
|
|
|
self = g_object_new (SYSPROF_TYPE_DOCUMENT_COUNTER, NULL);
|
|
self->id = id;
|
|
self->type = type;
|
|
self->category = category;
|
|
self->name = name;
|
|
self->description = description;
|
|
self->values = values;
|
|
|
|
return self;
|
|
}
|
|
|
|
const char *
|
|
sysprof_document_counter_get_category (SysprofDocumentCounter *self)
|
|
{
|
|
g_return_val_if_fail (SYSPROF_IS_DOCUMENT_COUNTER (self), NULL);
|
|
|
|
return self->category;
|
|
}
|
|
|
|
const char *
|
|
sysprof_document_counter_get_description (SysprofDocumentCounter *self)
|
|
{
|
|
g_return_val_if_fail (SYSPROF_IS_DOCUMENT_COUNTER (self), NULL);
|
|
|
|
return self->description;
|
|
}
|
|
|
|
const char *
|
|
sysprof_document_counter_get_name (SysprofDocumentCounter *self)
|
|
{
|
|
g_return_val_if_fail (SYSPROF_IS_DOCUMENT_COUNTER (self), NULL);
|
|
|
|
return self->name;
|
|
}
|
|
|
|
guint
|
|
sysprof_document_counter_get_id (SysprofDocumentCounter *self)
|
|
{
|
|
g_return_val_if_fail (SYSPROF_IS_DOCUMENT_COUNTER (self), 0);
|
|
|
|
return self->id;
|
|
}
|
|
|
|
GType
|
|
sysprof_document_counter_get_value_type (SysprofDocumentCounter *self)
|
|
{
|
|
g_return_val_if_fail (SYSPROF_IS_DOCUMENT_COUNTER (self), G_TYPE_INVALID);
|
|
|
|
if (self->type == SYSPROF_CAPTURE_COUNTER_INT64)
|
|
return G_TYPE_INT64;
|
|
|
|
if (self->type == SYSPROF_CAPTURE_COUNTER_DOUBLE)
|
|
return G_TYPE_DOUBLE;
|
|
|
|
g_return_val_if_reached (G_TYPE_INVALID);
|
|
}
|
|
|
|
guint
|
|
sysprof_document_counter_get_n_values (SysprofDocumentCounter *self)
|
|
{
|
|
g_return_val_if_fail (SYSPROF_IS_DOCUMENT_COUNTER (self), 0);
|
|
|
|
return self->values->len;
|
|
}
|
|
|
|
void
|
|
sysprof_document_counter_get_value (SysprofDocumentCounter *self,
|
|
guint nth,
|
|
gint64 *time,
|
|
GValue *value)
|
|
{
|
|
g_return_if_fail (SYSPROF_IS_DOCUMENT_COUNTER (self));
|
|
g_return_if_fail (nth < self->values->len);
|
|
g_return_if_fail (value == NULL || G_IS_VALUE (value));
|
|
|
|
if (time != NULL)
|
|
*time = g_array_index (self->values, SysprofDocumentTimedValue, nth).time;
|
|
|
|
if (value == NULL)
|
|
return;
|
|
|
|
if (G_VALUE_HOLDS_INT64 (value))
|
|
g_value_set_int64 (value, g_array_index (self->values, SysprofDocumentTimedValue, nth).v_int64);
|
|
else if (G_VALUE_HOLDS_DOUBLE (value))
|
|
g_value_set_double (value, g_array_index (self->values, SysprofDocumentTimedValue, nth).v_double);
|
|
}
|
|
|
|
gint64
|
|
sysprof_document_counter_get_value_int64 (SysprofDocumentCounter *self,
|
|
guint nth,
|
|
gint64 *time)
|
|
{
|
|
g_return_val_if_fail (SYSPROF_IS_DOCUMENT_COUNTER (self), 0);
|
|
g_return_val_if_fail (nth < self->values->len, 0);
|
|
|
|
if (time != NULL)
|
|
*time = g_array_index (self->values, SysprofDocumentTimedValue, nth).time;
|
|
|
|
return g_array_index (self->values, SysprofDocumentTimedValue, nth).v_int64;
|
|
}
|
|
|
|
double
|
|
sysprof_document_counter_get_value_double (SysprofDocumentCounter *self,
|
|
guint nth,
|
|
gint64 *time)
|
|
{
|
|
g_return_val_if_fail (SYSPROF_IS_DOCUMENT_COUNTER (self), 0);
|
|
g_return_val_if_fail (nth < self->values->len, 0);
|
|
|
|
if (time != NULL)
|
|
*time = g_array_index (self->values, SysprofDocumentTimedValue, nth).time;
|
|
|
|
return g_array_index (self->values, SysprofDocumentTimedValue, nth).v_double;
|
|
}
|