object.c 41.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * QEMU Object Model
 *
 * Copyright IBM, Corp. 2011
 *
 * Authors:
 *  Anthony Liguori   <aliguori@us.ibm.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 */

13
#include "qom/object.h"
14
#include "qemu-common.h"
15
#include "qapi/visitor.h"
16
#include "qapi-visit.h"
17 18
#include "qapi/string-input-visitor.h"
#include "qapi/string-output-visitor.h"
19
#include "qapi/qmp/qerror.h"
P
Paolo Bonzini 已提交
20
#include "trace.h"
21

22 23
/* TODO: replace QObject with a simpler visitor to avoid a dependency
 * of the QOM core on QObject?  */
24
#include "qom/qom-qobject.h"
25 26 27 28
#include "qapi/qmp/qobject.h"
#include "qapi/qmp/qbool.h"
#include "qapi/qmp/qint.h"
#include "qapi/qmp/qstring.h"
29

30 31 32 33 34 35 36
#define MAX_INTERFACES 32

typedef struct InterfaceImpl InterfaceImpl;
typedef struct TypeImpl TypeImpl;

struct InterfaceImpl
{
A
Anthony Liguori 已提交
37
    const char *typename;
38 39 40 41 42 43 44 45 46 47 48
};

struct TypeImpl
{
    const char *name;

    size_t class_size;

    size_t instance_size;

    void (*class_init)(ObjectClass *klass, void *data);
P
Paolo Bonzini 已提交
49
    void (*class_base_init)(ObjectClass *klass, void *data);
50 51 52 53 54
    void (*class_finalize)(ObjectClass *klass, void *data);

    void *class_data;

    void (*instance_init)(Object *obj);
55
    void (*instance_post_init)(Object *obj);
56 57 58 59 60 61 62 63 64 65 66 67 68
    void (*instance_finalize)(Object *obj);

    bool abstract;

    const char *parent;
    TypeImpl *parent_type;

    ObjectClass *class;

    int num_interfaces;
    InterfaceImpl interfaces[MAX_INTERFACES];
};

69 70
static Type type_interface;

71 72 73 74 75 76 77 78 79 80 81
static GHashTable *type_table_get(void)
{
    static GHashTable *type_table;

    if (type_table == NULL) {
        type_table = g_hash_table_new(g_str_hash, g_str_equal);
    }

    return type_table;
}

82 83
static bool enumerating_types;

84 85
static void type_table_add(TypeImpl *ti)
{
86
    assert(!enumerating_types);
87 88 89 90 91 92 93 94
    g_hash_table_insert(type_table_get(), (void *)ti->name, ti);
}

static TypeImpl *type_table_lookup(const char *name)
{
    return g_hash_table_lookup(type_table_get(), name);
}

95
static TypeImpl *type_new(const TypeInfo *info)
96 97
{
    TypeImpl *ti = g_malloc0(sizeof(*ti));
A
Anthony Liguori 已提交
98
    int i;
99 100 101

    g_assert(info->name != NULL);

102 103 104 105 106
    if (type_table_lookup(info->name) != NULL) {
        fprintf(stderr, "Registering `%s' which already exists\n", info->name);
        abort();
    }

107 108 109 110 111 112 113
    ti->name = g_strdup(info->name);
    ti->parent = g_strdup(info->parent);

    ti->class_size = info->class_size;
    ti->instance_size = info->instance_size;

    ti->class_init = info->class_init;
P
Paolo Bonzini 已提交
114
    ti->class_base_init = info->class_base_init;
115 116 117 118
    ti->class_finalize = info->class_finalize;
    ti->class_data = info->class_data;

    ti->instance_init = info->instance_init;
119
    ti->instance_post_init = info->instance_post_init;
120 121 122 123
    ti->instance_finalize = info->instance_finalize;

    ti->abstract = info->abstract;

A
Anthony Liguori 已提交
124 125
    for (i = 0; info->interfaces && info->interfaces[i].type; i++) {
        ti->interfaces[i].typename = g_strdup(info->interfaces[i].type);
126
    }
A
Anthony Liguori 已提交
127
    ti->num_interfaces = i;
128

129 130
    return ti;
}
131

132 133 134 135 136 137
static TypeImpl *type_register_internal(const TypeInfo *info)
{
    TypeImpl *ti;
    ti = type_new(info);

    type_table_add(ti);
138 139 140
    return ti;
}

141 142 143 144 145 146
TypeImpl *type_register(const TypeInfo *info)
{
    assert(info->parent);
    return type_register_internal(info);
}

147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
TypeImpl *type_register_static(const TypeInfo *info)
{
    return type_register(info);
}

static TypeImpl *type_get_by_name(const char *name)
{
    if (name == NULL) {
        return NULL;
    }

    return type_table_lookup(name);
}

static TypeImpl *type_get_parent(TypeImpl *type)
{
    if (!type->parent_type && type->parent) {
        type->parent_type = type_get_by_name(type->parent);
        g_assert(type->parent_type != NULL);
    }

    return type->parent_type;
}

static bool type_has_parent(TypeImpl *type)
{
    return (type->parent != NULL);
}

static size_t type_class_get_size(TypeImpl *ti)
{
    if (ti->class_size) {
        return ti->class_size;
    }

    if (type_has_parent(ti)) {
        return type_class_get_size(type_get_parent(ti));
    }

    return sizeof(ObjectClass);
}

189 190 191 192 193 194 195 196 197 198 199 200 201
static size_t type_object_get_size(TypeImpl *ti)
{
    if (ti->instance_size) {
        return ti->instance_size;
    }

    if (type_has_parent(ti)) {
        return type_object_get_size(type_get_parent(ti));
    }

    return 0;
}

A
Anthony Liguori 已提交
202
static bool type_is_ancestor(TypeImpl *type, TypeImpl *target_type)
203
{
A
Anthony Liguori 已提交
204 205 206 207 208 209 210
    assert(target_type);

    /* Check if typename is a direct ancestor of type */
    while (type) {
        if (type == target_type) {
            return true;
        }
211

A
Anthony Liguori 已提交
212 213 214 215 216 217 218 219
        type = type_get_parent(type);
    }

    return false;
}

static void type_initialize(TypeImpl *ti);

