/* * Copyright (c) 2006-2007, XenSource Inc. * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include "xen_internal.h" #include #include XEN_FREE(xen_vif_metrics) XEN_SET_ALLOC_FREE(xen_vif_metrics) XEN_ALLOC(xen_vif_metrics_record) XEN_SET_ALLOC_FREE(xen_vif_metrics_record) XEN_ALLOC(xen_vif_metrics_record_opt) XEN_RECORD_OPT_FREE(xen_vif_metrics) XEN_SET_ALLOC_FREE(xen_vif_metrics_record_opt) static const struct_member xen_vif_metrics_record_struct_members[] = { { .key = "uuid", .type = &abstract_type_string, .offset = offsetof(xen_vif_metrics_record, uuid) }, { .key = "io_read_kbs", .type = &abstract_type_float, .offset = offsetof(xen_vif_metrics_record, io_read_kbs) }, { .key = "io_write_kbs", .type = &abstract_type_float, .offset = offsetof(xen_vif_metrics_record, io_write_kbs) }, { .key = "last_updated", .type = &abstract_type_datetime, .offset = offsetof(xen_vif_metrics_record, last_updated) } }; const abstract_type xen_vif_metrics_record_abstract_type_ = { .typename = STRUCT, .struct_size = sizeof(xen_vif_metrics_record), .member_count = sizeof(xen_vif_metrics_record_struct_members) / sizeof(struct_member), .members = xen_vif_metrics_record_struct_members }; void xen_vif_metrics_record_free(xen_vif_metrics_record *record) { if (record == NULL) { return; } free(record->handle); free(record->uuid); free(record); } bool xen_vif_metrics_get_record(xen_session *session, xen_vif_metrics_record **result, xen_vif_metrics vif_metrics) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif_metrics } }; abstract_type result_type = xen_vif_metrics_record_abstract_type_; *result = NULL; XEN_CALL_("VIF_metrics.get_record"); if (session->ok) { (*result)->handle = xen_strdup_((*result)->uuid); } return session->ok; } bool xen_vif_metrics_get_by_uuid(xen_session *session, xen_vif_metrics *result, char *uuid) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = uuid } }; abstract_type result_type = abstract_type_string; *result = NULL; XEN_CALL_("VIF_metrics.get_by_uuid"); return session->ok; } bool xen_vif_metrics_get_io_read_kbs(xen_session *session, double *result, xen_vif_metrics vif_metrics) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif_metrics } }; abstract_type result_type = abstract_type_float; XEN_CALL_("VIF_metrics.get_io_read_kbs"); return session->ok; } bool xen_vif_metrics_get_io_write_kbs(xen_session *session, double *result, xen_vif_metrics vif_metrics) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif_metrics } }; abstract_type result_type = abstract_type_float; XEN_CALL_("VIF_metrics.get_io_write_kbs"); return session->ok; } bool xen_vif_metrics_get_last_updated(xen_session *session, time_t *result, xen_vif_metrics vif_metrics) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif_metrics } }; abstract_type result_type = abstract_type_datetime; XEN_CALL_("VIF_metrics.get_last_updated"); return session->ok; } bool xen_vif_metrics_get_all(xen_session *session, struct xen_vif_metrics_set **result) { abstract_type result_type = abstract_type_string_set; *result = NULL; xen_call_(session, "VIF_metrics.get_all", NULL, 0, &result_type, result); return session->ok; } bool xen_vif_metrics_get_uuid(xen_session *session, char **result, xen_vif_metrics vif_metrics) { abstract_value param_values[] = { { .type = &abstract_type_string, .u.string_val = vif_metrics } }; abstract_type result_type = abstract_type_string; *result = NULL; XEN_CALL_("VIF_metrics.get_uuid"); return session->ok; }