2006-12-13 22:36:05 +01:00
|
|
|
# Copyright (C) 2006, Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# 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 2 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.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import gobject
|
2007-03-14 18:04:10 +01:00
|
|
|
import os
|
|
|
|
import shutil
|
2006-12-13 22:36:05 +01:00
|
|
|
import dbus
|
|
|
|
import dbus.service
|
|
|
|
from sugar import env
|
2007-01-05 21:13:46 +01:00
|
|
|
from sugar import util
|
2006-12-13 22:36:05 +01:00
|
|
|
from clipboardobject import ClipboardObject, Format
|
2007-03-14 18:04:10 +01:00
|
|
|
import typeregistry
|
2006-12-13 22:36:05 +01:00
|
|
|
|
2007-01-05 21:13:46 +01:00
|
|
|
NAME_KEY = 'NAME'
|
|
|
|
PERCENT_KEY = 'PERCENT'
|
2007-04-11 18:22:52 +02:00
|
|
|
ICON_KEY = 'ICON'
|
|
|
|
PREVIEW_KEY = 'PREVIEW'
|
|
|
|
ACTIVITY_KEY = 'ACTIVITY'
|
2007-01-05 21:13:46 +01:00
|
|
|
FORMATS_KEY = 'FORMATS'
|
|
|
|
|
2006-12-13 22:36:05 +01:00
|
|
|
class ClipboardDBusServiceHelper(dbus.service.Object):
|
|
|
|
|
|
|
|
_CLIPBOARD_DBUS_INTERFACE = "org.laptop.Clipboard"
|
|
|
|
_CLIPBOARD_OBJECT_PATH = "/org/laptop/Clipboard"
|
2007-03-14 05:50:06 +01:00
|
|
|
_CLIPBOARD_OBJECTS_PATH = _CLIPBOARD_OBJECT_PATH + "/Objects/"
|
2006-12-13 22:36:05 +01:00
|
|
|
|
|
|
|
def __init__(self, parent):
|
|
|
|
self._parent = parent
|
|
|
|
self._objects = {}
|
2007-03-14 05:50:06 +01:00
|
|
|
self._next_id = 0
|
2006-12-13 22:36:05 +01:00
|
|
|
|
|
|
|
bus = dbus.SessionBus()
|
|
|
|
bus_name = dbus.service.BusName(self._CLIPBOARD_DBUS_INTERFACE, bus=bus)
|
|
|
|
dbus.service.Object.__init__(self, bus_name, self._CLIPBOARD_OBJECT_PATH)
|
|
|
|
|
2007-03-14 05:50:06 +01:00
|
|
|
def _get_next_object_id(self):
|
|
|
|
self._next_id += 1
|
|
|
|
return self._next_id
|
|
|
|
|
2007-03-14 18:04:10 +01:00
|
|
|
def _handle_file_completed(self, cb_object):
|
|
|
|
"""If the object is an on-disk file, and it's at 100%, and we care about
|
|
|
|
it's file type, copy that file to $HOME and upate the clipboard object's
|
|
|
|
data to point to the new location"""
|
|
|
|
formats = cb_object.get_formats()
|
|
|
|
if not len(formats) or len(formats) > 1:
|
|
|
|
return
|
|
|
|
|
|
|
|
format = formats.values()[0]
|
|
|
|
if not format.get_on_disk():
|
|
|
|
return
|
|
|
|
|
2007-04-11 18:22:52 +02:00
|
|
|
if not len(cb_object.get_activity()):
|
|
|
|
# no activity to handle this, don't autosave it
|
|
|
|
return
|
|
|
|
|
2007-03-14 18:04:10 +01:00
|
|
|
# copy to homedir
|
|
|
|
src = format.get_data()
|
|
|
|
if not os.path.exists(src):
|
|
|
|
logging.debug("File %s doesn't appear to exist" % src)
|
|
|
|
return
|
|
|
|
dst = os.path.join(os.path.expanduser("~"), os.path.basename(src))
|
|
|
|
try:
|
|
|
|
shutil.move(src, dst)
|
|
|
|
format._set_data(dst)
|
|
|
|
except IOError, e:
|
|
|
|
logging.debug("Couldn't move file %s to %s: %s" % (src, dst, e))
|
|
|
|
|
2006-12-13 22:36:05 +01:00
|
|
|
# dbus methods
|
|
|
|
@dbus.service.method(_CLIPBOARD_DBUS_INTERFACE,
|
2007-03-14 05:50:06 +01:00
|
|
|
in_signature="s", out_signature="o")
|
|
|
|
def add_object(self, name):
|
|
|
|
op = self._CLIPBOARD_OBJECTS_PATH + "%d" % self._get_next_object_id()
|
|
|
|
self._objects[op] = ClipboardObject(op, name)
|
|
|
|
self.object_added(dbus.ObjectPath(op), name)
|
|
|
|
logging.debug('Added object ' + op + ' with name ' + name)
|
|
|
|
return dbus.ObjectPath(op)
|
2006-12-13 22:36:05 +01:00
|
|
|
|
|
|
|
@dbus.service.method(_CLIPBOARD_DBUS_INTERFACE,
|
2007-01-05 21:13:46 +01:00
|
|
|
in_signature="ssayb", out_signature="", byte_arrays=True)
|
2007-03-14 05:50:06 +01:00
|
|
|
def add_object_format(self, object_path, format_type, data, on_disk):
|
|
|
|
cb_object = self._objects[str(object_path)]
|
2007-01-05 21:13:46 +01:00
|
|
|
cb_object.add_format(Format(format_type, data, on_disk))
|
|
|
|
|
2006-12-13 22:36:05 +01:00
|
|
|
if on_disk:
|
2007-01-05 21:13:46 +01:00
|
|
|
logging.debug('Added format of type ' + format_type + ' with path at ' + data)
|
2006-12-13 22:36:05 +01:00
|
|
|
else:
|
|
|
|
logging.debug('Added in-memory format of type ' + format_type + '.')
|
2007-01-05 21:13:46 +01:00
|
|
|
|
2007-04-11 18:22:52 +02:00
|
|
|
self.object_state_changed(object_path, {NAME_KEY: cb_object.get_name(),
|
|
|
|
PERCENT_KEY: cb_object.get_percent(),
|
|
|
|
ICON_KEY: cb_object.get_icon(),
|
|
|
|
PREVIEW_KEY: cb_object.get_preview(),
|
|
|
|
ACTIVITY_KEY: cb_object.get_activity()})
|
2006-12-13 22:36:05 +01:00
|
|
|
|
|
|
|
@dbus.service.method(_CLIPBOARD_DBUS_INTERFACE,
|
2007-03-14 05:50:06 +01:00
|
|
|
in_signature="o", out_signature="")
|
|
|
|
def delete_object(self, object_path):
|
2007-04-17 21:53:34 +02:00
|
|
|
cb_object = self._objects.pop(str(object_path))
|
|
|
|
cb_object.destroy()
|
2007-03-14 05:50:06 +01:00
|
|
|
self.object_deleted(object_path)
|
|
|
|
logging.debug('Deleted object with object_id ' + object_path)
|
2006-12-13 22:36:05 +01:00
|
|
|
|
|
|
|
@dbus.service.method(_CLIPBOARD_DBUS_INTERFACE,
|
2007-03-14 05:50:06 +01:00
|
|
|
in_signature="oi", out_signature="")
|
|
|
|
def set_object_percent(self, object_path, percent):
|
|
|
|
cb_object = self._objects[str(object_path)]
|
|
|
|
if percent < 0 or percent > 100:
|
|
|
|
raise ValueError("invalid percentage")
|
2007-03-14 15:09:41 +01:00
|
|
|
if cb_object.get_percent() > percent:
|
|
|
|
raise ValueError("invalid percentage; less than current percent")
|
|
|
|
if cb_object.get_percent() == percent:
|
|
|
|
# ignore setting same percentage
|
|
|
|
return
|
2007-03-14 18:04:10 +01:00
|
|
|
|
2006-12-13 22:36:05 +01:00
|
|
|
cb_object.set_percent(percent)
|
2007-03-14 18:04:10 +01:00
|
|
|
|
|
|
|
if percent == 100:
|
|
|
|
self._handle_file_completed(cb_object)
|
|
|
|
|
2007-04-11 18:22:52 +02:00
|
|
|
self.object_state_changed(object_path, {NAME_KEY: cb_object.get_name(),
|
|
|
|
PERCENT_KEY: percent,
|
|
|
|
ICON_KEY: cb_object.get_icon(),
|
|
|
|
PREVIEW_KEY: cb_object.get_preview(),
|
|
|
|
ACTIVITY_KEY: cb_object.get_activity()})
|
2006-12-13 22:36:05 +01:00
|
|
|
|
|
|
|
@dbus.service.method(_CLIPBOARD_DBUS_INTERFACE,
|
2007-03-14 05:50:06 +01:00
|
|
|
in_signature="o", out_signature="a{sv}")
|
|
|
|
def get_object(self, object_path):
|
2007-04-11 18:22:52 +02:00
|
|
|
cb_object = self._objects[str(object_path)]
|
|
|
|
formats = cb_object.get_formats()
|
|
|
|
format_types = dbus.Array([], 's')
|
|
|
|
|
|
|
|
for type, format in formats.iteritems():
|
|
|
|
format_types.append(type)
|
|
|
|
|
|
|
|
result_dict = {NAME_KEY: cb_object.get_name(),
|
|
|
|
PERCENT_KEY: cb_object.get_percent(),
|
|
|
|
ICON_KEY: cb_object.get_icon(),
|
|
|
|
PREVIEW_KEY: cb_object.get_preview(),
|
|
|
|
ACTIVITY_KEY: cb_object.get_activity(),
|
|
|
|
FORMATS_KEY: format_types}
|
|
|
|
return dbus.Dictionary(result_dict)
|
2006-12-13 22:36:05 +01:00
|
|
|
|
|
|
|
@dbus.service.method(_CLIPBOARD_DBUS_INTERFACE,
|
2007-03-14 05:50:06 +01:00
|
|
|
in_signature="os", out_signature="ay")
|
|
|
|
def get_object_data(self, object_path, format_type):
|
|
|
|
cb_object = self._objects[str(object_path)]
|
2006-12-13 22:36:05 +01:00
|
|
|
formats = cb_object.get_formats()
|
2007-03-14 05:50:06 +01:00
|
|
|
return dbus.ByteArray(formats[format_type].get_data())
|
2006-12-13 22:36:05 +01:00
|
|
|
|
|
|
|
# dbus signals
|
2007-03-14 05:50:06 +01:00
|
|
|
@dbus.service.signal(_CLIPBOARD_DBUS_INTERFACE, signature="os")
|
|
|
|
def object_added(self, object_path, name):
|
2006-12-13 22:36:05 +01:00
|
|
|
pass
|
|
|
|
|
2007-03-14 05:50:06 +01:00
|
|
|
@dbus.service.signal(_CLIPBOARD_DBUS_INTERFACE, signature="o")
|
|
|
|
def object_deleted(self, object_path):
|
2006-12-13 22:36:05 +01:00
|
|
|
pass
|
|
|
|
|
2007-03-14 05:50:06 +01:00
|
|
|
@dbus.service.signal(_CLIPBOARD_DBUS_INTERFACE, signature="oa{sv}")
|
|
|
|
def object_state_changed(self, object_path, values):
|
2006-12-13 22:36:05 +01:00
|
|
|
pass
|
|
|
|
|
|
|
|
class ClipboardService(object):
|
|
|
|
def __init__(self):
|
|
|
|
self._dbus_helper = ClipboardDBusServiceHelper(self)
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
loop = gobject.MainLoop()
|
|
|
|
try:
|
|
|
|
loop.run()
|
2007-01-05 21:13:46 +01:00
|
|
|
except KeyboardInterrupt:
|
2006-12-13 22:36:05 +01:00
|
|
|
print 'Ctrl+C pressed, exiting...'
|