/usr/lib/x86_64-linux-gnu/cairo-dock/cairo-dock-launcher-API-daemon is in cairo-dock-plug-ins 3.4.1-0ubuntu7.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | #!/usr/bin/env python
#
# This is a part of the Cairo-Dock plug-ins.
# Copyright : (C) 2012 by Fabrice Rey
# E-mail : fabounet@glx-dock.org
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# http://www.gnu.org/licenses/licenses.html#GPL
#
from __future__ import print_function
import sys
try:
import glib
import gobject
g_bMainLoopInGObject = True
except:
from gi.repository import GLib as glib
from gi.repository import GObject as gobject
g_bMainLoopInGObject = False
import re
from os import popen, getpid
import dbus, dbus.service
from dbus.mainloop.glib import DBusGMainLoop
from CairoDock import CairoDock
class Launcher:
has_count = False
count = 0
count_visible = False
has_progress = False
progress = 0.
progress_visible = False
has_emblem = False
emblem = 0
emblem_visible = False
menu_path = ''
urgent = False
def __init__(self, app_uri=None, dock=None, dbus_name=None):
## initialize the properties of the launcher
self.app_uri = app_uri
self.dock = dock
self.dbus_name = dbus_name
desktop_file = re.sub ('application://', '', app_uri)
app_name = re.sub ('.desktop', '', desktop_file)
self.id = 'class='+app_name
## watch for the deconnection of the distant app (we don't want to let an icon demanding attention or with an invalid menu).
bus = dbus.SessionBus()
bus.watch_name_owner(self.dbus_name, self.on_name_owner_changed)
def update_dbus_name(self, dbus_name):
if dbus_name != self.dbus_name:
self.dbus_name = dbus_name
bus = dbus.SessionBus()
bus.watch_name_owner(self.dbus_name, self.on_name_owner_changed)
def on_name_owner_changed(self,connection_name):
print("Launcher-API-Daemon: launcher bus name changed:",connection_name)
if len(connection_name) == 0: # no more distant app -> reset the launcher and its icon.
print("Launcher-API-Daemon: -> the launcher "+ str (self.dbus_name) +" is no longer connected to its app.")
if self.has_count and self.count_visible:
self.dock.iface.SetQuickInfo('', self.id)
self.has_count = False
self.count_visible = False
if self.has_progress and self.progress_visible:
self.dock.iface.SetProgress (-1, self.id)
self.has_progress = False
self.progress_visible = False
if self.has_emblem and self.emblem_visible:
self.dock.iface.SetEmblem('', CairoDock.EMBLEM_TOP_RIGHT, self.id)
self.has_emblem = False
self.emblem_visible = False
if self.urgent:
self.dock.iface.DemandsAttention(False, 'default', self.id)
self.urgent = False
if self.menu_path != '':
self.dock.iface.SetMenu(self.dbus_name, '', self.id)
self.menu_path = ''
self.dbus_name = None
def set_count(self, x):
print('Launcher-API-Daemon: set_count (%d)'%x)
self.count = x
self.has_count = True
if self.count_visible:
self.dock.iface.SetQuickInfo(str(self.count), self.id)
def set_count_visible(self, x):
print('Launcher-API-Daemon: set_count_visible (%d)'%x)
self.count_visible = x
if self.has_count:
if x:
self.dock.iface.SetQuickInfo(str(self.count), self.id)
else:
self.dock.iface.SetQuickInfo('', self.id)
def set_progress(self, x):
print('Launcher-API-Daemon: set_progress (%.2f)'%x)
self.progress = x
self.has_progress = True
self.dock.iface.SetProgress (x, self.id)
def set_progress_visible(self, x):
print('Launcher-API-Daemon: set_progress_visible (%d)'%x)
self.progress_visible = x
if not x:
self.dock.iface.SetProgress (-1, self.id)
else:
self.dock.iface.SetProgress (self.progress, self.id)
def set_urgent(self, x):
print('Launcher-API-Daemon: set_urgent (%d)'%x)
self.urgent = x
self.dock.iface.DemandsAttention(x, 'default', self.id)
def set_menu(self, menu_path):
print('Launcher-API-Daemon: set_menu (%s)'%menu_path)
self.menu_path = menu_path
self.dock.iface.SetMenu(self.dbus_name, menu_path, self.id)
def set_emblem(self, x):
print('Launcher-API-Daemon: set_emblem (%s)'%x)
self.emblem = x
self.has_emblem = True
if self.emblem_visible:
self.dock.iface.SetEmblem(self.emblem, CairoDock.EMBLEM_TOP_RIGHT, self.id)
def set_emblem_visible(self, x):
print('Launcher-API-Daemon: set_emblem_visible (%d)'%x)
self.emblem_visible = x
if self.has_emblem:
if x:
self.dock.iface.SetEmblem(self.emblem, CairoDock.EMBLEM_TOP_RIGHT, self.id)
else:
self.dock.iface.SetEmblem('', CairoDock.EMBLEM_TOP_RIGHT, self.id)
class ULWatcher:
bus_iface_str = 'com.canonical.Unity.LauncherEntry' # bus name to watch
bus_name_str = 'com.canonical.Unity' # bus name to claim, to signal our presence on the bus.
launchers = {} # list of launchers that have been seen on the bus at least once.
def __init__(self):
DBusGMainLoop(set_as_default=True)
try:
self.bus = dbus.SessionBus()
except Exception as exception:
print('Launcher-API-Daemon: Could not open dbus. Uncaught exception.')
return
bus_name = dbus.service.BusName (self.bus_name_str, self.bus, allow_replacement=True) # allow Unity shell to take ownership of the bus name; we only want to register on the bus so that other applications know they can send message on the LauncherEntry interface
print("Launcher-API-Daemon: registered as Unity:",bus_name)
self.bus.add_signal_receiver (self.on_launcher_entry_signal, dbus_interface=self.bus_iface_str, member_keyword='member', sender_keyword='sender')
self.dock = CairoDock()
if g_bMainLoopInGObject:
self.loop = gobject.MainLoop()
else:
self.loop = glib.MainLoop()
self.loop.run()
def on_launcher_entry_signal(self, val1=None, val2=None, member=None, sender=None): # application://evolution.desktop, dictionnary (sv)
if (member == 'Update'):
print('Launcher-API-Daemon: Update',val1,'with',val2)
launcher = None
if val1 in self.launchers:
launcher = self.launchers[val1]
launcher.update_dbus_name(sender)
else:
launcher = Launcher(val1, self.dock, sender)
self.launchers[val1] = launcher
if 'count' in val2:
count = val2['count']
launcher.set_count (count)
if 'progress' in val2:
progress = val2['progress']
launcher.set_progress (progress)
if 'emblem' in val2:
emblem = val2['emblem']
launcher.set_emblem (emblem)
if 'urgent' in val2:
urgent = val2['urgent']
launcher.set_urgent (urgent)
if 'quicklist' in val2:
menu_path = val2['quicklist']
launcher.set_menu (menu_path)
if 'count-visible' in val2:
count_visible = val2['count-visible']
launcher.set_count_visible (count_visible)
if 'progress-visible' in val2:
progress_visible = val2['progress-visible']
launcher.set_progress_visible (progress_visible)
if 'emblem-visible' in val2:
emblem_visible = val2['emblem-visible']
launcher.set_emblem_visible (emblem_visible)
elif (member == 'Query'):
print('Launcher-API-Daemon: query',val2,'for',val1)
else:
print('Launcher-API-Daemon: unknown signal')
if __name__ == '__main__':
# check that we don't run twice (ex.: from a 2nd cairo-dock instance)
# we could detect it from the bus, but then we couldn't detect the following case: Unity launcher + Cairo-Dock
# we want: ps ux | grep " + filename + " | grep python | grep -v " + pid_str)
ps_str = popen("ps -u $USER -wwo pid,cmd").read().splitlines() # only users' processes with all lines
filename = sys.argv[0] # /usr/lib/cairo-dock/cairo-dock-launcher-API-daemon
pid_str = str (getpid()) # we check if previous processes are running, we exclude this process
for line in ps_str:
line_split = line.split()
line_cmd = ' '.join(line_split[1:])
line_pid = line_split[0]
if "python" in line_cmd and filename in line_cmd and not pid_str in line_pid:
print('Cairo-Dock - Launcher API Daemon is already running (' + line_pid + ')')
sys.exit(1)
ULWatcher()
|