220 221
static void type_initialize_interface(TypeImpl *ti, TypeImpl *interface_type,
                                      TypeImpl *parent_type)
A
Anthony Liguori 已提交
222 223 224 225 226
{
    InterfaceClass *new_iface;
    TypeInfo info = { };
    TypeImpl *iface_impl;

227 228
    info.parent = parent_type->name;
    info.name = g_strdup_printf("%s::%s", ti->name, interface_type->name);
A
Anthony Liguori 已提交
229 230
    info.abstract = true;

231 232
    iface_impl = type_new(&info);
    iface_impl->parent_type = parent_type;
A
Anthony Liguori 已提交
233 234 235 236 237
    type_initialize(iface_impl);
    g_free((char *)info.name);

    new_iface = (InterfaceClass *)iface_impl->class;
    new_iface->concrete_class = ti->class;
238
    new_iface->interface_type = interface_type;
A
Anthony Liguori 已提交
239 240 241

    ti->class->interfaces = g_slist_append(ti->class->interfaces,
                                           iface_impl->class);
242 243
}

244
static void type_initialize(TypeImpl *ti)
245
{
P
Paolo Bonzini 已提交
246
    TypeImpl *parent;
247 248 249 250 251 252

    if (ti->class) {
        return;
    }

    ti->class_size = type_class_get_size(ti);
253
    ti->instance_size = type_object_get_size(ti);
254 255 256

    ti->class = g_malloc0(ti->class_size);

P
Paolo Bonzini 已提交
257 258
    parent = type_get_parent(ti);
    if (parent) {
259
        type_initialize(parent);
A
Anthony Liguori 已提交
260 261
        GSList *e;
        int i;
262 263

        g_assert(parent->class_size <= ti->class_size);
P
Paolo Bonzini 已提交
264
        memcpy(ti->class, parent->class, parent->class_size);
265
        ti->class->interfaces = NULL;
A
Anthony Liguori 已提交
266 267

        for (e = parent->class->interfaces; e; e = e->next) {
268 269 270 271
            InterfaceClass *iface = e->data;
            ObjectClass *klass = OBJECT_CLASS(iface);

            type_initialize_interface(ti, iface->interface_type, klass->type);
A
Anthony Liguori 已提交
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
        }

        for (i = 0; i < ti->num_interfaces; i++) {
            TypeImpl *t = type_get_by_name(ti->interfaces[i].typename);
            for (e = ti->class->interfaces; e; e = e->next) {
                TypeImpl *target_type = OBJECT_CLASS(e->data)->type;

                if (type_is_ancestor(target_type, t)) {
                    break;
                }
            }

            if (e) {
                continue;
            }

288
            type_initialize_interface(ti, t, t);
A
Anthony Liguori 已提交
289
        }
P
Paolo Bonzini 已提交
290
    }
291

P
Paolo Bonzini 已提交
292
    ti->class->type = ti;
P
Paolo Bonzini 已提交
293

P
Paolo Bonzini 已提交
294 295 296
    while (parent) {
        if (parent->class_base_init) {
            parent->class_base_init(ti->class, ti->class_data);
P
Paolo Bonzini 已提交
297
        }
P
Paolo Bonzini 已提交
298
        parent = type_get_parent(parent);
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
    }

    if (ti->class_init) {
        ti->class_init(ti->class, ti->class_data);
    }
}

static void object_init_with_type(Object *obj, TypeImpl *ti)
{
    if (type_has_parent(ti)) {
        object_init_with_type(obj, type_get_parent(ti));
    }

    if (ti->instance_init) {
        ti->instance_init(obj);
    }
}

317 318 319 320 321 322 323 324 325 326 327
static void object_post_init_with_type(Object *obj, TypeImpl *ti)
{
    if (ti->instance_post_init) {
        ti->instance_post_init(obj);
    }

    if (type_has_parent(ti)) {
        object_post_init_with_type(obj, type_get_parent(ti));
    }
}

328
void object_initialize_with_type(void *data, size_t size, TypeImpl *type)
329 330 331 332
{
    Object *obj = data;

    g_assert(type != NULL);
333
    type_initialize(type);
334 335

    g_assert(type->instance_size >= sizeof(Object));
336
    g_assert(type->abstract == false);
337
    g_assert(size >= type->instance_size);
338 339 340

    memset(obj, 0, type->instance_size);
    obj->class = type->class;
341
    object_ref(obj);
342
    QTAILQ_INIT(&obj->properties);
343
    object_init_with_type(obj, type);
344
    object_post_init_with_type(obj, type);
345 346
}

347
void object_initialize(void *data, size_t size, const char *typename)
348 349 350
{
    TypeImpl *type = type_get_by_name(typename);

351
    object_initialize_with_type(data, size, type);
352 353
}

354 355 356 357 358
static inline bool object_property_is_child(ObjectProperty *prop)
{
    return strstart(prop->type, "child<", NULL);
}

359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
static void object_property_del_all(Object *obj)
{
    while (!QTAILQ_EMPTY(&obj->properties)) {
        ObjectProperty *prop = QTAILQ_FIRST(&obj->properties);

        QTAILQ_REMOVE(&obj->properties, prop, node);

        if (prop->release) {
            prop->release(obj, prop->name, prop->opaque);
        }

        g_free(prop->name);
        g_free(prop->type);
        g_free(prop);
    }
}

static void object_property_del_child(Object *obj, Object *child, Error **errp)
{
    ObjectProperty *prop;

    QTAILQ_FOREACH(prop, &obj->properties, node) {
381
        if (object_property_is_child(prop) && prop->opaque == child) {
382
            object_property_del(obj, prop->name, errp);
P
Paolo Bonzini 已提交
383
            break;
384 385 386 387 388 389
        }
    }
}

void object_unparent(Object *obj)
{
390 391 392 393
    if (!obj->parent) {
        return;
    }

394
    object_ref(obj);
395 396 397
    if (obj->class->unparent) {
        (obj->class->unparent)(obj);
    }
398 399
    if (obj->parent) {
        object_property_del_child(obj->parent, obj, NULL);
400
        obj->parent = NULL;
401
    }
402
    object_unref(obj);
403 404
}

