summaryrefslogtreecommitdiff
path: root/devkit-power-gobject/dkp-stats-obj.c
blob: 7818f29745eff46dd444894b1cbe83a022753853 (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
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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2008 Richard Hughes <richard@hughsie.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 2 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, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#include <glib.h>
#include <glib-object.h>
#include <string.h>
#include <stdlib.h>

#include "dkp-stats-obj.h"

/**
 * dkp_stats_obj_copy:
 **/
DkpStatsObj *
dkp_stats_obj_copy (const DkpStatsObj *cobj)
{
	DkpStatsObj *obj;
	obj = g_new0 (DkpStatsObj, 1);
	obj->value = cobj->value;
	obj->accuracy = cobj->accuracy;
	return obj;
}

/**
 * dkp_stats_obj_new:
 **/
DkpStatsObj *
dkp_stats_obj_new (void)
{
	DkpStatsObj *obj;
	obj = g_new0 (DkpStatsObj, 1);
	obj->value = 0.0f;
	obj->accuracy = 0;
	return obj;
}

/**
 * dkp_stats_obj_free:
 **/
gboolean
dkp_stats_obj_free (DkpStatsObj *obj)
{
	if (obj == NULL)
		return FALSE;
	g_free (obj);
	return TRUE;
}

/**
 * dkp_stats_obj_create:
 **/
DkpStatsObj *
dkp_stats_obj_create (gdouble value, gdouble accuracy)
{
	DkpStatsObj *obj;
	obj = dkp_stats_obj_new ();
	obj->value = value;
	obj->accuracy = accuracy;
	return obj;
}

/**
 * dkp_stats_obj_from_string:
 **/
DkpStatsObj *
dkp_stats_obj_from_string (const gchar *text)
{
	DkpStatsObj *obj = NULL;
	gchar **parts = NULL;
	guint length;

	if (text == NULL)
		goto out;

	/* split by tab */
	parts = g_strsplit (text, "\t", 0);
	length = g_strv_length (parts);
	if (length != 2) {
		g_warning ("invalid string: '%s'", text);
		goto out;
	}

	/* parse and create */
	obj = dkp_stats_obj_new ();
	obj->value = atoi (parts[0]);
	obj->accuracy = atof (parts[1]);
out:
	g_strfreev (parts);
	return obj;
}

/**
 * dkp_stats_obj_to_string:
 **/
gchar *
dkp_stats_obj_to_string (const DkpStatsObj *obj)
{
	if (obj == NULL)
		return NULL;
	return g_strdup_printf ("%.2f\t%.2f", obj->value, obj->accuracy);
}