Paolo Bonzini | cde3c42 | 2024-10-18 16:30:56 +0200 | [diff] [blame] | 1 | // Copyright 2024, Linaro Limited |
| 2 | // Author(s): Manos Pitsidianakis <manos.pitsidianakis@linaro.org> |
| 3 | // SPDX-License-Identifier: GPL-2.0-or-later |
| 4 | |
Paolo Bonzini | 9f7d452 | 2024-10-24 13:53:59 +0200 | [diff] [blame] | 5 | use std::{ffi::CStr, os::raw::c_void}; |
Paolo Bonzini | cde3c42 | 2024-10-18 16:30:56 +0200 | [diff] [blame] | 6 | |
| 7 | use qemu_api::{ |
| 8 | bindings::*, |
Paolo Bonzini | 718e255 | 2024-10-25 08:23:53 +0200 | [diff] [blame] | 9 | c_str, declare_properties, define_property, |
Paolo Bonzini | cde3c42 | 2024-10-18 16:30:56 +0200 | [diff] [blame] | 10 | definitions::{Class, ObjectImpl}, |
Paolo Bonzini | ce4a144 | 2024-10-25 09:20:16 +0200 | [diff] [blame] | 11 | device_class, device_class_init, |
Manos Pitsidianakis | 0a65e41 | 2024-10-25 07:55:50 +0200 | [diff] [blame] | 12 | zeroable::Zeroable, |
Paolo Bonzini | cde3c42 | 2024-10-18 16:30:56 +0200 | [diff] [blame] | 13 | }; |
| 14 | |
| 15 | #[test] |
| 16 | fn test_device_decl_macros() { |
| 17 | // Test that macros can compile. |
Manos Pitsidianakis | 0a65e41 | 2024-10-25 07:55:50 +0200 | [diff] [blame] | 18 | pub static VMSTATE: VMStateDescription = VMStateDescription { |
Paolo Bonzini | 718e255 | 2024-10-25 08:23:53 +0200 | [diff] [blame] | 19 | name: c_str!("name").as_ptr(), |
Paolo Bonzini | cde3c42 | 2024-10-18 16:30:56 +0200 | [diff] [blame] | 20 | unmigratable: true, |
Manos Pitsidianakis | 0a65e41 | 2024-10-25 07:55:50 +0200 | [diff] [blame] | 21 | ..Zeroable::ZERO |
| 22 | }; |
Paolo Bonzini | cde3c42 | 2024-10-18 16:30:56 +0200 | [diff] [blame] | 23 | |
Junjie Mao | f351840 | 2024-10-24 12:25:15 +0200 | [diff] [blame] | 24 | #[derive(qemu_api_macros::offsets)] |
Paolo Bonzini | cde3c42 | 2024-10-18 16:30:56 +0200 | [diff] [blame] | 25 | #[repr(C)] |
| 26 | #[derive(qemu_api_macros::Object)] |
| 27 | pub struct DummyState { |
| 28 | pub _parent: DeviceState, |
| 29 | pub migrate_clock: bool, |
| 30 | } |
| 31 | |
| 32 | #[repr(C)] |
| 33 | pub struct DummyClass { |
| 34 | pub _parent: DeviceClass, |
| 35 | } |
| 36 | |
| 37 | declare_properties! { |
| 38 | DUMMY_PROPERTIES, |
| 39 | define_property!( |
Paolo Bonzini | 718e255 | 2024-10-25 08:23:53 +0200 | [diff] [blame] | 40 | c_str!("migrate-clk"), |
Paolo Bonzini | cde3c42 | 2024-10-18 16:30:56 +0200 | [diff] [blame] | 41 | DummyState, |
| 42 | migrate_clock, |
| 43 | unsafe { &qdev_prop_bool }, |
| 44 | bool |
| 45 | ), |
| 46 | } |
| 47 | |
| 48 | device_class_init! { |
| 49 | dummy_class_init, |
| 50 | props => DUMMY_PROPERTIES, |
| 51 | realize_fn => None, |
| 52 | legacy_reset_fn => None, |
| 53 | vmsd => VMSTATE, |
| 54 | } |
| 55 | |
| 56 | impl ObjectImpl for DummyState { |
| 57 | type Class = DummyClass; |
| 58 | const TYPE_INFO: qemu_api::bindings::TypeInfo = qemu_api::type_info! { Self }; |
Paolo Bonzini | 718e255 | 2024-10-25 08:23:53 +0200 | [diff] [blame] | 59 | const TYPE_NAME: &'static CStr = c_str!("dummy"); |
Paolo Bonzini | ce4a144 | 2024-10-25 09:20:16 +0200 | [diff] [blame] | 60 | const PARENT_TYPE_NAME: Option<&'static CStr> = Some(device_class::TYPE_DEVICE); |
Paolo Bonzini | cde3c42 | 2024-10-18 16:30:56 +0200 | [diff] [blame] | 61 | const ABSTRACT: bool = false; |
| 62 | const INSTANCE_INIT: Option<unsafe extern "C" fn(obj: *mut Object)> = None; |
| 63 | const INSTANCE_POST_INIT: Option<unsafe extern "C" fn(obj: *mut Object)> = None; |
| 64 | const INSTANCE_FINALIZE: Option<unsafe extern "C" fn(obj: *mut Object)> = None; |
| 65 | } |
| 66 | |
| 67 | impl Class for DummyClass { |
Paolo Bonzini | 9f7d452 | 2024-10-24 13:53:59 +0200 | [diff] [blame] | 68 | const CLASS_INIT: Option<unsafe extern "C" fn(klass: *mut ObjectClass, data: *mut c_void)> = |
| 69 | Some(dummy_class_init); |
Paolo Bonzini | cde3c42 | 2024-10-18 16:30:56 +0200 | [diff] [blame] | 70 | const CLASS_BASE_INIT: Option< |
Paolo Bonzini | 9f7d452 | 2024-10-24 13:53:59 +0200 | [diff] [blame] | 71 | unsafe extern "C" fn(klass: *mut ObjectClass, data: *mut c_void), |
Paolo Bonzini | cde3c42 | 2024-10-18 16:30:56 +0200 | [diff] [blame] | 72 | > = None; |
| 73 | } |
| 74 | |
| 75 | unsafe { |
| 76 | module_call_init(module_init_type::MODULE_INIT_QOM); |
| 77 | object_unref(object_new(DummyState::TYPE_NAME.as_ptr()) as *mut _); |
| 78 | } |
| 79 | } |