405 406 407 408 409 410 411 412 413 414 415
static void object_deinit(Object *obj, TypeImpl *type)
{
    if (type->instance_finalize) {
        type->instance_finalize(obj);
    }

    if (type_has_parent(type)) {
        object_deinit(obj, type_get_parent(type));
    }
}

P
Paolo Bonzini 已提交
416
static void object_finalize(void *data)
417 418 419 420 421
{
    Object *obj = data;
    TypeImpl *ti = obj->class->type;

    object_deinit(obj, ti);
422
    object_property_del_all(obj);
423 424

    g_assert(obj->ref == 0);
425 426 427
    if (obj->free) {
        obj->free(obj);
    }
428 429 430 431 432 433 434
}

Object *object_new_with_type(Type type)
{
    Object *obj;

    g_assert(type != NULL);
435
    type_initialize(type);
436 437

    obj = g_malloc(type->instance_size);
438
    object_initialize_with_type(obj, type->instance_size, type);
439
    obj->free = g_free;
440 441 442 443 444 445 446 447 448 449 450 451 452

    return obj;
}

Object *object_new(const char *typename)
{
    TypeImpl *ti = type_get_by_name(typename);

    return object_new_with_type(ti);
}

Object *object_dynamic_cast(Object *obj, const char *typename)
{
453
    if (obj && object_class_dynamic_cast(object_get_class(obj), typename)) {
454 455 456
        return obj;
    }

457 458 459
    return NULL;
}

460 461
Object *object_dynamic_cast_assert(Object *obj, const char *typename,
                                   const char *file, int line, const char *func)
462
{
P
Paolo Bonzini 已提交
463 464 465
    trace_object_dynamic_cast_assert(obj ? obj->class->type->name : "(null)",
                                     typename, file, line, func);

466
#ifdef CONFIG_QOM_CAST_DEBUG
467 468 469
    int i;
    Object *inst;

470
    for (i = 0; obj && i < OBJECT_CLASS_CAST_CACHE; i++) {
471
        if (obj->class->object_cast_cache[i] == typename) {
472 473 474 475 476
            goto out;
        }
    }

    inst = object_dynamic_cast(obj, typename);
477

478
    if (!inst && obj) {
479 480
        fprintf(stderr, "%s:%d:%s: Object %p is not an instance of type %s\n",
                file, line, func, obj, typename);
481 482 483
        abort();
    }

484
    assert(obj == inst);
485

486
    if (obj && obj == inst) {
487
        for (i = 1; i < OBJECT_CLASS_CAST_CACHE; i++) {
488 489
            obj->class->object_cast_cache[i - 1] =
                    obj->class->object_cast_cache[i];
490
        }
491
        obj->class->object_cast_cache[i - 1] = typename;
492 493 494
    }

out:
495 496
#endif
    return obj;
497 498 499 500 501
}

ObjectClass *object_class_dynamic_cast(ObjectClass *class,
                                       const char *typename)
{
A
Anthony Liguori 已提交
502
    ObjectClass *ret = NULL;
503 504
    TypeImpl *target_type;
    TypeImpl *type;
505

506 507 508 509
    if (!class) {
        return NULL;
    }

510
    /* A simple fast path that can trigger a lot for leaf classes.  */
511
    type = class->type;
512 513 514 515
    if (type->name == typename) {
        return class;
    }

516
    target_type = type_get_by_name(typename);
517 518 519 520 521
    if (!target_type) {
        /* target class type unknown, so fail the cast */
        return NULL;
    }

522 523
    if (type->class->interfaces &&
            type_is_ancestor(target_type, type_interface)) {
A
Anthony Liguori 已提交
524 525
        int found = 0;
        GSList *i;
526

A
Anthony Liguori 已提交
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
        for (i = class->interfaces; i; i = i->next) {
            ObjectClass *target_class = i->data;

            if (type_is_ancestor(target_class->type, target_type)) {
                ret = target_class;
                found++;
            }
         }

        /* The match was ambiguous, don't allow a cast */
        if (found > 1) {
            ret = NULL;
        }
    } else if (type_is_ancestor(type, target_type)) {
        ret = class;
542 543
    }

A
Anthony Liguori 已提交
544
    return ret;
545 546 547
}

ObjectClass *object_class_dynamic_cast_assert(ObjectClass *class,
548 549 550
                                              const char *typename,
                                              const char *file, int line,
                                              const char *func)
551
{
P
Paolo Bonzini 已提交
552 553 554 555
    ObjectClass *ret;

    trace_object_class_dynamic_cast_assert(class ? class->type->name : "(null)",
                                           typename, file, line, func);
556

557 558 559
#ifdef CONFIG_QOM_CAST_DEBUG
    int i;

560
    for (i = 0; class && i < OBJECT_CLASS_CAST_CACHE; i++) {
561
        if (class->class_cast_cache[i] == typename) {
562 563 564 565 566
            ret = class;
            goto out;
        }
    }
#else
567
    if (!class || !class->interfaces) {
568 569 570 571
        return class;
    }
#endif

P
Paolo Bonzini 已提交
572
    ret = object_class_dynamic_cast(class, typename);
573
    if (!ret && class) {
574 575
        fprintf(stderr, "%s:%d:%s: Object %p is not an instance of type %s\n",
                file, line, func, class, typename);
576 577 578
        abort();
    }

579
#ifdef CONFIG_QOM_CAST_DEBUG
580
    if (class && ret == class) {
581
        for (i = 1; i < OBJECT_CLASS_CAST_CACHE; i++) {
582
            class->class_cast_cache[i - 1] = class->class_cast_cache[i];
583
        }
584
        class->class_cast_cache[i - 1] = typename;
585 586 587
    }
out:
#endif
588 589 590 591 592 593 594 595 596 597 598 599 600
    return ret;
}

const char *object_get_typename(Object *obj)
{
    return obj->class->type->name;
}

ObjectClass *object_get_class(Object *obj)
{
    return obj->class;
}

601 602 603 604 605
bool object_class_is_abstract(ObjectClass *klass)
{
    return klass->type->abstract;
}

606 607 608 609 610 611 612 613 614 615 616 617 618
const char *object_class_get_name(ObjectClass *klass)
{
    return klass->type->name;
}

