libei/src/libei-keyboard.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

87 lines
2.8 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 "libei-private.h"
#include "ei-proto.h"
static void
ei_keyboard_destroy(struct ei_keyboard *keyboard)
{
struct ei *ei = ei_keyboard_get_context(keyboard);
ei_unregister_object(ei, &keyboard->proto_object);
}
OBJECT_IMPLEMENT_REF(ei_keyboard);
OBJECT_IMPLEMENT_UNREF_CLEANUP(ei_keyboard);
static
OBJECT_IMPLEMENT_CREATE(ei_keyboard);
static
OBJECT_IMPLEMENT_PARENT(ei_keyboard, ei_device);
OBJECT_IMPLEMENT_GETTER_AS_REF(ei_keyboard, proto_object, const struct brei_object*);
struct ei_device *
ei_keyboard_get_device(struct ei_keyboard *keyboard)
{
return ei_keyboard_parent(keyboard);
}
struct ei*
ei_keyboard_get_context(struct ei_keyboard *keyboard)
{
return ei_device_get_context(ei_keyboard_get_device(keyboard));
}
const struct ei_keyboard_interface *
ei_keyboard_get_interface(struct ei_keyboard *keyboard) {
struct ei_device *device = ei_keyboard_get_device(keyboard);
return ei_device_get_keyboard_interface(device);
}
struct ei_keyboard *
ei_keyboard_new(struct ei_device *device, object_id_t id, uint32_t version)
{
struct ei_keyboard *keyboard = ei_keyboard_create(&device->object);
struct ei *ei = ei_device_get_context(device);
keyboard->proto_object.id = id;
keyboard->proto_object.implementation = keyboard;
keyboard->proto_object.interface = &ei_keyboard_proto_interface;
keyboard->proto_object.version = version;
ei_register_object(ei, &keyboard->proto_object);
return keyboard; /* ref owned by caller */
}