Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: packagerEdge.py

Issue 29345751: Issue 4028 - Add support for Edge extensions to buildtools (Closed)
Patch Set: Address review comments 3 (except for localization of AppxManifest) Created July 7, 2016, 3:52 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packagerChrome.py ('k') | templates/Info.plist.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packagerEdge.py
===================================================================
new file mode 100644
--- /dev/null
+++ b/packagerEdge.py
@@ -0,0 +1,168 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+import base64
+import hashlib
+import mimetypes
+import os
+import zipfile
+
+import packager
+import packagerChrome
+
+MANIFEST = 'AppxManifest.xml'
+CONTENT_TYPES = '[Content_Types].xml'
+BLOCKMAP = 'AppxBlockMap.xml'
+BLOCKSIZE = 64 * 1024
+
+
+def _get_template_for(filename):
+ return packager.getTemplate('edge/{}.tmpl'.format(filename))
+
+
+def _sha256(block):
+ h = hashlib.sha256()
+ h.update(block)
+ return base64.b64encode(h.digest())
+
+
+def _lfh_size(filename):
+ """Compute the size of zip local file header for `filename`."""
+ try:
+ filename = filename.encode('utf-8')
+ except UnicodeDecodeError:
+ pass # filename is already a byte string.
+ return zipfile.sizeFileHeader + len(filename)
+
+
+def _make_blockmap_entry(filename, data):
+ blocks = [data[i:i + BLOCKSIZE] for i in range(0, len(data), BLOCKSIZE)]
+ return {
+ 'name': filename.replace('/', '\\'),
+ 'size': len(data),
+ 'lfh_size': _lfh_size(filename),
+ 'blocks': [{'hash': _sha256(block)} for block in blocks]
+ }
+
+
+def create_appx_blockmap(files):
+ """Create APPX blockmap for the list of files."""
+ template = _get_template_for(BLOCKMAP)
+ files = [_make_blockmap_entry(n, d) for n, d in files.items()]
+ return template.render(files=files).encode('utf-8')
+
+
+def create_appx_manifest(params, files):
+ """Create AppxManifest.xml."""
+ template = _get_template_for(MANIFEST)
+ params = dict(params)
+ metadata = params['metadata']
+ params['package_identity'] = dict(metadata.items('package_identity'))
+ w = params['windows_version'] = {}
+ w['min'], w['max'] = metadata.get('compat', 'windows').split('/')
+ params.update(metadata.items('general'))
+ for size in ['44', '50', '150']:
+ path = 'Assets/logo_{}.png'.format(size)
+ if path not in files:
+ raise KeyError('{} is not found in files'.format(path))
+ params['logo_' + size] = path.replace('/', '\\')
+ return template.render(params).encode('utf-8')
+
+
+def move_files_to_extension(files):
+ """Move all files into `Extension` folder for APPX packaging."""
+ # We sort the files to ensure that 'Extension/xyz' is moved before 'xyz'.
+ # If 'xyz' is moved first, it would overwrite 'Extension/xyz' and its
+ # original content would be lost.
+ names = sorted(files.keys(), key=len, reverse=True)
+ for filename in names:
+ files['Extension/' + filename] = files.pop(filename)
+
+
+def create_content_types_map(files):
+ """Create [Content_Types].xml -- a mime type map."""
+ # We always have a manifest and a blockmap, so we include those by default.
+ params = {
+ 'defaults': {
+ 'xml': 'text/xml'
+ },
+ 'overrides': {
+ '/AppxBlockMap.xml': 'application/vnd.ms-appx.blockmap+xml',
+ '/AppxManifest.xml': 'application/vnd.ms-appx.manifest+xml'
+ }
+ }
+ for filename in files:
+ if '.' in filename[1:]:
+ ext = filename.split('.')[-1]
+ content_type = mimetypes.guess_type(filename, strict=False)
+ # The return value can be a string or a tuple:
+ # https://docs.python.org/2/library/mimetypes.html#mimetypes.guess_type
+ if isinstance(content_type, tuple):
+ content_type = content_type[0]
+ if content_type is not None:
+ params['defaults'][ext] = content_type
+ content_types_template = _get_template_for(CONTENT_TYPES)
+ return content_types_template.render(params).encode('utf-8')
+
+
+def createBuild(baseDir, type='edge', outFile=None, # noqa: preserve API.
+ buildNum=None, releaseBuild=False, keyFile=None,
+ devenv=False):
+
+ metadata = packager.readMetadata(baseDir, type)
+ version = packager.getBuildVersion(baseDir, metadata, releaseBuild,
+ buildNum)
+
+ outfile = outFile or packager.getDefaultFileName(metadata, version, 'appx')
+
+ params = {
+ 'type': type,
+ 'baseDir': baseDir,
+ 'releaseBuild': releaseBuild,
+ 'version': version,
+ 'devenv': devenv,
+ 'metadata': metadata,
+ }
+
+ files = packager.Files(packagerChrome.getPackageFiles(params),
+ packagerChrome.getIgnoredFiles(params))
+
+ if metadata.has_section('mapping'):
+ mapped = metadata.items('mapping')
+ files.readMappedFiles(mapped)
+ files.read(baseDir, skip=[filename for filename, _ in mapped])
+ else:
+ files.read(baseDir)
+
+ if metadata.has_section('convert_js'):
+ packagerChrome.convertJS(params, files)
+
+ if metadata.has_section('preprocess'):
+ files.preprocess(metadata.options('preprocess'), {'needsExt': True})
+
+ if metadata.has_section('import_locales'):
+ packagerChrome.importGeckoLocales(params, files)
+
+ files['manifest.json'] = packagerChrome.createManifest(params, files)
+
+ move_files_to_extension(files)
+
+ if metadata.has_section('appx_assets'):
+ for name, path in metadata.items('appx_assets'):
+ path = os.path.join(baseDir, path)
+ files.read(path, 'Assets/{}'.format(name))
Sebastian Noack 2016/07/08 13:59:12 Use the + operator here?
Vasily Kuznetsov 2016/07/08 16:47:39 Done.
+
+ files[MANIFEST] = create_appx_manifest(params, files)
+ files[CONTENT_TYPES] = create_content_types_map(files)
+
+ # We don't support AppxBlockmap.xml generation for compressed zip files at
+ # the moment. The only way to reliably calculate the compressed size of
+ # each 64k chunk in the zip file is to override the relevant parts of
+ # `zipfile` library. We have chosen to not do it for now, so we produce
+ # an uncompressed zip file.
+ files[BLOCKMAP] = create_appx_blockmap(files)
+
+ # TODO: Implement AppxBlockmap.xml generation for compressed zip files.
+ # https://issues.adblockplus.org/ticket/4149
+ files.zip(outfile, compress=False)
« no previous file with comments | « packagerChrome.py ('k') | templates/Info.plist.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld