sugar-toolkit-gtk3/src/sugar3/bundle/bundle.py

212 lines
6.6 KiB
Python
Raw Normal View History

2007-09-06 22:24:44 +02:00
# Copyright (C) 2007, Red Hat, Inc.
#
# 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.
#
# This library 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
# Lesser General Public License for more details.
#
# 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.
"""Sugar bundle file handler
UNSTABLE.
"""
2007-09-06 22:24:44 +02:00
import six
2007-09-06 22:24:44 +02:00
import os
2008-04-19 11:48:57 +02:00
import logging
import shutil
2007-09-06 22:24:44 +02:00
import zipfile
2009-08-25 21:12:40 +02:00
2008-04-19 11:48:57 +02:00
class AlreadyInstalledException(Exception):
pass
2009-08-25 21:12:40 +02:00
2008-04-19 11:48:57 +02:00
class NotInstalledException(Exception):
pass
2009-08-25 21:12:40 +02:00
2008-04-19 11:48:57 +02:00
class InvalidPathException(Exception):
pass
2009-08-25 21:12:40 +02:00
2008-04-19 11:48:57 +02:00
class ZipExtractException(Exception):
pass
2009-08-25 21:12:40 +02:00
2008-04-19 11:48:57 +02:00
class RegistrationException(Exception):
pass
2009-08-25 21:12:40 +02:00
2008-04-19 11:48:57 +02:00
class MalformedBundleException(Exception):
pass
2007-09-06 22:24:44 +02:00
2009-08-25 21:12:40 +02:00
2008-10-20 17:31:58 +02:00
class Bundle(object):
2007-09-06 22:24:44 +02:00
"""A Sugar activity, content module, etc.
2007-09-06 22:24:44 +02:00
The bundle itself may be either a zip file or a directory
hierarchy, with metadata about the bundle stored various files
inside it.
This is an abstract base class. See ActivityBundle and
ContentBundle for more details on those bundle types.
"""
2008-04-19 11:48:57 +02:00
_zipped_extension = None
_unzipped_extension = None
2007-09-06 22:24:44 +02:00
def __init__(self, path):
self._path = path
2008-04-19 11:48:57 +02:00
self._zip_root_dir = None
self._zip_file = None
self._installation_time = os.stat(path).st_mtime
2007-09-06 22:24:44 +02:00
if not os.path.isdir(self._path):
try:
self._zip_file = zipfile.ZipFile(self._path)
except zipfile.error as exception:
raise MalformedBundleException('Error accessing zip file %r: '
'%s' % (self._path, exception))
2007-09-06 22:24:44 +02:00
self._check_zip_bundle()
def __del__(self):
if self._zip_file is not None:
self._zip_file.close()
2007-09-06 22:24:44 +02:00
def _check_zip_bundle(self):
file_names = self._zip_file.namelist()
2007-09-06 22:24:44 +02:00
if len(file_names) == 0:
raise MalformedBundleException('Empty zip file')
if file_names[0] == 'mimetype':
del file_names[0]
2007-09-06 22:24:44 +02:00
self._zip_root_dir = file_names[0].split('/')[0]
if self._zip_root_dir.startswith('.'):
raise MalformedBundleException(
'root directory starts with .')
2007-09-06 22:24:44 +02:00
if self._unzipped_extension is not None:
2008-04-24 16:23:53 +02:00
(name_, ext) = os.path.splitext(self._zip_root_dir)
2007-09-06 22:24:44 +02:00
if ext != self._unzipped_extension:
raise MalformedBundleException(
'All files in the bundle must be inside a single ' +
'directory whose name ends with %r' %
2007-09-06 22:24:44 +02:00
self._unzipped_extension)
for file_name in file_names:
if not file_name.startswith(self._zip_root_dir):
raise MalformedBundleException(
'All files in the bundle must be inside a single ' +
'top-level directory')
def get_file(self, filename):
2008-04-19 11:48:57 +02:00
f = None
2007-09-06 22:24:44 +02:00
if self._zip_file is None:
2007-09-06 22:24:44 +02:00
path = os.path.join(self._path, filename)
try:
f = open(path, 'r')
except IOError:
2014-03-20 00:36:20 +01:00
logging.debug("cannot open path %s" % path)
return None
2007-09-06 22:24:44 +02:00
else:
path = os.path.join(self._zip_root_dir, filename)
try:
data = self._zip_file.read(path)
f = six.StringIO(data)
2007-09-06 22:24:44 +02:00
except KeyError:
2014-03-20 00:36:20 +01:00
logging.debug('%s not found in zip %s.' % (filename, path))
return None
2007-09-06 22:24:44 +02:00
2008-04-19 11:48:57 +02:00
return f
def is_file(self, filename):
if self._zip_file is None:
path = os.path.join(self._path, filename)
return os.path.isfile(path)
else:
path = os.path.join(self._zip_root_dir, filename)
try:
self._zip_file.getinfo(path)
except KeyError:
return False
return True
def is_dir(self, filename):
if self._zip_file is None:
path = os.path.join(self._path, filename)
return os.path.isdir(path)
else:
path = os.path.join(self._zip_root_dir, filename, "")
for f in self._zip_file.namelist():
if f.startswith(path):
return True
return False
2007-09-06 22:24:44 +02:00
def get_path(self):
"""Get the bundle path."""
return self._path
def get_installation_time(self):
"""Get a timestamp representing the time at which this activity was
installed."""
return self._installation_time
def get_show_launcher(self):
return True
2007-09-06 22:24:44 +02:00
def _unzip(self, install_dir):
if self._zip_file is None:
2007-09-06 22:24:44 +02:00
raise AlreadyInstalledException
if not os.path.isdir(install_dir):
os.mkdir(install_dir, 0o775)
2007-09-06 22:24:44 +02:00
# zipfile provides API that in theory would let us do this
# correctly by hand, but handling all the oddities of
# Windows/UNIX mappings, extension attributes, deprecated
# features, etc makes it impractical.
2007-11-02 18:37:57 +01:00
if os.spawnlp(os.P_WAIT, 'unzip', 'unzip', '-o', self._path,
'-x', 'mimetype', '-d', install_dir):
# clean up install dir after failure
shutil.rmtree(os.path.join(install_dir, self._zip_root_dir),
ignore_errors=True)
# indicate failure.
2007-09-06 22:24:44 +02:00
raise ZipExtractException
def _zip(self, bundle_path):
if self._zip_file is not None:
2007-09-06 22:24:44 +02:00
raise NotInstalledException
2008-04-19 11:48:57 +02:00
raise NotImplementedError
2007-09-06 22:24:44 +02:00
def _uninstall(self, install_path):
if not os.path.isdir(install_path):
raise InvalidPathException
if self._unzipped_extension is not None:
2008-04-24 16:23:53 +02:00
(name_, ext) = os.path.splitext(install_path)
if ext != self._unzipped_extension:
2007-09-06 22:24:44 +02:00
raise InvalidPathException
for root, dirs, files in os.walk(install_path, topdown=False):
for name in files:
os.remove(os.path.join(root, name))
for name in dirs:
path = os.path.join(root, name)
if os.path.islink(path):
os.remove(path)
else:
os.rmdir(path)
os.rmdir(install_path)