2007-05-10 11:01:32 +02:00
|
|
|
# Copyright (C) 2007, One Laptop Per Child
|
2006-12-11 13:55:01 +01:00
|
|
|
#
|
2007-06-24 13:10:53 +02:00
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
2006-12-11 13:55:01 +01:00
|
|
|
#
|
2007-06-24 13:10:53 +02:00
|
|
|
# This library is distributed in the hope that it will be useful,
|
2006-12-11 13:55:01 +01:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2007-06-24 13:10:53 +02:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
2006-12-11 13:55:01 +01:00
|
|
|
#
|
2007-06-24 13:10:53 +02:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
|
2007-03-02 21:17:03 +01:00
|
|
|
import logging
|
|
|
|
|
|
|
|
import gobject
|
2006-12-11 13:55:01 +01:00
|
|
|
|
2007-05-10 11:01:32 +02:00
|
|
|
from sugar.datastore import dbus_helpers
|
2007-07-11 11:39:40 +02:00
|
|
|
from sugar import activity
|
|
|
|
from sugar.activity.bundle import Bundle
|
|
|
|
from sugar.activity import activityfactory
|
2006-12-11 13:55:01 +01:00
|
|
|
|
2007-05-29 15:53:58 +02:00
|
|
|
class DSMetadata(gobject.GObject):
|
2006-12-11 13:55:01 +01:00
|
|
|
__gsignals__ = {
|
|
|
|
'updated': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
|
2007-05-13 18:21:35 +02:00
|
|
|
([]))
|
2006-12-11 13:55:01 +01:00
|
|
|
}
|
|
|
|
|
2007-06-12 21:57:49 +02:00
|
|
|
def __init__(self, props=None):
|
2006-12-11 13:55:01 +01:00
|
|
|
gobject.GObject.__init__(self)
|
2007-06-12 21:57:49 +02:00
|
|
|
if not props:
|
|
|
|
self._props = {}
|
|
|
|
else:
|
|
|
|
self._props = props
|
|
|
|
|
2007-06-18 20:38:20 +02:00
|
|
|
default_keys = ['activity', 'mime_type', 'title_set_by_user']
|
2007-06-12 21:57:49 +02:00
|
|
|
for key in default_keys:
|
|
|
|
if not self._props.has_key(key):
|
|
|
|
self._props[key] = ''
|
2007-05-10 11:01:32 +02:00
|
|
|
|
|
|
|
def __getitem__(self, key):
|
2007-05-29 15:53:58 +02:00
|
|
|
return self._props[key]
|
2007-05-10 11:01:32 +02:00
|
|
|
|
|
|
|
def __setitem__(self, key, value):
|
2007-05-29 15:53:58 +02:00
|
|
|
if not self._props.has_key(key) or self._props[key] != value:
|
|
|
|
self._props[key] = value
|
2007-05-13 18:21:35 +02:00
|
|
|
self.emit('updated')
|
|
|
|
|
2007-05-20 12:38:08 +02:00
|
|
|
def __delitem__(self, key):
|
2007-05-29 15:53:58 +02:00
|
|
|
del self._props[key]
|
|
|
|
|
|
|
|
def has_key(self, key):
|
|
|
|
return self._props.has_key(key)
|
|
|
|
|
|
|
|
def get_dictionary(self):
|
|
|
|
return self._props
|
|
|
|
|
|
|
|
class DSObject:
|
|
|
|
def __init__(self, object_id, metadata=None, file_path=None):
|
|
|
|
self.object_id = object_id
|
|
|
|
self._metadata = metadata
|
|
|
|
self._file_path = file_path
|
2007-05-20 12:38:08 +02:00
|
|
|
|
2007-05-13 18:21:35 +02:00
|
|
|
def get_metadata(self):
|
2007-05-22 14:03:31 +02:00
|
|
|
if self._metadata is None and not self.object_id is None:
|
2007-05-29 15:53:58 +02:00
|
|
|
metadata = DSMetadata(dbus_helpers.get_properties(self.object_id))
|
|
|
|
self._metadata = metadata
|
2007-05-13 18:21:35 +02:00
|
|
|
return self._metadata
|
|
|
|
|
|
|
|
def set_metadata(self, metadata):
|
|
|
|
if self._metadata != metadata:
|
|
|
|
self._metadata = metadata
|
|
|
|
|
|
|
|
metadata = property(get_metadata, set_metadata)
|
|
|
|
|
|
|
|
def get_file_path(self):
|
2007-05-22 14:03:31 +02:00
|
|
|
if self._file_path is None and not self.object_id is None:
|
|
|
|
self.set_file_path(dbus_helpers.get_filename(self.object_id))
|
2007-05-13 18:21:35 +02:00
|
|
|
return self._file_path
|
|
|
|
|
|
|
|
def set_file_path(self, file_path):
|
|
|
|
if self._file_path != file_path:
|
|
|
|
self._file_path = file_path
|
|
|
|
|
|
|
|
file_path = property(get_file_path, set_file_path)
|
2007-05-10 11:01:32 +02:00
|
|
|
|
2007-07-11 11:39:40 +02:00
|
|
|
def get_activities(self):
|
|
|
|
activities = []
|
|
|
|
|
|
|
|
if self.metadata['activity']:
|
|
|
|
activity_info = activity.get_registry().get_activity(self.metadata['activity'])
|
|
|
|
activities.append(activity_info)
|
|
|
|
|
|
|
|
mime_type = self.metadata['mime_type']
|
|
|
|
if mime_type:
|
|
|
|
activities_info = activity.get_registry().get_activities_for_type(mime_type)
|
|
|
|
for activity_info in activities_info:
|
|
|
|
if activity_info.service_name != self.metadata['activity']:
|
|
|
|
activities.append(activity_info)
|
|
|
|
|
|
|
|
return activities
|
|
|
|
|
|
|
|
def is_bundle(self):
|
|
|
|
return self.metadata['mime_type'] == 'application/vnd.olpc-x-sugar'
|
|
|
|
|
|
|
|
def resume(self):
|
|
|
|
if self.is_bundle():
|
|
|
|
bundle = Bundle(self.file_path)
|
|
|
|
if not bundle.is_installed():
|
|
|
|
bundle.install()
|
|
|
|
|
|
|
|
activityfactory.create(bundle.get_service_name())
|
|
|
|
else:
|
|
|
|
activity_info = self.get_activities()[0]
|
|
|
|
activityfactory.create_with_object_id(activity_info.service_name,
|
|
|
|
self.object_id)
|
|
|
|
|
2007-05-10 11:01:32 +02:00
|
|
|
def get(object_id):
|
|
|
|
logging.debug('datastore.get')
|
|
|
|
metadata = dbus_helpers.get_properties(object_id)
|
|
|
|
file_path = dbus_helpers.get_filename(object_id)
|
2007-05-13 18:21:35 +02:00
|
|
|
|
2007-05-29 15:53:58 +02:00
|
|
|
ds_object = DSObject(object_id, DSMetadata(metadata), file_path)
|
2007-05-10 11:01:32 +02:00
|
|
|
# TODO: register the object for updates
|
|
|
|
return ds_object
|
|
|
|
|
|
|
|
def create():
|
2007-05-29 15:53:58 +02:00
|
|
|
return DSObject(object_id=None, metadata=DSMetadata(), file_path=None)
|
2007-05-10 11:01:32 +02:00
|
|
|
|
2007-05-16 06:41:45 +02:00
|
|
|
def write(ds_object, reply_handler=None, error_handler=None):
|
2007-06-15 18:03:17 +02:00
|
|
|
logging.debug('datastore.write')
|
2007-07-09 14:26:41 +02:00
|
|
|
|
|
|
|
properties = ds_object.metadata.get_dictionary().copy()
|
|
|
|
# The title property should be sent as a 'text' property so it gets indexed
|
|
|
|
if properties.has_key('title'):
|
|
|
|
properties['title:text'] = properties['title']
|
|
|
|
del properties['title']
|
|
|
|
|
2007-05-10 11:01:32 +02:00
|
|
|
if ds_object.object_id:
|
|
|
|
dbus_helpers.update(ds_object.object_id,
|
2007-07-09 14:26:41 +02:00
|
|
|
properties,
|
2007-05-16 06:41:45 +02:00
|
|
|
ds_object.file_path,
|
|
|
|
reply_handler=reply_handler,
|
|
|
|
error_handler=error_handler)
|
2007-05-10 11:01:32 +02:00
|
|
|
else:
|
2007-07-09 14:26:41 +02:00
|
|
|
ds_object.object_id = dbus_helpers.create(properties,
|
2007-05-10 11:01:32 +02:00
|
|
|
ds_object.file_path)
|
|
|
|
# TODO: register the object for updates
|
|
|
|
logging.debug('Written object %s to the datastore.' % ds_object.object_id)
|
2006-12-11 13:55:01 +01:00
|
|
|
|
2007-06-22 17:01:13 +02:00
|
|
|
def delete(object_id):
|
|
|
|
logging.debug('datastore.delete')
|
|
|
|
dbus_helpers.delete(object_id)
|
|
|
|
|
2007-05-22 14:03:31 +02:00
|
|
|
def find(query, sorting=None, limit=None, offset=None, reply_handler=None,
|
|
|
|
error_handler=None):
|
|
|
|
if sorting:
|
|
|
|
query['order_by'] = sorting
|
|
|
|
if limit:
|
|
|
|
query['limit'] = limit
|
|
|
|
if offset:
|
|
|
|
query['offset'] = offset
|
|
|
|
|
|
|
|
props_list, total_count = dbus_helpers.find(query, reply_handler, error_handler)
|
|
|
|
|
2007-05-10 11:01:32 +02:00
|
|
|
objects = []
|
2007-05-22 14:03:31 +02:00
|
|
|
for props in props_list:
|
|
|
|
if props.has_key('filename') and props['filename']:
|
|
|
|
file_path = props['filename']
|
|
|
|
del props['filename']
|
|
|
|
else:
|
|
|
|
file_path = None
|
|
|
|
|
|
|
|
object_id = props['uid']
|
|
|
|
del props['uid']
|
|
|
|
|
2007-05-29 15:53:58 +02:00
|
|
|
ds_object = DSObject(object_id, DSMetadata(props), file_path)
|
2007-05-22 14:03:31 +02:00
|
|
|
objects.append(ds_object)
|
|
|
|
|
|
|
|
return objects, total_count
|
|
|
|
|
2007-06-27 11:36:05 +02:00
|
|
|
def mount(uri, options):
|
|
|
|
return dbus_helpers.mount(uri, options)
|
|
|
|
|
2007-06-28 10:43:38 +02:00
|
|
|
def unmount(mount_point_id):
|
|
|
|
dbus_helpers.unmount(mount_point_id)
|
|
|
|
|
2007-06-27 11:36:05 +02:00
|
|
|
def mounts():
|
|
|
|
return dbus_helpers.mounts()
|
2007-07-03 17:07:48 +02:00
|
|
|
|
|
|
|
def get_unique_values(key):
|
|
|
|
return dbus_helpers.get_unique_values(key)
|