ObjectClass *object_class_by_name(const char *typename)
{
    TypeImpl *type = type_get_by_name(typename);

    if (!type) {
        return NULL;
    }

619
    type_initialize(type);
620 621 622 623

    return type->class;
}

624 625 626 627 628 629 630 631 632 633 634 635 636
ObjectClass *object_class_get_parent(ObjectClass *class)
{
    TypeImpl *type = type_get_parent(class->type);

    if (!type) {
        return NULL;
    }

    type_initialize(type);

    return type->class;
}

637 638 639
typedef struct OCFData
{
    void (*fn)(ObjectClass *klass, void *opaque);
640 641
    const char *implements_type;
    bool include_abstract;
642 643 644 645 646 647 648 649
    void *opaque;
} OCFData;

static void object_class_foreach_tramp(gpointer key, gpointer value,
                                       gpointer opaque)
{
    OCFData *data = opaque;
    TypeImpl *type = value;
650
    ObjectClass *k;
651

652
    type_initialize(type);
653
    k = type->class;
654

655 656 657 658 659 660 661 662 663 664
    if (!data->include_abstract && type->abstract) {
        return;
    }

    if (data->implements_type && 
        !object_class_dynamic_cast(k, data->implements_type)) {
        return;
    }

    data->fn(k, data->opaque);
665 666 667
}

void object_class_foreach(void (*fn)(ObjectClass *klass, void *opaque),
668
                          const char *implements_type, bool include_abstract,
669 670
                          void *opaque)
{
671
    OCFData data = { fn, implements_type, include_abstract, opaque };
672

673
    enumerating_types = true;
674
    g_hash_table_foreach(type_table_get(), object_class_foreach_tramp, &data);
675
    enumerating_types = false;
676
}
677

P
Paolo Bonzini 已提交
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
int object_child_foreach(Object *obj, int (*fn)(Object *child, void *opaque),
                         void *opaque)
{
    ObjectProperty *prop;
    int ret = 0;

    QTAILQ_FOREACH(prop, &obj->properties, node) {
        if (object_property_is_child(prop)) {
            ret = fn(prop->opaque, opaque);
            if (ret != 0) {
                break;
            }
        }
    }
    return ret;
}

695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
static void object_class_get_list_tramp(ObjectClass *klass, void *opaque)
{
    GSList **list = opaque;

    *list = g_slist_prepend(*list, klass);
}

GSList *object_class_get_list(const char *implements_type,
                              bool include_abstract)
{
    GSList *list = NULL;

    object_class_foreach(object_class_get_list_tramp,
                         implements_type, include_abstract, &list);
    return list;
}

712 713
void object_ref(Object *obj)
{
714
     atomic_inc(&obj->ref);
715 716 717 718 719 720 721
}

void object_unref(Object *obj)
{
    g_assert(obj->ref > 0);

    /* parent always holds a reference to its children */
722
    if (atomic_fetch_dec(&obj->ref) == 1) {
723 724 725 726
        object_finalize(obj);
    }
}

727 728 729 730 731 732
ObjectProperty *
object_property_add(Object *obj, const char *name, const char *type,
                    ObjectPropertyAccessor *get,
                    ObjectPropertyAccessor *set,
                    ObjectPropertyRelease *release,
                    void *opaque, Error **errp)
733
{
734 735 736 737 738 739 740
    ObjectProperty *prop;

    QTAILQ_FOREACH(prop, &obj->properties, node) {
        if (strcmp(prop->name, name) == 0) {
            error_setg(errp, "attempt to add duplicate property '%s'"
                       " to object (type '%s')", name,
                       object_get_typename(obj));
741
            return NULL;
742 743 744 745
        }
    }

    prop = g_malloc0(sizeof(*prop));
746 747 748 749 750 751 752 753 754 755

    prop->name = g_strdup(name);
    prop->type = g_strdup(type);

    prop->get = get;
    prop->set = set;
    prop->release = release;
    prop->opaque = opaque;

    QTAILQ_INSERT_TAIL(&obj->properties, prop, node);
756
    return prop;
757 758
}

759 760
ObjectProperty *object_property_find(Object *obj, const char *name,
                                     Error **errp)
761 762 763 764 765 766 767 768 769
{
    ObjectProperty *prop;

    QTAILQ_FOREACH(prop, &obj->properties, node) {
        if (strcmp(prop->name, name) == 0) {
            return prop;
        }
    }

770
    error_setg(errp, "Property '.%s' not found", name);
771 772 773 774 775
    return NULL;
}

void object_property_del(Object *obj, const char *name, Error **errp)
{
776
    ObjectProperty *prop = object_property_find(obj, name, errp);
A
Anthony Liguori 已提交
777 778 779
    if (prop == NULL) {
        return;
    }
780

A
Anthony Liguori 已提交
781 782 783 784 785
    if (prop->release) {
        prop->release(obj, name, prop->opaque);
    }

    QTAILQ_REMOVE(&obj->properties, prop, node);
786 787 788 789 790 791 792 793 794

    g_free(prop->name);
    g_free(prop->type);
    g_free(prop);
}

void object_property_get(Object *obj, Visitor *v, const char *name,
                         Error **errp)
{
795
    ObjectProperty *prop = object_property_find(obj, name, errp);
796 797 798 799 800 801 802 803 804 805 806 807 808 809
    if (prop == NULL) {
        return;
    }

    if (!prop->get) {
        error_set(errp, QERR_PERMISSION_DENIED);
    } else {
        prop->get(obj, v, prop->opaque, name, errp);
    }
}

void object_property_set(Object *obj, Visitor *v, const char *name,
                         Error **errp)
{
810
    ObjectProperty *prop = object_property_find(obj, name, errp);
811 812 813 814 815 816 817 818 819 820 821
    if (prop == NULL) {
        return;
    }

    if (!prop->set) {
        error_set(errp, QERR_PERMISSION_DENIED);
    } else {
        prop->set(obj, v, prop->opaque, name, errp);
    }
}

822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
void object_property_set_str(Object *obj, const char *value,
                             const char *name, Error **errp)
{
    QString *qstr = qstring_from_str(value);
    object_property_set_qobject(obj, QOBJECT(qstr), name, errp);

    QDECREF(qstr);
}

