/* AUTOMATICALLY GENERATED by qapi-gen.py DO NOT MODIFY */

/*
 * Schema-defined QAPI/QMP events
 *
 * Copyright (c) 2014 Wenchao Xia
 * Copyright (c) 2015-2018 Red Hat Inc.
 *
 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
 * See the COPYING.LIB file in the top-level directory.
 */

#include "qemu/osdep.h"
#include "qapi-emit-events.h"
#include "qapi-events-machine.h"
#include "qapi-visit-machine.h"
#include "qapi/compat-policy.h"
#include "qapi/error.h"
#include "qapi/qmp/qdict.h"
#include "qapi/qmp-event.h"

void qapi_event_send_balloon_change(int64_t actual)
{
    QDict *qmp;
    QObject *obj;
    Visitor *v;
    q_obj_BALLOON_CHANGE_arg param = {
        actual
    };

    qmp = qmp_event_build_dict("BALLOON_CHANGE");

    v = qobject_output_visitor_new_qmp(&obj);

    visit_start_struct(v, "BALLOON_CHANGE", NULL, 0, &error_abort);
    visit_type_q_obj_BALLOON_CHANGE_arg_members(v, &param, &error_abort);
    visit_check_struct(v, &error_abort);
    visit_end_struct(v, NULL);

    visit_complete(v, &obj);
    if (qdict_size(qobject_to(QDict, obj))) {
        qdict_put_obj(qmp, "data", obj);
    } else {
        qobject_unref(obj);
    }
    qapi_event_emit(QAPI_EVENT_BALLOON_CHANGE, qmp);

    visit_free(v);
    qobject_unref(qmp);
}

void qapi_event_send_hv_balloon_status_report(uint64_t committed, uint64_t available)
{
    QDict *qmp;
    QObject *obj;
    Visitor *v;
    HvBalloonInfo param = {
        committed, available
    };
    HvBalloonInfo *arg = &param;

    qmp = qmp_event_build_dict("HV_BALLOON_STATUS_REPORT");

    v = qobject_output_visitor_new_qmp(&obj);
    visit_type_HvBalloonInfo(v, "HV_BALLOON_STATUS_REPORT", &arg, &error_abort);

    visit_complete(v, &obj);
    if (qdict_size(qobject_to(QDict, obj))) {
        qdict_put_obj(qmp, "data", obj);
    } else {
        qobject_unref(obj);
    }
    qapi_event_emit(QAPI_EVENT_HV_BALLOON_STATUS_REPORT, qmp);

    visit_free(v);
    qobject_unref(qmp);
}

void qapi_event_send_memory_device_size_change(const char *id, uint64_t size, const char *qom_path)
{
    QDict *qmp;
    QObject *obj;
    Visitor *v;
    q_obj_MEMORY_DEVICE_SIZE_CHANGE_arg param = {
        (char *)id, size, (char *)qom_path
    };

    qmp = qmp_event_build_dict("MEMORY_DEVICE_SIZE_CHANGE");

    v = qobject_output_visitor_new_qmp(&obj);

    visit_start_struct(v, "MEMORY_DEVICE_SIZE_CHANGE", NULL, 0, &error_abort);
    visit_type_q_obj_MEMORY_DEVICE_SIZE_CHANGE_arg_members(v, &param, &error_abort);
    visit_check_struct(v, &error_abort);
    visit_end_struct(v, NULL);

    visit_complete(v, &obj);
    if (qdict_size(qobject_to(QDict, obj))) {
        qdict_put_obj(qmp, "data", obj);
    } else {
        qobject_unref(obj);
    }
    qapi_event_emit(QAPI_EVENT_MEMORY_DEVICE_SIZE_CHANGE, qmp);

    visit_free(v);
    qobject_unref(qmp);
}

/* Dummy declaration to prevent empty .o file */
char qapi_dummy_qapi_events_machine_c;
