/* This service primarily controls PulseAudio and is driven by the sound indicator menu on the panel. Copyright 2010 Canonical Ltd. Authors: Conor Curran This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 3, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ using Dbusmenu; using Gee; public class PlayerController : GLib.Object { public const int WIDGET_QUANTITY = 6; public static enum widget_order{ SEPARATOR, TITLE, METADATA, SCRUB, TRANSPORT, PLAYLIST } public enum state{ OFFLINE, INSTANTIATING, READY, CONNECTED, DISCONNECTED } public int current_state = state.OFFLINE; private Dbusmenu.Menuitem root_menu; public string name { get; set;} public ArrayList custom_items; public MprisController mpris_adaptor; public AppInfo? app_info { get; set;} public int menu_offset { get; set;} public PlayerController(Dbusmenu.Menuitem root, string client_name, int offset, state initial_state) { this.root_menu = root; this.name = format_client_name(client_name.strip()); this.custom_items = new ArrayList(); this.current_state = initial_state; this.menu_offset = offset; construct_widgets(); establish_mpris_connection(); this.update_layout(); } public void update_state(state new_state) { debug("update_state - player controller %s : new state %i", this.name, new_state); this.current_state = new_state; this.update_layout(); } public void activate() { this.establish_mpris_connection(); this.custom_items[widget_order.METADATA].property_set_bool(MENUITEM_PROP_VISIBLE, true); } /* instantiate() The user should be able to start the app from the transport bar when in an offline state There is a need to wait before the application is on DBus before attempting to access its mpris address Hence only when the it has registered with us via libindicate do we attempt to kick off mpris communication */ public void instantiate() { debug("instantiate in player controller for %s", this.name); try{ this.app_info.launch(null, null); this.update_state(state.INSTANTIATING); } catch(GLib.Error error){ warning("Failed to launch app %s with error message: %s", this.name, error.message); } } private void establish_mpris_connection() { if(this.current_state != state.READY){ debug("establish_mpris_connection - Not ready to connect"); return; } if(this.name == "Vlc"){ debug("establishing a vlc mpris controller"); this.mpris_adaptor = new MprisController(this, "org.mpris.MediaPlayer.Player"); } else{ this.mpris_adaptor = new MprisController(this); } // TODO refactor if(this.mpris_adaptor.connected() == true){ debug("yup I'm connected"); this.update_state(state.CONNECTED); } else{ this.update_state(state.DISCONNECTED); } } public void vanish() { foreach(Dbusmenu.Menuitem item in this.custom_items){ root_menu.child_delete(item); } } public void update_layout() { if(this.current_state != state.CONNECTED){ this.custom_items[widget_order.TRANSPORT].property_set_bool(MENUITEM_PROP_VISIBLE, false); this.custom_items[widget_order.SCRUB].property_set_bool(MENUITEM_PROP_VISIBLE, false); this.custom_items[widget_order.METADATA].property_set_bool(MENUITEM_PROP_VISIBLE, false); this.custom_items[widget_order.PLAYLIST].property_set_bool(MENUITEM_PROP_VISIBLE, false); return; } debug("update layout - metadata %s", this.custom_items[widget_order.METADATA].populated(MetadataMenuitem.attributes_format()).to_string()); this.custom_items[widget_order.METADATA].property_set_bool(MENUITEM_PROP_VISIBLE, this.custom_items[widget_order.METADATA].populated(MetadataMenuitem.attributes_format())); debug("update layout - scrub %s", this.custom_items[widget_order.SCRUB].populated(ScrubMenuitem.attributes_format()).to_string()); this.custom_items[widget_order.SCRUB].property_set_bool(MENUITEM_PROP_VISIBLE, this.custom_items[widget_order.SCRUB].populated(ScrubMenuitem.attributes_format())); this.custom_items[widget_order.TRANSPORT].property_set_bool(MENUITEM_PROP_VISIBLE, true); this.custom_items[widget_order.PLAYLIST].property_set_bool(MENUITEM_PROP_VISIBLE, true); } private void construct_widgets() { // Separator item this.custom_items.add(new PlayerItem(CLIENT_TYPES_SEPARATOR)); // Title item TitleMenuitem title_menu_item = new TitleMenuitem(this); this.custom_items.add(title_menu_item); // Metadata item MetadataMenuitem metadata_item = new MetadataMenuitem(); this.custom_items.add(metadata_item); // Scrub item ScrubMenuitem scrub_item = new ScrubMenuitem(this); this.custom_items.add(scrub_item); // Transport item TransportMenuitem transport_item = new TransportMenuitem(this); this.custom_items.add(transport_item); this.custom_items.add(create_playlist()); foreach(PlayerItem item in this.custom_items){ root_menu.child_add_position(item, this.menu_offset + this.custom_items.index_of(item)); } } private PlayerItem create_playlist() { PlayerItem playlist_root = new PlayerItem(CLIENT_TYPES_DEFAULT); playlist_root.property_set(MENUITEM_PROP_LABEL, "Choose Playlist"); PlayerItem subentry_1 = new PlayerItem(CLIENT_TYPES_DEFAULT); subentry_1.property_set(MENUITEM_PROP_LABEL, "Raster-noton selection"); PlayerItem subentry_2 = new PlayerItem(CLIENT_TYPES_DEFAULT); subentry_2.property_set(MENUITEM_PROP_LABEL, "Rune Grammofon selection"); PlayerItem subentry_3 = new PlayerItem(CLIENT_TYPES_DEFAULT); subentry_3.property_set(MENUITEM_PROP_LABEL, "Kranky selection"); playlist_root.child_append(subentry_1); playlist_root.child_append(subentry_2); playlist_root.child_append(subentry_3); return playlist_root; } private static string format_client_name(string client_name) { string formatted = client_name; if(formatted.len() > 1){ formatted = client_name.up(1).concat(client_name.slice(1, client_name.len())); debug("PlayerController->format_client_name - : %s", formatted); } return formatted; } }