char *object_property_get_str(Object *obj, const char *name,
                              Error **errp)
{
    QObject *ret = object_property_get_qobject(obj, name, errp);
    QString *qstring;
    char *retval;

    if (!ret) {
        return NULL;
    }
    qstring = qobject_to_qstring(ret);
    if (!qstring) {
        error_set(errp, QERR_INVALID_PARAMETER_TYPE, name, "string");
        retval = NULL;
    } else {
        retval = g_strdup(qstring_get_str(qstring));
    }

    QDECREF(qstring);
    return retval;
}

853 854 855
void object_property_set_link(Object *obj, Object *value,
                              const char *name, Error **errp)
{
856 857 858
    gchar *path = object_get_canonical_path(value);
    object_property_set_str(obj, path, name, errp);
    g_free(path);
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
}

Object *object_property_get_link(Object *obj, const char *name,
                                 Error **errp)
{
    char *str = object_property_get_str(obj, name, errp);
    Object *target = NULL;

    if (str && *str) {
        target = object_resolve_path(str, NULL);
        if (!target) {
            error_set(errp, QERR_DEVICE_NOT_FOUND, str);
        }
    }

    g_free(str);
    return target;
}

878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937
void object_property_set_bool(Object *obj, bool value,
                              const char *name, Error **errp)
{
    QBool *qbool = qbool_from_int(value);
    object_property_set_qobject(obj, QOBJECT(qbool), name, errp);

    QDECREF(qbool);
}

bool object_property_get_bool(Object *obj, const char *name,
                              Error **errp)
{
    QObject *ret = object_property_get_qobject(obj, name, errp);
    QBool *qbool;
    bool retval;

    if (!ret) {
        return false;
    }
    qbool = qobject_to_qbool(ret);
    if (!qbool) {
        error_set(errp, QERR_INVALID_PARAMETER_TYPE, name, "boolean");
        retval = false;
    } else {
        retval = qbool_get_int(qbool);
    }

    QDECREF(qbool);
    return retval;
}

void object_property_set_int(Object *obj, int64_t value,
                             const char *name, Error **errp)
{
    QInt *qint = qint_from_int(value);
    object_property_set_qobject(obj, QOBJECT(qint), name, errp);

    QDECREF(qint);
}

int64_t object_property_get_int(Object *obj, const char *name,
                                Error **errp)
{
    QObject *ret = object_property_get_qobject(obj, name, errp);
    QInt *qint;
    int64_t retval;

    if (!ret) {
        return -1;
    }
    qint = qobject_to_qint(ret);
    if (!qint) {
        error_set(errp, QERR_INVALID_PARAMETER_TYPE, name, "int");
        retval = -1;
    } else {
        retval = qint_get_int(qint);
    }

    QDECREF(qint);
    return retval;
938 939
}

940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973
int object_property_get_enum(Object *obj, const char *name,
                             const char *strings[], Error **errp)
{
    StringOutputVisitor *sov;
    StringInputVisitor *siv;
    int ret;

    sov = string_output_visitor_new(false);
    object_property_get(obj, string_output_get_visitor(sov), name, errp);
    siv = string_input_visitor_new(string_output_get_string(sov));
    string_output_visitor_cleanup(sov);
    visit_type_enum(string_input_get_visitor(siv),
                    &ret, strings, NULL, name, errp);
    string_input_visitor_cleanup(siv);

    return ret;
}

void object_property_get_uint16List(Object *obj, const char *name,
                                    uint16List **list, Error **errp)
{
    StringOutputVisitor *ov;
    StringInputVisitor *iv;

    ov = string_output_visitor_new(false);
    object_property_get(obj, string_output_get_visitor(ov),
                        name, errp);
    iv = string_input_visitor_new(string_output_get_string(ov));
    visit_type_uint16List(string_input_get_visitor(iv),
                          list, NULL, errp);
    string_output_visitor_cleanup(ov);
    string_input_visitor_cleanup(iv);
}

974 975 976 977 978 979 980 981 982 983
void object_property_parse(Object *obj, const char *string,
                           const char *name, Error **errp)
{
    StringInputVisitor *mi;
    mi = string_input_visitor_new(string);
    object_property_set(obj, string_input_get_visitor(mi), name, errp);

    string_input_visitor_cleanup(mi);
}

984
char *object_property_print(Object *obj, const char *name, bool human,
985 986 987 988 989
                            Error **errp)
{
    StringOutputVisitor *mo;
    char *string;

990
    mo = string_output_visitor_new(human);
991
    object_property_get(obj, string_output_get_visitor(mo), name, errp);
992 993 994
    string = string_output_get_string(mo);
    string_output_visitor_cleanup(mo);
    return string;
995 996
}

997 998
const char *object_property_get_type(Object *obj, const char *name, Error **errp)
{
999
    ObjectProperty *prop = object_property_find(obj, name, errp);
1000 1001 1002 1003 1004 1005 1006 1007 1008
    if (prop == NULL) {
        return NULL;
    }

    return prop->type;
}

Object *object_get_root(void)
{
1009
    static Object *root;
1010

1011 1012
    if (!root) {
        root = object_new("container");
1013 1014
    }

1015
    return root;
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
}

static void object_get_child_property(Object *obj, Visitor *v, void *opaque,
                                      const char *name, Error **errp)
{
    Object *child = opaque;
    gchar *path;

    path = object_get_canonical_path(child);
    visit_type_str(v, &path, name, errp);
    g_free(path);
}

1029 1030 1031 1032 1033
static Object *object_resolve_child_property(Object *parent, void *opaque, const gchar *part)
{
    return opaque;
}

1034 1035 1036 1037 1038 1039 1040 1041
static void object_finalize_child_property(Object *obj, const char *name,
                                           void *opaque)
{
    Object *child = opaque;

    object_unref(child);
}

