[Dextrose] [PATCH] Add microformat support to updater.
Anish Mangal
anishmangal2002 at gmail.com
Mon Aug 9 12:20:52 EDT 2010
Please try the newer patch I sent. The older version had a couple of issues.
--
Anish
On Mon, Aug 9, 2010 at 9:48 PM, anishmangal2002
<anishmangal2002 at gmail.com> wrote:
>
> Signed-off-by: anishmangal2002 <anishmangal2002 at gmail.com>
> ---
> .../cpsection/updater/backends/microformat.py | 125 ++++++++++++++++++++
> extensions/cpsection/updater/model.py | 13 +-
> 2 files changed, 131 insertions(+), 7 deletions(-)
> create mode 100644 extensions/cpsection/updater/backends/microformat.py
>
> diff --git a/extensions/cpsection/updater/backends/microformat.py b/extensions/cpsection/updater/backends/microformat.py
> new file mode 100644
> index 0000000..ea7dda1
> --- /dev/null
> +++ b/extensions/cpsection/updater/backends/microformat.py
> @@ -0,0 +1,125 @@
> +#!/usr/bin/python
> +# Copyright (C) 2009, Sugar Labs
> +#
> +# 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
> +from HTMLParser import HTMLParser
> +
> +import gio
> +
> +from jarabe import config
> +
> +#_UPDATE_PATH = 'http://activities.sugarlabs.org/services/update-aslo.php'
> +_UPDATE_PATH = 'http://wiki.paraguayeduca.org/index.php/Actividades_y_contenidos'
> +
> +_fetcher = None
> +# flag indicating whether we've parsed the url once or not
> +_activity_list_populated = False
> +
> +_ACTIVITIES_LIST = {}
> +
> +class _UpdateFetcher(HTMLParser):
> +
> + def __init__(self, bundle, completion_cb):
> + # ASLO knows only about stable SP releases
> + major, minor = config.version.split('.')[0:2]
> + sp_version = '%s.%s' % (major, int(minor) + int(minor) % 2)
> + # Reset the HTMLParser.
> + # FIXME: Check why it does not get reset on its own.
> + self.reset()
> + self._activity_id = ''
> + self._activity_url = ''
> + self._activity_version = ''
> + self._inside_activity_version = False
> + self._inside_activity_id = False
> + self._inside_activity_url = False
> +
> + url = _UPDATE_PATH
> +
> + self._completion_cb = completion_cb
> + self._file = gio.File(url)
> + self._bundle = bundle
> + logging.debug('Fetch %s', url)
> + self._file.load_contents_async(self.__download_file_complete_cb)
> +
> + def __download_file_complete_cb(self, gdaemonfile, result):
> + content = self._file.load_contents_finish(result)[0]
> + self.feed(content)
> +
> + def handle_endtag(self, tag):
> + if tag == 'body':
> + self._completion_cb(None, None, None, None, None)
> +
> + def handle_starttag(self, tag, attrs):
> + if tag == 'span':
> + for attribute,value in attrs:
> + if value == 'olpc-activity-id':
> + self._inside_activity_id = True
> + elif value == 'olpc-activity-version':
> + self._inside_activity_version = True
> + elif value == 'olpc-activity-url':
> + self._inside_activity_url = True
> +
> + elif tag == 'a':
> + if self._inside_activity_url:
> + for attribute,value in attrs:
> + if attribute == 'href':
> + self._activity_url = value
> + self._inside_activity_url = False
> +
> + def handle_data(self, data):
> + if self._inside_activity_version:
> + self._activity_version = int(data)
> + self._inside_activity_version = False
> + _ACTIVITIES_LIST[self._activity_id] = \
> + {'version':self._activity_version,
> + 'url':self._activity_url,
> + 'size':1}
> + global _activity_list_populated
> + _activity_list_populated = True
> + if self._bundle._bundle_id == self._activity_id:
> + self._completion_cb(self._bundle, self._activity_version,
> + self._activity_url, 0, None)
> + elif self._inside_activity_id:
> + self._activity_id = data
> + self._inside_activity_id = False
> +
> +def fetch_update_info(bundle, completion_cb):
> + '''Queries the server for a newer version of the ActivityBundle.
> +
> + completion_cb receives bundle, version, link, size and possibly an error
> + message:
> +
> + def completion_cb(bundle, version, link, size, error_message):
> + '''
> + global _fetcher
> +
> + if bundle._bundle_id in _ACTIVITIES_LIST:
> + _fetcher = None
> + completion_cb(bundle,
> + _ACTIVITIES_LIST[bundle._bundle_id]['version'],
> + _ACTIVITIES_LIST[bundle._bundle_id]['url'],
> + _ACTIVITIES_LIST[bundle._bundle_id]['size'], None)
> + return
> +
> + global _activity_list_populated
> + if _activity_list_populated == True:
> + completion_cb(bundle, None, None, None, None)
> + else:
> + if _fetcher is not None:
> + raise RuntimeError('Multiple simultaneous requests are not supported')
> +
> + _fetcher = _UpdateFetcher(bundle, completion_cb)
> diff --git a/extensions/cpsection/updater/model.py b/extensions/cpsection/updater/model.py
> index 9845371..3ec6888 100755
> --- a/extensions/cpsection/updater/model.py
> +++ b/extensions/cpsection/updater/model.py
> @@ -36,8 +36,7 @@ from sugar.bundle.activitybundle import ActivityBundle
>
> from jarabe.model import bundleregistry
>
> -from backends import aslo
> -
> +from backends import microformat
>
> class UpdateModel(gobject.GObject):
> __gtype_name__ = 'SugarUpdateModel'
> @@ -72,11 +71,11 @@ class UpdateModel(gobject.GObject):
> total = len(bundleregistry.get_registry())
> current = total - len(self._bundles_to_check)
>
> - bundle = self._bundles_to_check.pop()
> - self.emit('progress', UpdateModel.ACTION_CHECKING, bundle.get_name(),
> - current, total)
> -
> - aslo.fetch_update_info(bundle, self.__check_completed_cb)
> + if len(self._bundles_to_check):
> + bundle = self._bundles_to_check.pop()
> + self.emit('progress', UpdateModel.ACTION_CHECKING, bundle.get_name(),
> + current, total)
> + microformat.fetch_update_info(bundle, self.__check_completed_cb)
>
> def __check_completed_cb(self, bundle, version, link, size, error_message):
> if error_message is not None:
> --
> 1.7.2.1
>
>
More information about the Dextrose
mailing list