1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 2006 Imendio AB
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General
15 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 #define G_LOG_DOMAIN "TestSingleton"
19 #include <glib-object.h>
22 /* --- MySingleton class --- */
24 GObject parent_instance
;
27 GObjectClass parent_class
;
30 static GType
my_singleton_get_type (void);
31 #define MY_TYPE_SINGLETON (my_singleton_get_type ())
32 #define MY_SINGLETON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), MY_TYPE_SINGLETON, MySingleton))
33 #define MY_IS_SINGLETON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), MY_TYPE_SINGLETON))
34 #define MY_SINGLETON_CLASS(c) (G_TYPE_CHECK_CLASS_CAST ((c), MY_TYPE_SINGLETON, MySingletonClass))
35 #define MY_IS_SINGLETON_CLASS(c) (G_TYPE_CHECK_CLASS_TYPE ((c), MY_TYPE_SINGLETON))
36 #define MY_SINGLETON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), MY_TYPE_SINGLETON, MySingletonClass))
38 G_DEFINE_TYPE (MySingleton
, my_singleton
, G_TYPE_OBJECT
)
40 static MySingleton
*the_one_and_only
= NULL
;
44 my_singleton_constructor (GType type
,
45 guint n_construct_properties
,
46 GObjectConstructParam
*construct_properties
)
49 return g_object_ref (G_OBJECT (the_one_and_only
));
51 return G_OBJECT_CLASS (my_singleton_parent_class
)->constructor (type
, n_construct_properties
, construct_properties
);
55 my_singleton_init (MySingleton
*self
)
57 g_assert (the_one_and_only
== NULL
);
58 the_one_and_only
= self
;
62 my_singleton_class_init (MySingletonClass
*klass
)
64 G_OBJECT_CLASS (klass
)->constructor
= my_singleton_constructor
;
67 /* --- test program --- */
72 MySingleton
*singleton
, *obj
;
74 /* create the singleton */
75 singleton
= g_object_new (MY_TYPE_SINGLETON
, NULL
);
76 g_assert (singleton
!= NULL
);
77 /* assert _singleton_ creation */
78 obj
= g_object_new (MY_TYPE_SINGLETON
, NULL
);
79 g_assert (singleton
== obj
);
82 g_object_unref (singleton
);