1042 1043 1044
void object_property_add_child(Object *obj, const char *name,
                               Object *child, Error **errp)
{
1045
    Error *local_err = NULL;
1046
    gchar *type;
1047
    ObjectProperty *op;
1048 1049 1050

    type = g_strdup_printf("child<%s>", object_get_typename(OBJECT(child)));

1051 1052
    op = object_property_add(obj, name, type, object_get_child_property, NULL,
                             object_finalize_child_property, child, &local_err);
1053 1054 1055 1056
    if (local_err) {
        error_propagate(errp, local_err);
        goto out;
    }
1057 1058

    op->resolve = object_resolve_child_property;
1059 1060 1061 1062
    object_ref(child);
    g_assert(child->parent == NULL);
    child->parent = obj;

1063
out:
1064 1065 1066
    g_free(type);
}

1067 1068 1069 1070 1071 1072
void object_property_allow_set_link(Object *obj, const char *name,
                                    Object *val, Error **errp)
{
    /* Allow the link to be set, always */
}

1073 1074
typedef struct {
    Object **child;
1075
    void (*check)(Object *, const char *, Object *, Error **);
1076 1077 1078
    ObjectPropertyLinkFlags flags;
} LinkProperty;

1079 1080 1081
static void object_get_link_property(Object *obj, Visitor *v, void *opaque,
                                     const char *name, Error **errp)
{
1082 1083
    LinkProperty *lprop = opaque;
    Object **child = lprop->child;
1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
    gchar *path;

    if (*child) {
        path = object_get_canonical_path(*child);
        visit_type_str(v, &path, name, errp);
        g_free(path);
    } else {
        path = (gchar *)"";
        visit_type_str(v, &path, name, errp);
    }
}

1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
/*
 * object_resolve_link:
 *
 * Lookup an object and ensure its type matches the link property type.  This
 * is similar to object_resolve_path() except type verification against the
 * link property is performed.
 *
 * Returns: The matched object or NULL on path lookup failures.
 */
static Object *object_resolve_link(Object *obj, const char *name,
                                   const char *path, Error **errp)
{
    const char *type;
    gchar *target_type;
    bool ambiguous = false;
    Object *target;

    /* Go from link<FOO> to FOO.  */
    type = object_property_get_type(obj, name, NULL);
    target_type = g_strndup(&type[5], strlen(type) - 6);
    target = object_resolve_path_type(path, target_type, &ambiguous);

    if (ambiguous) {
1119 1120
        error_set(errp, ERROR_CLASS_GENERIC_ERROR,
                  "Path '%s' does not uniquely identify an object", path);
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
    } else if (!target) {
        target = object_resolve_path(path, &ambiguous);
        if (target || ambiguous) {
            error_set(errp, QERR_INVALID_PARAMETER_TYPE, name, target_type);
        } else {
            error_set(errp, QERR_DEVICE_NOT_FOUND, path);
        }
        target = NULL;
    }
    g_free(target_type);

    return target;
}

1135 1136 1137
static void object_set_link_property(Object *obj, Visitor *v, void *opaque,
                                     const char *name, Error **errp)
{
1138
    Error *local_err = NULL;
1139 1140
    LinkProperty *prop = opaque;
    Object **child = prop->child;
1141 1142 1143
    Object *old_target = *child;
    Object *new_target = NULL;
    char *path = NULL;
1144

1145
    visit_type_str(v, &path, name, &local_err);
1146

1147 1148
    if (!local_err && strcmp(path, "") != 0) {
        new_target = object_resolve_link(obj, name, path, &local_err);
1149 1150 1151
    }

    g_free(path);
1152 1153 1154 1155
    if (local_err) {
        error_propagate(errp, local_err);
        return;
    }
1156

1157 1158 1159 1160 1161 1162
    prop->check(obj, name, new_target, &local_err);
    if (local_err) {
        error_propagate(errp, local_err);
        return;
    }

1163 1164 1165 1166
    if (new_target) {
        object_ref(new_target);
    }
    *child = new_target;
1167 1168 1169
    if (old_target != NULL) {
        object_unref(old_target);
    }
1170 1171
}

1172 1173 1174 1175 1176 1177 1178
static Object *object_resolve_link_property(Object *parent, void *opaque, const gchar *part)
{
    LinkProperty *lprop = opaque;

    return *lprop->child;
}

1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
static void object_release_link_property(Object *obj, const char *name,
                                         void *opaque)
{
    LinkProperty *prop = opaque;

    if ((prop->flags & OBJ_PROP_LINK_UNREF_ON_RELEASE) && *prop->child) {
        object_unref(*prop->child);
    }
    g_free(prop);
}

1190 1191
void object_property_add_link(Object *obj, const char *name,
                              const char *type, Object **child,
1192 1193
                              void (*check)(Object *, const char *,
                                            Object *, Error **),
1194
                              ObjectPropertyLinkFlags flags,
1195 1196
                              Error **errp)
{
1197 1198
    Error *local_err = NULL;
    LinkProperty *prop = g_malloc(sizeof(*prop));
1199
    gchar *full_type;
1200
    ObjectProperty *op;
1201

1202
    prop->child = child;
1203
    prop->check = check;
1204 1205
    prop->flags = flags;

1206 1207
    full_type = g_strdup_printf("link<%s>", type);

1208 1209 1210 1211 1212 1213
    op = object_property_add(obj, name, full_type,
                             object_get_link_property,
                             check ? object_set_link_property : NULL,
                             object_release_link_property,
                             prop,
                             &local_err);
1214 1215 1216
    if (local_err) {
        error_propagate(errp, local_err);
        g_free(prop);
1217
        goto out;
1218
    }
1219

1220 1221 1222
    op->resolve = object_resolve_link_property;

out:
1223 1224 1225
    g_free(full_type);
}

1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
gchar *object_get_canonical_path_component(Object *obj)
{
    ObjectProperty *prop = NULL;

    g_assert(obj);
    g_assert(obj->parent != NULL);

    QTAILQ_FOREACH(prop, &obj->parent->properties, node) {
        if (!object_property_is_child(prop)) {
            continue;
        }

        if (prop->opaque == obj) {
            return g_strdup(prop->name);
        }
    }

    /* obj had a parent but was not a child, should never happen */
    g_assert_not_reached();
    return NULL;
}

