libei/src/libeis-button.c
Jason Gerecke 50ff529a76 Fix MIT license header text
Corrects an issue where a wild search-and-replace mangled the license
texts on protocol implementations.

Part-of: <https://gitlab.freedesktop.org/libinput/libei/-/merge_requests/335>
2025-05-29 23:07:48 +00:00

107 lines
3.2 KiB
C

/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2023 Red Hat, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#include "config.h"
#include <errno.h>
#include <stdbool.h>
#include "util-bits.h"
#include "util-macros.h"
#include "util-mem.h"
#include "util-io.h"
#include "util-strings.h"
#include "util-version.h"
#include "libeis-private.h"
#include "eis-proto.h"
static void
eis_button_destroy(struct eis_button *button)
{
struct eis_client * client = eis_button_get_client(button);
eis_client_unregister_object(client, &button->proto_object);
}
OBJECT_IMPLEMENT_REF(eis_button);
OBJECT_IMPLEMENT_UNREF_CLEANUP(eis_button);
OBJECT_IMPLEMENT_GETTER_AS_REF(eis_button, proto_object, const struct brei_object *);
static
OBJECT_IMPLEMENT_CREATE(eis_button);
static
OBJECT_IMPLEMENT_PARENT(eis_button, eis_device);
uint32_t
eis_button_get_version(struct eis_button *button)
{
return button->proto_object.version;
}
object_id_t
eis_button_get_id(struct eis_button *button)
{
return button->proto_object.id;
}
struct eis_device *
eis_button_get_device(struct eis_button *button)
{
return eis_button_parent(button);
}
struct eis_client*
eis_button_get_client(struct eis_button *button)
{
return eis_device_get_client(eis_button_get_device(button));
}
struct eis*
eis_button_get_context(struct eis_button *button)
{
struct eis_client *client = eis_button_get_client(button);
return eis_client_get_context(client);
}
const struct eis_button_interface *
eis_button_get_interface(struct eis_button *button) {
return eis_device_get_button_interface(eis_button_get_device(button));
}
struct eis_button *
eis_button_new(struct eis_device *device)
{
struct eis_button *button = eis_button_create(&device->object);
struct eis_client *client = eis_device_get_client(device);
button->proto_object.id = eis_client_get_new_id(client);
button->proto_object.implementation = button;
button->proto_object.interface = &eis_button_proto_interface;
button->proto_object.version = client->interface_versions.ei_button;
list_init(&button->proto_object.link);
eis_client_register_object(client, &button->proto_object);
return button; /* ref owned by caller */
}