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

Side by Side Diff: packagerEdge.py

Issue 29345751: Issue 4028 - Add support for Edge extensions to buildtools (Closed)
Patch Set: Remove app_id inconsistency warning and start padding the version to 4 groups of digits Created Oct. 13, 2016, 11:53 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « packagerChrome.py ('k') | templates/Info.plist.tmpl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5 import base64
6 import hashlib
7 import json
8 import mimetypes
9 import os
10 import zipfile
11
12 import packager
13 import packagerChrome
14
15 # Files and directories expected inside of the .APPX archive.
16 MANIFEST = 'AppxManifest.xml'
17 CONTENT_TYPES = '[Content_Types].xml'
18 BLOCKMAP = 'AppxBlockMap.xml'
19 EXTENSION_DIR = 'Extension'
20 ASSETS_DIR = 'Assets'
21
22 # Size of uncompressed block in the APPX block map.
23 BLOCKSIZE = 64 * 1024
24
25 defaultLocale = packagerChrome.defaultLocale
26
27
28 def _get_template_for(filename):
29 return packager.getTemplate('edge/{}.tmpl'.format(filename))
30
31
32 def _lfh_size(filename):
33 """Compute the size of zip local file header for `filename`."""
34 try:
35 filename = filename.encode('utf-8')
36 except UnicodeDecodeError:
37 pass # filename is already a byte string.
38 return zipfile.sizeFileHeader + len(filename)
39
40
41 def _make_blockmap_entry(filename, data):
42 blocks = [data[i:i + BLOCKSIZE] for i in range(0, len(data), BLOCKSIZE)]
43 return {
44 'name': filename.replace('/', '\\'),
45 'size': len(data),
46 'lfh_size': _lfh_size(filename),
47 'blocks': [
48 {'hash': base64.b64encode(hashlib.sha256(block).digest())}
49 for block in blocks
50 ]
51 }
52
53
54 def create_appx_blockmap(files):
55 """Create APPX blockmap for the list of files."""
56 template = _get_template_for(BLOCKMAP)
57 files = [_make_blockmap_entry(n, d) for n, d in files.items()]
58 return template.render(files=files).encode('utf-8')
59
60
61 def load_translation(files, locale):
62 """Load translation strings for locale from files."""
63 path = '{}/_locales/{}/messages.json'.format(EXTENSION_DIR, locale)
64 return json.loads(files[path])
65
66
67 def pad_version(version):
68 """Make sure version number has 4 groups of digits."""
69 groups = (version.split('.') + ['0', '0', '0'])[:4]
70 return '.'.join(groups)
71
72
73 def create_appx_manifest(params, files):
74 """Create AppxManifest.xml."""
75 params = dict(params)
76 metadata = params['metadata']
77 w = params['windows_version'] = {}
78 w['min'], w['max'] = metadata.get('compat', 'windows').split('/')
79 params.update(metadata.items('general'))
80 params['version'] = pad_version(params['version'])
81
82 translation = load_translation(files, defaultLocale)
83 params['display_name'] = translation['name']
84 params['description'] = translation['description']
85
86 for size in ['44', '50', '150']:
87 path = '{}/logo_{}.png'.format(ASSETS_DIR, size)
88 if path not in files:
89 raise KeyError(path + 'is not found in files')
90 params['logo_' + size] = path.replace('/', '\\')
91
92 template = _get_template_for(MANIFEST)
93 return template.render(params).encode('utf-8')
94
95
96 def move_files_to_extension(files):
97 """Move all files into `Extension` folder for APPX packaging."""
98 # We sort the files to ensure that 'Extension/xyz' is moved before 'xyz'.
99 # If 'xyz' is moved first, it would overwrite 'Extension/xyz' and its
100 # original content would be lost.
101 names = sorted(files.keys(), key=len, reverse=True)
102 for filename in names:
103 files['{}/{}'.format(EXTENSION_DIR, filename)] = files.pop(filename)
104
105
106 def create_content_types_map(filenames):
107 """Create [Content_Types].xml -- a mime type map."""
108 params = {'defaults': {}, 'overrides': {}}
109 overrides = {
110 BLOCKMAP: 'application/vnd.ms-appx.blockmap+xml',
111 MANIFEST: 'application/vnd.ms-appx.manifest+xml'
112 }
113 for filename in filenames:
114 ext = os.path.splitext(filename)[1]
115 if ext:
116 content_type = mimetypes.guess_type(filename, strict=False)[0]
117 if content_type is not None:
118 params['defaults'][ext[1:]] = content_type
119 if filename in overrides:
120 params['overrides']['/' + filename] = overrides[filename]
121 content_types_template = _get_template_for(CONTENT_TYPES)
122 return content_types_template.render(params).encode('utf-8')
123
124
125 def createBuild(baseDir, type='edge', outFile=None, # noqa: preserve API.
126 buildNum=None, releaseBuild=False, keyFile=None,
127 devenv=False):
128
129 metadata = packager.readMetadata(baseDir, type)
130 version = packager.getBuildVersion(baseDir, metadata, releaseBuild,
131 buildNum)
132
133 outfile = outFile or packager.getDefaultFileName(metadata, version, 'appx')
134
135 params = {
136 'type': type,
137 'baseDir': baseDir,
138 'releaseBuild': releaseBuild,
139 'version': version,
140 'devenv': devenv,
141 'metadata': metadata,
142 }
143
144 files = packager.Files(packagerChrome.getPackageFiles(params),
145 packagerChrome.getIgnoredFiles(params))
146
147 if metadata.has_section('mapping'):
148 mapped = metadata.items('mapping')
149 files.readMappedFiles(mapped)
150 files.read(baseDir, skip=[filename for filename, _ in mapped])
151 else:
152 files.read(baseDir)
153
154 if metadata.has_section('convert_js'):
155 packagerChrome.convertJS(params, files)
156
157 if metadata.has_section('preprocess'):
158 files.preprocess(metadata.options('preprocess'), {'needsExt': True})
159
160 if metadata.has_section('import_locales'):
161 packagerChrome.importGeckoLocales(params, files)
162
163 files['manifest.json'] = packagerChrome.createManifest(params, files)
164
165 move_files_to_extension(files)
166
167 if metadata.has_section('appx_assets'):
168 for name, path in metadata.items('appx_assets'):
169 path = os.path.join(baseDir, path)
170 files.read(path, '{}/{}'.format(ASSETS_DIR, name))
171
172 files[MANIFEST] = create_appx_manifest(params, files)
173 files[CONTENT_TYPES] = create_content_types_map(files.keys() + [BLOCKMAP])
174
175 # We don't support AppxBlockmap.xml generation for compressed zip files at
176 # the moment. The only way to reliably calculate the compressed size of
177 # each 64k chunk in the zip file is to override the relevant parts of
178 # `zipfile` library. We have chosen to not do it so we produce an
179 # uncompressed zip file that is later repackaged by Windows Store with
180 # compression.
181 files[BLOCKMAP] = create_appx_blockmap(files)
182 files.zip(outfile, compression=zipfile.ZIP_STORED)
OLDNEW
« 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