1248 1249 1250
gchar *object_get_canonical_path(Object *obj)
{
    Object *root = object_get_root();
1251
    char *newpath, *path = NULL;
1252 1253

    while (obj != root) {
1254
        char *component = object_get_canonical_path_component(obj);
1255

1256 1257 1258 1259 1260 1261 1262
        if (path) {
            newpath = g_strdup_printf("%s/%s", component, path);
            g_free(component);
            g_free(path);
            path = newpath;
        } else {
            path = component;
1263 1264 1265 1266 1267
        }

        obj = obj->parent;
    }

1268
    newpath = g_strdup_printf("/%s", path ? path : "");
1269 1270 1271 1272 1273
    g_free(path);

    return newpath;
}

1274
Object *object_resolve_path_component(Object *parent, const gchar *part)
P
Paolo Bonzini 已提交
1275
{
1276
    ObjectProperty *prop = object_property_find(parent, part, NULL);
P
Paolo Bonzini 已提交
1277 1278 1279 1280
    if (prop == NULL) {
        return NULL;
    }

1281 1282
    if (prop->resolve) {
        return prop->resolve(parent, prop->opaque, part);
P
Paolo Bonzini 已提交
1283 1284 1285 1286 1287
    } else {
        return NULL;
    }
}

1288 1289
static Object *object_resolve_abs_path(Object *parent,
                                          gchar **parts,
1290
                                          const char *typename,
1291 1292 1293 1294 1295
                                          int index)
{
    Object *child;

    if (parts[index] == NULL) {
1296
        return object_dynamic_cast(parent, typename);
1297 1298 1299
    }

    if (strcmp(parts[index], "") == 0) {
1300
        return object_resolve_abs_path(parent, parts, typename, index + 1);
1301 1302
    }

P
Paolo Bonzini 已提交
1303
    child = object_resolve_path_component(parent, parts[index]);
1304 1305 1306 1307
    if (!child) {
        return NULL;
    }

1308
    return object_resolve_abs_path(child, parts, typename, index + 1);
1309 1310 1311 1312
}

static Object *object_resolve_partial_path(Object *parent,
                                              gchar **parts,
1313
                                              const char *typename,
1314 1315 1316 1317 1318
                                              bool *ambiguous)
{
    Object *obj;
    ObjectProperty *prop;

1319
    obj = object_resolve_abs_path(parent, parts, typename, 0);
1320 1321 1322 1323

    QTAILQ_FOREACH(prop, &parent->properties, node) {
        Object *found;

1324
        if (!object_property_is_child(prop)) {
1325 1326 1327
            continue;
        }

1328 1329
        found = object_resolve_partial_path(prop->opaque, parts,
                                            typename, ambiguous);
1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
        if (found) {
            if (obj) {
                if (ambiguous) {
                    *ambiguous = true;
                }
                return NULL;
            }
            obj = found;
        }

        if (ambiguous && *ambiguous) {
            return NULL;
        }
    }

    return obj;
}

1348 1349
Object *object_resolve_path_type(const char *path, const char *typename,
                                 bool *ambiguous)
1350 1351 1352 1353 1354
{
    Object *obj;
    gchar **parts;

    parts = g_strsplit(path, "/", 0);
1355
    assert(parts);
1356

1357
    if (parts[0] == NULL || strcmp(parts[0], "") != 0) {
1358 1359 1360
        if (ambiguous) {
            *ambiguous = false;
        }
1361 1362
        obj = object_resolve_partial_path(object_get_root(), parts,
                                          typename, ambiguous);
1363
    } else {
1364
        obj = object_resolve_abs_path(object_get_root(), parts, typename, 1);
1365 1366 1367 1368 1369 1370 1371
    }

    g_strfreev(parts);

    return obj;
}

1372 1373 1374 1375 1376
Object *object_resolve_path(const char *path, bool *ambiguous)
{
    return object_resolve_path_type(path, TYPE_OBJECT, ambiguous);
}

1377 1378 1379 1380 1381 1382
typedef struct StringProperty
{
    char *(*get)(Object *, Error **);
    void (*set)(Object *, const char *, Error **);
} StringProperty;

1383 1384
static void property_get_str(Object *obj, Visitor *v, void *opaque,
                             const char *name, Error **errp)
1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
{
    StringProperty *prop = opaque;
    char *value;

    value = prop->get(obj, errp);
    if (value) {
        visit_type_str(v, &value, name, errp);
        g_free(value);
    }
}

1396 1397
static void property_set_str(Object *obj, Visitor *v, void *opaque,
                             const char *name, Error **errp)
1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412
{
    StringProperty *prop = opaque;
    char *value;
    Error *local_err = NULL;

    visit_type_str(v, &value, name, &local_err);
    if (local_err) {
        error_propagate(errp, local_err);
        return;
    }

    prop->set(obj, value, errp);
    g_free(value);
}

1413 1414
static void property_release_str(Object *obj, const char *name,
                                 void *opaque)
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424
{
    StringProperty *prop = opaque;
    g_free(prop);
}

void object_property_add_str(Object *obj, const char *name,
                           char *(*get)(Object *, Error **),
                           void (*set)(Object *, const char *, Error **),
                           Error **errp)
{
1425
    Error *local_err = NULL;
1426 1427 1428 1429 1430 1431
    StringProperty *prop = g_malloc0(sizeof(*prop));

    prop->get = get;
    prop->set = set;

    object_property_add(obj, name, "string",
1432 1433 1434
                        get ? property_get_str : NULL,
                        set ? property_set_str : NULL,
                        property_release_str,
1435 1436 1437 1438 1439
                        prop, &local_err);
    if (local_err) {
        error_propagate(errp, local_err);
        g_free(prop);
    }
1440
}
P
Paolo Bonzini 已提交
1441

1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
typedef struct BoolProperty
{
    bool (*get)(Object *, Error **);
    void (*set)(Object *, bool, Error **);
} BoolProperty;

static void property_get_bool(Object *obj, Visitor *v, void *opaque,
                              const char *name, Error **errp)
{
    BoolProperty *prop = opaque;
    bool value;

    value = prop->get(obj, errp);
    visit_type_bool(v, &value, name, errp);
}

static void property_set_bool(Object *obj, Visitor *v, void *opaque,
                              const char *name, Error **errp)
{
    BoolProperty *prop = opaque;
    bool value;
    Error *local_err = NULL;

    visit_type_bool(v, &value, name, &local_err);
    if (local_err) {
        error_propagate(errp, local_err);
        return;
    }

    prop->set(obj, value, errp);
}

