/* 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 #include #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_absolute_destroy(struct ei_pointer_absolute *pointer_absolute) { struct ei *ei = ei_pointer_absolute_get_context(pointer_absolute); ei_unregister_object(ei, &pointer_absolute->proto_object); } OBJECT_IMPLEMENT_REF(ei_pointer_absolute); OBJECT_IMPLEMENT_UNREF_CLEANUP(ei_pointer_absolute); static OBJECT_IMPLEMENT_CREATE(ei_pointer_absolute); static OBJECT_IMPLEMENT_PARENT(ei_pointer_absolute, ei_device); OBJECT_IMPLEMENT_GETTER_AS_REF(ei_pointer_absolute, proto_object, const struct brei_object*); struct ei_device * ei_pointer_absolute_get_device(struct ei_pointer_absolute *pointer_absolute) { return ei_pointer_absolute_parent(pointer_absolute); } struct ei* ei_pointer_absolute_get_context(struct ei_pointer_absolute *pointer_absolute) { return ei_device_get_context(ei_pointer_absolute_get_device(pointer_absolute)); } const struct ei_pointer_absolute_interface * ei_pointer_absolute_get_interface(struct ei_pointer_absolute *pointer_absolute) { struct ei_device *device = ei_pointer_absolute_get_device(pointer_absolute); return ei_device_get_pointer_absolute_interface(device); } struct ei_pointer_absolute * ei_pointer_absolute_new(struct ei_device *device, object_id_t id, uint32_t version) { struct ei_pointer_absolute *pointer_absolute = ei_pointer_absolute_create(&device->object); struct ei *ei = ei_device_get_context(device); pointer_absolute->proto_object.id = id; pointer_absolute->proto_object.implementation = pointer_absolute; pointer_absolute->proto_object.interface = &ei_pointer_absolute_proto_interface; pointer_absolute->proto_object.version = version; ei_register_object(ei, &pointer_absolute->proto_object); return pointer_absolute; /* ref owned by caller */ }