annotate src/audacious/discovery.c @ 4227:206378f34610

update titles when formatter template changes even if tuples is up to date
author Eugene Zagidullin <e.asphyx@gmail.com>
date Wed, 30 Jan 2008 19:41:03 +0300
parents f6b25d4d2245
children 2b7a74fce100
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3227
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
1 /* BMP - Cross-platform multimedia player
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
2 * Copyright (C) 2003-2004 BMP development team.
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
3 *
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
4 * Based on XMMS:
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
5 * Copyright (C) 1998-2003 XMMS development team.
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
6 *
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
7 * This program is free software; you can redistribute it and/or modify
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
8 * it under the terms of the GNU Discovery Public License as published by
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
9 * the Free Software Foundation; under version 3 of the License.
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
10 *
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
11 * This program is distributed in the hope that it will be useful,
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
14 * GNU Discovery Public License for more details.
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
15 *
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
16 * You should have received a copy of the GNU Discovery Public License
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
17 * along with this program. If not, see <http://www.gnu.org/licenses>.
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
18 *
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
19 * The Audacious team does not consider modular code linking to
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
20 * Audacious or using our public API to be a derived work.
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
21 */
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
22
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
23 #include <glib.h>
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
24 #include <string.h>
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
25 #include "plugin.h"
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
26 #include "discovery.h"
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
27
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
28 DiscoveryPluginData dp_data = {
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
29 NULL,
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
30 NULL
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
31 };
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
32
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
33 GList *
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
34 get_discovery_list(void)
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
35 {
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
36 return dp_data.discovery_list;
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
37 }
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
38
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
39 GList *
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
40 get_discovery_enabled_list(void)
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
41 {
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
42 return dp_data.enabled_list;
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
43 }
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
44
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
45 static DiscoveryPlugin *
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
46 get_discovery_plugin(gint i)
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
47 {
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
48 GList *node = g_list_nth(get_discovery_list(), i);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
49
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
50 if (!node)
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
51 return NULL;
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
52
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
53 return DISCOVERY_PLUGIN(node->data);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
54 }
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
55
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
56 void
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
57 enable_discovery_plugin(gint i, gboolean enable)
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
58 {
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
59 DiscoveryPlugin *plugin = get_discovery_plugin(i);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
60
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
61 if (!plugin)
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
62 return;
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
63
3437
3092a8b3fe34 Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents: 3227
diff changeset
64 if (enable && !plugin->enabled) {
3227
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
65 dp_data.enabled_list = g_list_append(dp_data.enabled_list, plugin);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
66 if (plugin->init)
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
67 plugin->init();
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
68 }
3437
3092a8b3fe34 Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents: 3227
diff changeset
69 else if (!enable && plugin->enabled) {
3227
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
70 dp_data.enabled_list = g_list_remove(dp_data.enabled_list, plugin);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
71 if (plugin->cleanup)
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
72 plugin->cleanup();
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
73 }
3437
3092a8b3fe34 Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents: 3227
diff changeset
74
3092a8b3fe34 Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents: 3227
diff changeset
75 plugin->enabled = enable;
3227
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
76 }
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
77
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
78 gchar *
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
79 discovery_stringify_enabled_list(void)
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
80 {
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
81 GString *enable_str;
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
82 gchar *name;
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
83 GList *node = get_discovery_enabled_list();
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
84
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
85 if (!node)
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
86 return NULL;
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
87
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
88 name = g_path_get_basename(DISCOVERY_PLUGIN(node->data)->filename);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
89 enable_str = g_string_new(name);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
90 g_free(name);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
91
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
92 for (node = g_list_next(node); node; node = g_list_next(node)) {
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
93 name = g_path_get_basename(DISCOVERY_PLUGIN(node->data)->filename);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
94 g_string_append_c(enable_str, ',');
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
95 g_string_append(enable_str, name);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
96 g_free(name);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
97 }
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
98
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
99 return g_string_free(enable_str, FALSE);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
100 }
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
101
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
102 void
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
103 discovery_enable_from_stringified_list(const gchar * list_str)
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
104 {
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
105 gchar **list, **str;
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
106 DiscoveryPlugin *plugin;
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
107
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
108 if (!list_str || !strcmp(list_str, ""))
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
109 return;
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
110
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
111 list = g_strsplit(list_str, ",", 0);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
112
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
113 for (str = list; *str; str++) {
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
114 GList *node;
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
115
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
116 for (node = get_discovery_list(); node; node = g_list_next(node)) {
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
117 gchar *base;
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
118
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
119 base = g_path_get_basename(DISCOVERY_PLUGIN(node->data)->filename);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
120
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
121 if (!strcmp(*str, base)) {
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
122 plugin = DISCOVERY_PLUGIN(node->data);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
123 dp_data.enabled_list = g_list_append(dp_data.enabled_list,
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
124 plugin);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
125 if (plugin->init)
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
126 plugin->init();
3437
3092a8b3fe34 Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents: 3227
diff changeset
127
3092a8b3fe34 Big plugin system changes (part 1 of who knows, it's still a big mess):
William Pitcock <nenolod@atheme.org>
parents: 3227
diff changeset
128 plugin->enabled = TRUE;
3227
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
129 }
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
130
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
131 g_free(base);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
132 }
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
133 }
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
134
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
135 g_strfreev(list);
2619f4c62abe added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff changeset
136 }