2007-05-10 11:01:32 +02:00
|
|
|
# Copyright (C) 2006, Red Hat, Inc.
|
|
|
|
# Copyright (C) 2007, One Laptop Per Child
|
|
|
|
#
|
|
|
|
# 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 dbus
|
|
|
|
import dbus.glib
|
|
|
|
import gobject
|
|
|
|
|
|
|
|
from sugar import util
|
|
|
|
|
|
|
|
DS_DBUS_SERVICE = "org.laptop.sugar.DataStore"
|
|
|
|
DS_DBUS_INTERFACE = "org.laptop.sugar.DataStore"
|
|
|
|
DS_DBUS_PATH = "/org/laptop/sugar/DataStore"
|
|
|
|
|
|
|
|
_bus = dbus.SessionBus()
|
2007-05-28 16:25:36 +02:00
|
|
|
_data_store = dbus.Interface(_bus.get_object(DS_DBUS_SERVICE, DS_DBUS_PATH),
|
|
|
|
DS_DBUS_INTERFACE)
|
2007-05-10 11:01:32 +02:00
|
|
|
|
|
|
|
def create(properties, filename):
|
|
|
|
object_id = _data_store.create(dbus.Dictionary(properties), filename)
|
|
|
|
logging.debug('dbus_helpers.create: ' + object_id)
|
|
|
|
return object_id
|
|
|
|
|
2007-05-16 06:41:45 +02:00
|
|
|
def update(uid, properties, filename, reply_handler=None, error_handler=None):
|
2007-05-20 12:38:08 +02:00
|
|
|
logging.debug('dbus_helpers.update: %s, %s' % (uid, filename))
|
2007-05-16 06:41:45 +02:00
|
|
|
if reply_handler and error_handler:
|
|
|
|
_data_store.update(uid, dbus.Dictionary(properties), filename,
|
|
|
|
reply_handler=reply_handler,
|
|
|
|
error_handler=error_handler)
|
|
|
|
else:
|
|
|
|
_data_store.update(uid, dbus.Dictionary(properties), filename)
|
2007-05-10 11:01:32 +02:00
|
|
|
|
2007-06-22 17:01:13 +02:00
|
|
|
def delete(uid):
|
|
|
|
logging.debug('dbus_helpers.delete: %r' % uid)
|
|
|
|
_data_store.delete(uid)
|
|
|
|
|
2007-05-10 11:01:32 +02:00
|
|
|
def get_properties(uid):
|
2007-05-16 17:01:59 +02:00
|
|
|
logging.debug('dbus_helpers.get_properties: %s' % uid)
|
|
|
|
return _data_store.get_properties(uid)
|
2007-05-10 11:01:32 +02:00
|
|
|
|
|
|
|
def get_filename(uid):
|
2007-05-13 18:21:35 +02:00
|
|
|
filename = _data_store.get_filename(uid)
|
|
|
|
logging.debug('dbus_helpers.get_filename: %s, %s' % (uid, filename))
|
|
|
|
return filename
|
2007-05-10 11:01:32 +02:00
|
|
|
|
2007-05-16 06:41:45 +02:00
|
|
|
def find(query, reply_handler, error_handler):
|
2007-05-16 17:01:59 +02:00
|
|
|
logging.debug('dbus_helpers.find')
|
2007-05-16 06:41:45 +02:00
|
|
|
if reply_handler and error_handler:
|
|
|
|
return _data_store.find(query, reply_handler=reply_handler,
|
|
|
|
error_handler=error_handler)
|
|
|
|
else:
|
|
|
|
return _data_store.find(query)
|
2007-05-10 11:01:32 +02:00
|
|
|
|