mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2025-12-26 22:40:06 +01:00
This allows us to have a device support multiple interfaces and evolve those interfaces individually, e.g. add things to the keyboard interface without having to bump the touchscreen interface. Note that due to a name clash with the existing struct ei_touch public API the protocol interface is named touchscreen.
87 lines
2.7 KiB
C
87 lines
2.7 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 pointer 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_pointer_destroy(struct ei_pointer *pointer)
|
|
{
|
|
struct ei *ei = ei_pointer_get_context(pointer);
|
|
ei_unregister_object(ei, &pointer->proto_object);
|
|
}
|
|
|
|
OBJECT_IMPLEMENT_REF(ei_pointer);
|
|
OBJECT_IMPLEMENT_UNREF_CLEANUP(ei_pointer);
|
|
|
|
static
|
|
OBJECT_IMPLEMENT_CREATE(ei_pointer);
|
|
static
|
|
OBJECT_IMPLEMENT_PARENT(ei_pointer, ei_device);
|
|
OBJECT_IMPLEMENT_GETTER_AS_REF(ei_pointer, proto_object, const struct brei_object*);
|
|
|
|
struct ei_device *
|
|
ei_pointer_get_device(struct ei_pointer *pointer)
|
|
{
|
|
return ei_pointer_parent(pointer);
|
|
}
|
|
|
|
struct ei*
|
|
ei_pointer_get_context(struct ei_pointer *pointer)
|
|
{
|
|
return ei_device_get_context(ei_pointer_get_device(pointer));
|
|
}
|
|
|
|
const struct ei_pointer_interface *
|
|
ei_pointer_get_interface(struct ei_pointer *pointer) {
|
|
struct ei_device *device = ei_pointer_get_device(pointer);
|
|
return ei_device_get_pointer_interface(device);
|
|
}
|
|
|
|
struct ei_pointer *
|
|
ei_pointer_new(struct ei_device *device, uint32_t id, uint32_t version)
|
|
{
|
|
struct ei_pointer *pointer = ei_pointer_create(&device->object);
|
|
struct ei *ei = ei_device_get_context(device);
|
|
|
|
pointer->proto_object.id = id;
|
|
pointer->proto_object.implementation = pointer;
|
|
pointer->proto_object.interface = &ei_pointer_proto_interface;
|
|
pointer->proto_object.version = version;
|
|
ei_register_object(ei, &pointer->proto_object);
|
|
|
|
return pointer; /* ref owned by caller */
|
|
}
|