static void property_release_bool(Object *obj, const char *name,
                                  void *opaque)
{
    BoolProperty *prop = opaque;
    g_free(prop);
}

void object_property_add_bool(Object *obj, const char *name,
                              bool (*get)(Object *, Error **),
                              void (*set)(Object *, bool, Error **),
                              Error **errp)
{
1486
    Error *local_err = NULL;
1487 1488 1489 1490 1491 1492 1493 1494 1495
    BoolProperty *prop = g_malloc0(sizeof(*prop));

    prop->get = get;
    prop->set = set;

    object_property_add(obj, name, "bool",
                        get ? property_get_bool : NULL,
                        set ? property_set_bool : NULL,
                        property_release_bool,
1496 1497 1498 1499 1500
                        prop, &local_err);
    if (local_err) {
        error_propagate(errp, local_err);
        g_free(prop);
    }
1501 1502
}

1503 1504 1505 1506 1507
static char *qdev_get_type(Object *obj, Error **errp)
{
    return g_strdup(object_get_typename(obj));
}

1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567
static void property_get_uint8_ptr(Object *obj, Visitor *v,
                                   void *opaque, const char *name,
                                   Error **errp)
{
    uint8_t value = *(uint8_t *)opaque;
    visit_type_uint8(v, &value, name, errp);
}

static void property_get_uint16_ptr(Object *obj, Visitor *v,
                                   void *opaque, const char *name,
                                   Error **errp)
{
    uint16_t value = *(uint16_t *)opaque;
    visit_type_uint16(v, &value, name, errp);
}

static void property_get_uint32_ptr(Object *obj, Visitor *v,
                                   void *opaque, const char *name,
                                   Error **errp)
{
    uint32_t value = *(uint32_t *)opaque;
    visit_type_uint32(v, &value, name, errp);
}

static void property_get_uint64_ptr(Object *obj, Visitor *v,
                                   void *opaque, const char *name,
                                   Error **errp)
{
    uint64_t value = *(uint64_t *)opaque;
    visit_type_uint64(v, &value, name, errp);
}

void object_property_add_uint8_ptr(Object *obj, const char *name,
                                   const uint8_t *v, Error **errp)
{
    object_property_add(obj, name, "uint8", property_get_uint8_ptr,
                        NULL, NULL, (void *)v, errp);
}

void object_property_add_uint16_ptr(Object *obj, const char *name,
                                    const uint16_t *v, Error **errp)
{
    object_property_add(obj, name, "uint16", property_get_uint16_ptr,
                        NULL, NULL, (void *)v, errp);
}

void object_property_add_uint32_ptr(Object *obj, const char *name,
                                    const uint32_t *v, Error **errp)
{
    object_property_add(obj, name, "uint32", property_get_uint32_ptr,
                        NULL, NULL, (void *)v, errp);
}

void object_property_add_uint64_ptr(Object *obj, const char *name,
                                    const uint64_t *v, Error **errp)
{
    object_property_add(obj, name, "uint64", property_get_uint64_ptr,
                        NULL, NULL, (void *)v, errp);
}

1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588
typedef struct {
    Object *target_obj;
    const char *target_name;
} AliasProperty;

static void property_get_alias(Object *obj, struct Visitor *v, void *opaque,
                               const char *name, Error **errp)
{
    AliasProperty *prop = opaque;

    object_property_get(prop->target_obj, v, prop->target_name, errp);
}

static void property_set_alias(Object *obj, struct Visitor *v, void *opaque,
                               const char *name, Error **errp)
{
    AliasProperty *prop = opaque;

    object_property_set(prop->target_obj, v, prop->target_name, errp);
}

1589 1590 1591 1592 1593 1594 1595 1596
static Object *property_resolve_alias(Object *obj, void *opaque,
                                      const gchar *part)
{
    AliasProperty *prop = opaque;

    return object_resolve_path_component(prop->target_obj, prop->target_name);
}

1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608
static void property_release_alias(Object *obj, const char *name, void *opaque)
{
    AliasProperty *prop = opaque;

    g_free(prop);
}

void object_property_add_alias(Object *obj, const char *name,
                               Object *target_obj, const char *target_name,
                               Error **errp)
{
    AliasProperty *prop;
1609
    ObjectProperty *op;
1610
    ObjectProperty *target_prop;
1611
    gchar *prop_type;
1612 1613 1614 1615 1616 1617

    target_prop = object_property_find(target_obj, target_name, errp);
    if (!target_prop) {
        return;
    }

1618 1619 1620 1621 1622 1623 1624
    if (object_property_is_child(target_prop)) {
        prop_type = g_strdup_printf("link%s",
                                    target_prop->type + strlen("child"));
    } else {
        prop_type = g_strdup(target_prop->type);
    }

1625 1626 1627 1628
    prop = g_malloc(sizeof(*prop));
    prop->target_obj = target_obj;
    prop->target_name = target_name;

1629
    op = object_property_add(obj, name, prop_type,
1630 1631 1632 1633 1634
                             property_get_alias,
                             property_set_alias,
                             property_release_alias,
                             prop, errp);
    op->resolve = property_resolve_alias;
1635 1636

    g_free(prop_type);
1637 1638
}

1639 1640 1641 1642 1643
static void object_instance_init(Object *obj)
{
    object_property_add_str(obj, "type", qdev_get_type, NULL, NULL);
}

P
Paolo Bonzini 已提交
1644 1645 1646 1647
static void register_types(void)
{
    static TypeInfo interface_info = {
        .name = TYPE_INTERFACE,
A
Anthony Liguori 已提交
1648
        .class_size = sizeof(InterfaceClass),
P
Paolo Bonzini 已提交
1649 1650 1651 1652 1653 1654
        .abstract = true,
    };

    static TypeInfo object_info = {
        .name = TYPE_OBJECT,
        .instance_size = sizeof(Object),
1655
        .instance_init = object_instance_init,
P
Paolo Bonzini 已提交
1656 1657 1658
        .abstract = true,
    };

1659 1660
    type_interface = type_register_internal(&interface_info);
    type_register_internal(&object_info);
P
Paolo Bonzini 已提交
1661 1662 1663
}

type_init(register_types)