comparison libpurple/mediamanager.c @ 23840:3da0957e7821

propagate from branch 'im.pidgin.pidgin' (head 868098fbe53290a8abcc3307c6fec2c6054a5e00) to branch 'im.pidgin.soc.2008.vv' (head eb4a2834050e39f5387e97121b534adb7ffd1234)
author Mike Ruprecht <maiku@soc.pidgin.im>
date Thu, 26 Jun 2008 20:25:38 +0000
parents cbe97caec684
children 1c68f78414b7
comparison
equal deleted inserted replaced
23392:eac0561dfd55 23840:3da0957e7821
1 /**
2 * @file mediamanager.c Media Manager API
3 * @ingroup core
4 *
5 * purple
6 *
7 * Purple is the legal property of its developers, whose names are too numerous
8 * to list here. Please refer to the COPYRIGHT file distributed with this
9 * source distribution.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
26 #include "internal.h"
27
28 #include "connection.h"
29 #include "mediamanager.h"
30 #include "media.h"
31
32 #ifdef USE_VV
33
34 #include <gst/farsight/fs-conference-iface.h>
35
36 struct _PurpleMediaManagerPrivate
37 {
38 GList *medias;
39 };
40
41 #define PURPLE_MEDIA_MANAGER_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), PURPLE_TYPE_MEDIA_MANAGER, PurpleMediaManagerPrivate))
42
43 static void purple_media_manager_class_init (PurpleMediaManagerClass *klass);
44 static void purple_media_manager_init (PurpleMediaManager *media);
45 static void purple_media_manager_finalize (GObject *object);
46
47 static GObjectClass *parent_class = NULL;
48
49
50
51 enum {
52 INIT_MEDIA,
53 LAST_SIGNAL
54 };
55 static guint purple_media_manager_signals[LAST_SIGNAL] = {0};
56
57 enum {
58 PROP_0,
59 PROP_FARSIGHT_SESSION,
60 PROP_NAME,
61 PROP_CONNECTION,
62 PROP_MIC_ELEMENT,
63 PROP_SPEAKER_ELEMENT,
64 };
65
66 GType
67 purple_media_manager_get_type()
68 {
69 static GType type = 0;
70
71 if (type == 0) {
72 static const GTypeInfo info = {
73 sizeof(PurpleMediaManagerClass),
74 NULL,
75 NULL,
76 (GClassInitFunc) purple_media_manager_class_init,
77 NULL,
78 NULL,
79 sizeof(PurpleMediaManager),
80 0,
81 (GInstanceInitFunc) purple_media_manager_init,
82 NULL
83 };
84 type = g_type_register_static(G_TYPE_OBJECT, "PurpleMediaManager", &info, 0);
85 }
86 return type;
87 }
88
89
90 static void
91 purple_media_manager_class_init (PurpleMediaManagerClass *klass)
92 {
93 GObjectClass *gobject_class = (GObjectClass*)klass;
94 parent_class = g_type_class_peek_parent(klass);
95
96 gobject_class->finalize = purple_media_manager_finalize;
97
98 purple_media_manager_signals[INIT_MEDIA] = g_signal_new ("init-media",
99 G_TYPE_FROM_CLASS (klass),
100 G_SIGNAL_RUN_LAST,
101 0, NULL, NULL,
102 g_cclosure_marshal_VOID__OBJECT,
103 G_TYPE_NONE, 1, PURPLE_TYPE_MEDIA);
104 g_type_class_add_private(klass, sizeof(PurpleMediaManagerPrivate));
105 }
106
107 static void
108 purple_media_manager_init (PurpleMediaManager *media)
109 {
110 media->priv = PURPLE_MEDIA_MANAGER_GET_PRIVATE(media);
111 media->priv->medias = NULL;
112 }
113
114 static void
115 purple_media_manager_finalize (GObject *media)
116 {
117 parent_class->finalize(media);
118 }
119
120 PurpleMediaManager *
121 purple_media_manager_get()
122 {
123 static PurpleMediaManager *manager = NULL;
124
125 if (manager == NULL)
126 manager = PURPLE_MEDIA_MANAGER(g_object_new(purple_media_manager_get_type(), NULL));
127 return manager;
128 }
129
130 PurpleMedia *
131 purple_media_manager_create_media(PurpleMediaManager *manager,
132 PurpleConnection *gc,
133 const char *conference_type,
134 const char *remote_user)
135 {
136 PurpleMedia *media;
137 FsConference *conference = FS_CONFERENCE(gst_element_factory_make(conference_type, NULL));
138 GstStateChangeReturn ret = gst_element_set_state(GST_ELEMENT(conference), GST_STATE_READY);
139
140 if (ret == GST_STATE_CHANGE_FAILURE) {
141 purple_conv_present_error(remote_user,
142 purple_connection_get_account(gc),
143 _("Error creating conference."));
144 return NULL;
145 }
146
147 media = PURPLE_MEDIA(g_object_new(purple_media_get_type(),
148 "screenname", remote_user,
149 "connection", gc,
150 "farsight-conference", conference,
151 NULL));
152 manager->priv->medias = g_list_append(manager->priv->medias, media);
153 g_signal_emit(manager, purple_media_manager_signals[INIT_MEDIA], 0, media);
154 return media;
155 }
156
157 #endif /* USE_VV */