aboutsummaryrefslogtreecommitdiff
path: root/src/mpris2-controller.vala
blob: 2c196069a40899274a285000d00c1d31f65f00a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*
Copyright 2010 Canonical Ltd.

Authors:
    Conor Curran <conor.curran@canonical.com>

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 <http://www.gnu.org/licenses/>.
*/
using Dbusmenu;


[DBus (name = "org.freedesktop.DBus.Properties")]
  public interface FreeDesktopProperties : Object{
  public signal void PropertiesChanged (string source, HashTable<string, Variant?> changed_properties,
                                        string[] invalid );
}

/*
 This class will entirely replace mpris-controller.vala hence why there is no
 point in trying to get encorporate both into the same object model. 
 */
public class Mpris2Controller : GLib.Object
{
  public static const string root_interface = "org.mpris.MediaPlayer2" ;  
  public MprisRoot mpris2_root {get; construct;}    
  public MprisPlayer player {get; construct;}
  public MprisPlaylists playlists {get; construct;}
  public FreeDesktopProperties properties_interface {get; construct;}

  public PlayerController owner {get; construct;}

  public Mpris2Controller(PlayerController ctrl)
  {
    GLib.Object(owner: ctrl);    
  }

  construct{
    try {
      this.mpris2_root = Bus.get_proxy_sync ( BusType.SESSION,
                                              root_interface.concat(".").concat(this.owner.mpris_name),
                                              "/org/mpris/MediaPlayer2");
      this.player = Bus.get_proxy_sync ( BusType.SESSION,
                                         root_interface.concat(".").concat(this.owner.mpris_name),
                                         "/org/mpris/MediaPlayer2" );
      this.playlists = Bus.get_proxy_sync ( BusType.SESSION,
                                            root_interface.concat(".").concat(this.owner.mpris_name),
                                            "/org/mpris/MediaPlayer2" );
      
      this.properties_interface = Bus.get_proxy_sync ( BusType.SESSION,
                                                       "org.freedesktop.Properties.PropertiesChanged",
                                                       "/org/mpris/MediaPlayer2" );                                                                                
      this.properties_interface.PropertiesChanged += property_changed_cb;
    }
    catch (IOError e) {
      error("Problems connecting to the session bus - %s", e.message);
    }
  }

  public void property_changed_cb ( string interface_source,
                                    HashTable<string, Variant?> changed_properties,
                                    string[] invalid )
  {
    debug("properties-changed for interface %s and owner %s", interface_source, this.owner.mpris_name);
    if(changed_properties == null || interface_source.has_prefix(this.root_interface) == false ){
      warning("Property-changed hash is null or this is an interface that doesn't concerns us");
      return;
    }
    Variant? play_v = changed_properties.lookup("PlaybackStatus");
    if(play_v != null){
      string state = this.player.PlaybackStatus;
      TransportMenuitem.state p = (TransportMenuitem.state)this.determine_play_state(state);
      (this.owner.custom_items[PlayerController.widget_order.TRANSPORT] as TransportMenuitem).change_play_state(p);
    }
    Variant? meta_v = changed_properties.lookup("Metadata");
    if(meta_v != null){
      GLib.HashTable<string, Variant?> changed_updates = clean_metadata();
      PlayerItem metadata = this.owner.custom_items[PlayerController.widget_order.METADATA];
      metadata.reset( MetadataMenuitem.attributes_format());
      metadata.update ( changed_updates, 
                        MetadataMenuitem.attributes_format());
      metadata.property_set_bool ( MENUITEM_PROP_VISIBLE,
                                   metadata.populated(MetadataMenuitem.attributes_format()));
    }
  }

  private GLib.HashTable<string, Variant?>? clean_metadata()
  { 
    GLib.HashTable<string, Variant?> changed_updates = this.player.Metadata; 
    Variant? artist_v = this.player.Metadata.lookup("xesam:artist");
    if(artist_v != null){
      string[] artists = (string[])this.player.Metadata.lookup("xesam:artist");
      string display_artists = string.joinv(", ", artists);
      changed_updates.replace("xesam:artist", display_artists);
      debug("artist : %s", (string)changed_updates.lookup("xesam:artist"));
    }
    Variant? length_v = this.player.Metadata.lookup("mpris:length");
    if(length_v != null){
      int64 duration = this.player.Metadata.lookup("mpris:length").get_int64();
      changed_updates.replace("mpris:length", duration/1000000); 
    }
    return changed_updates;
  }
  
  private TransportMenuitem.state determine_play_state(string? status){ 
    if(status != null && status == "Playing"){
      return TransportMenuitem.state.PLAYING;
    }
    return TransportMenuitem.state.PAUSED;
  }

  public void initial_update()
  {
    TransportMenuitem.state update;
    if(this.player.PlaybackStatus == null){
      update = TransportMenuitem.state.PAUSED;
    }

    update = determine_play_state(null);
   
    (this.owner.custom_items[PlayerController.widget_order.TRANSPORT] as TransportMenuitem).change_play_state(TransportMenuitem.state.PAUSED);
    GLib.HashTable<string, Value?>? cleaned_metadata = this.clean_metadata();
    this.owner.custom_items[PlayerController.widget_order.METADATA].update(cleaned_metadata,
                                                                            MetadataMenuitem.attributes_format());
    this.fetch_playlists();    
  }

  public void transport_update(TransportMenuitem.action command)
  {
    debug("transport_event input = %i", (int)command);
    if(command == TransportMenuitem.action.PLAY_PAUSE){
      this.fetch_playlists();
      this.player.PlayPause.begin();              
    }
    else if(command == TransportMenuitem.action.PREVIOUS){
      this.player.Previous.begin();
    }
    else if(command == TransportMenuitem.action.NEXT){
      this.player.Next.begin();
    }
  }

  public void fetch_playlists()
  {
    if (this.playlists == null){
      warning("Playlists object is null");
      return;
    }
    PlaylistDetails[] current_playlists =  this.playlists.GetPlaylists(0, 10, "Alphabetical", false);
    if( current_playlists != null ){
      debug( "Size of the playlist array = %i", current_playlists.length );
      PlaylistsMenuitem playlists_item = this.owner.custom_items[PlayerController.widget_order.PLAYLISTS] as PlaylistsMenuitem;
      playlists_item.update(current_playlists);
      /*foreach(PlaylistDetails detail in current_playlists){ 
        debug( "Playlist Name = %s", detail.name);
        debug( "Playlist path = %s", detail.path);
        debug( "Playlist icon path = %s", detail.icon_path);
        debug(" \n \n \n \n \n  ");
      }*/
    }
  }

  public bool connected()
  {
    return (this.player != null && this.mpris2_root != null);
  }
  
  public void expose()
  {
    if(this.connected() == true){
      this.mpris2_root.Raise.begin();
    }
  }
}