Refer to Rygel by name in License headers.
[profile/ivi/rygel.git] / src / rygel / rygel-main.vala
1 /*
2  * Copyright (C) 2008 Nokia Corporation, all rights reserved.
3  * Copyright (C) 2008 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>.
4  *
5  * Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
6  *
7  * This file is part of Rygel.
8  *
9  * Rygel is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * Rygel is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22  */
23
24 using GUPnP;
25 using GConf;
26 using CStuff;
27 using Gee;
28
29 public class Rygel.Main : Object {
30     private PluginLoader plugin_loader;
31     private MediaServerFactory ms_factory;
32     private ArrayList<MediaServer> media_servers;
33
34     private MainLoop main_loop;
35
36     private int exit_code;
37
38     public Main () throws GLib.Error {
39         this.media_servers = new ArrayList<MediaServer> ();
40         this.plugin_loader = new PluginLoader ();
41         this.ms_factory = new MediaServerFactory ();
42         this.main_loop = new GLib.MainLoop (null, false);
43
44         this.exit_code = 0;
45
46         this.plugin_loader.plugin_available += this.on_plugin_loaded;
47
48         Utils.on_application_exit (this.application_exit_cb);
49     }
50
51     public int run () {
52         this.plugin_loader.load_plugins ();
53
54         this.main_loop.run ();
55
56         return this.exit_code;
57     }
58
59     public void exit (int exit_code) {
60         this.exit_code = exit_code;
61         this.main_loop.quit ();
62     }
63
64     private void application_exit_cb () {
65         this.exit (0);
66     }
67
68     private void on_plugin_loaded (PluginLoader plugin_loader,
69                                    Plugin       plugin) {
70         try {
71             var server = this.ms_factory.create_media_server (plugin);
72
73             /* Make our device available */
74             server.available = true;
75
76             media_servers.add (server);
77         } catch (GLib.Error error) {
78             warning ("Failed to create MediaServer for %s. Reason: %s\n",
79                      plugin.name,
80                      error.message);
81         }
82     }
83
84     public static int main (string[] args) {
85         Main main;
86
87         // initialize gstreamer
88         Gst.init (ref args);
89
90         try {
91             main = new Main ();
92         } catch (GLib.Error err) {
93             error ("%s", err.message);
94
95             return -1;
96         }
97
98         int exit_code = main.run ();
99
100         return exit_code;
101     }
102 }
103