 Issue 29345751:
  Issue 4028 - Add support for Edge extensions to buildtools  (Closed)
    
  
    Issue 29345751:
  Issue 4028 - Add support for Edge extensions to buildtools  (Closed) 
  | Left: | ||
| Right: | 
| LEFT | RIGHT | 
|---|---|
| 1 # This Source Code Form is subject to the terms of the Mozilla Public | 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 | 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/. | 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. | 
| 4 | 4 | 
| 5 import base64 | 5 import base64 | 
| 6 import hashlib | 6 import hashlib | 
| 7 import json | |
| 7 import mimetypes | 8 import mimetypes | 
| 8 import os | 9 import os | 
| 9 import zipfile | 10 import zipfile | 
| 10 | 11 | 
| 11 import packager | 12 import packager | 
| 12 import packagerChrome | 13 import packagerChrome | 
| 13 | 14 | 
| 15 # Files and directories expected inside of the .APPX archive. | |
| 14 MANIFEST = 'AppxManifest.xml' | 16 MANIFEST = 'AppxManifest.xml' | 
| 15 CONTENT_TYPES = '[Content_Types].xml' | 17 CONTENT_TYPES = '[Content_Types].xml' | 
| 16 BLOCKMAP = 'AppxBlockMap.xml' | 18 BLOCKMAP = 'AppxBlockMap.xml' | 
| 19 EXTENSION_DIR = 'Extension' | |
| 20 ASSETS_DIR = 'Assets' | |
| 21 | |
| 22 # Size of uncompressed block in the APPX block map. | |
| 17 BLOCKSIZE = 64 * 1024 | 23 BLOCKSIZE = 64 * 1024 | 
| 24 | |
| 25 defaultLocale = packagerChrome.defaultLocale | |
| 18 | 26 | 
| 19 | 27 | 
| 20 def _get_template_for(filename): | 28 def _get_template_for(filename): | 
| 21 return packager.getTemplate('edge/{}.tmpl'.format(filename)) | 29 return packager.getTemplate('edge/{}.tmpl'.format(filename)) | 
| 22 | 30 | 
| 23 | 31 | 
| 24 def _lfh_size(filename): | 32 def _lfh_size(filename): | 
| 25 """Compute the size of zip local file header for `filename`.""" | 33 """Compute the size of zip local file header for `filename`.""" | 
| 26 try: | 34 try: | 
| 27 filename = filename.encode('utf-8') | 35 filename = filename.encode('utf-8') | 
| 28 except UnicodeDecodeError: | 36 except UnicodeDecodeError: | 
| 29 pass # filename is already a byte string. | 37 pass # filename is already a byte string. | 
| 30 return zipfile.sizeFileHeader + len(filename) | 38 return zipfile.sizeFileHeader + len(filename) | 
| 31 | 39 | 
| 32 | 40 | 
| 33 def _make_blockmap_entry(filename, data): | 41 def _make_blockmap_entry(filename, data): | 
| 34 blocks = [data[i:i + BLOCKSIZE] for i in range(0, len(data), BLOCKSIZE)] | 42 blocks = [data[i:i + BLOCKSIZE] for i in range(0, len(data), BLOCKSIZE)] | 
| 35 return { | 43 return { | 
| 36 'name': filename.replace('/', '\\'), | 44 'name': filename.replace('/', '\\'), | 
| 37 'size': len(data), | 45 'size': len(data), | 
| 38 'lfh_size': _lfh_size(filename), | 46 'lfh_size': _lfh_size(filename), | 
| 39 'blocks': [ | 47 'blocks': [ | 
| 40 {'hash': base64.b64encode(hashlib.sha256(block).digest())} | 48 {'hash': base64.b64encode(hashlib.sha256(block).digest())} | 
| 
Sebastian Noack
2016/07/11 16:29:45
Wrapping the value into a dict seems unnecessary.
 
Vasily Kuznetsov
2016/07/12 09:38:09
The dictionary might also contain the `compressed_
 | |
| 41 for block in blocks | 49 for block in blocks | 
| 42 ] | 50 ] | 
| 43 } | 51 } | 
| 44 | 52 | 
| 45 | 53 | 
| 46 def create_appx_blockmap(files): | 54 def create_appx_blockmap(files): | 
| 47 """Create APPX blockmap for the list of files.""" | 55 """Create APPX blockmap for the list of files.""" | 
| 56 # We don't support AppxBlockmap.xml generation for compressed zip files at | |
| 57 # the moment. The only way to reliably calculate the compressed size of | |
| 58 # each 64k chunk in the zip file is to override the relevant parts of | |
| 59 # `zipfile` library. We have chosen to not do it so we produce an | |
| 60 # uncompressed zip file that is later repackaged by Windows Store with | |
| 61 # compression. | |
| 48 template = _get_template_for(BLOCKMAP) | 62 template = _get_template_for(BLOCKMAP) | 
| 49 files = [_make_blockmap_entry(n, d) for n, d in files.items()] | 63 files = [_make_blockmap_entry(n, d) for n, d in files.items()] | 
| 50 return template.render(files=files).encode('utf-8') | 64 return template.render(files=files).encode('utf-8') | 
| 51 | 65 | 
| 52 | 66 | 
| 53 def create_appx_manifest(params, files): | 67 def load_translation(files, locale): | 
| 68 """Load translation strings for locale from files.""" | |
| 69 path = '{}/_locales/{}/messages.json'.format(EXTENSION_DIR, locale) | |
| 70 return json.loads(files[path]) | |
| 71 | |
| 72 | |
| 73 def pad_version(version): | |
| 74 """Make sure version number has 4 groups of digits.""" | |
| 75 groups = (version.split('.') + ['0', '0', '0'])[:4] | |
| 76 return '.'.join(groups) | |
| 77 | |
| 78 | |
| 79 def create_appx_manifest(params, files, release_build=False): | |
| 54 """Create AppxManifest.xml.""" | 80 """Create AppxManifest.xml.""" | 
| 55 template = _get_template_for(MANIFEST) | |
| 56 params = dict(params) | 81 params = dict(params) | 
| 57 metadata = params['metadata'] | 82 metadata = params['metadata'] | 
| 58 params['package_identity'] = dict(metadata.items('package_identity')) | |
| 59 w = params['windows_version'] = {} | 83 w = params['windows_version'] = {} | 
| 60 w['min'], w['max'] = metadata.get('compat', 'windows').split('/') | 84 w['min'], w['max'] = metadata.get('compat', 'windows').split('/') | 
| 61 params.update(metadata.items('general')) | 85 params.update(metadata.items('general')) | 
| 86 params['version'] = pad_version(params['version']) | |
| 87 | |
| 88 translation = load_translation(files, defaultLocale) | |
| 89 name_key = 'name' if release_build else 'name_devbuild' | |
| 90 params['display_name'] = translation[name_key]['message'] | |
| 91 params['description'] = translation['description']['message'] | |
| 92 | |
| 62 for size in ['44', '50', '150']: | 93 for size in ['44', '50', '150']: | 
| 63 path = 'Assets/logo_{}.png'.format(size) | 94 path = '{}/logo_{}.png'.format(ASSETS_DIR, size) | 
| 64 if path not in files: | 95 if path not in files: | 
| 65 raise KeyError('{} is not found in files'.format(path)) | 96 raise KeyError(path + 'is not found in files') | 
| 
Sebastian Noack
2016/07/11 16:29:45
Use the + operator here?
 
Vasily Kuznetsov
2016/07/12 09:38:09
Done.
 | |
| 66 params['logo_' + size] = path.replace('/', '\\') | 97 params['logo_' + size] = path.replace('/', '\\') | 
| 98 | |
| 99 template = _get_template_for(MANIFEST) | |
| 67 return template.render(params).encode('utf-8') | 100 return template.render(params).encode('utf-8') | 
| 68 | 101 | 
| 69 | 102 | 
| 70 def move_files_to_extension(files): | 103 def move_files_to_extension(files): | 
| 71 """Move all files into `Extension` folder for APPX packaging.""" | 104 """Move all files into `Extension` folder for APPX packaging.""" | 
| 72 # We sort the files to ensure that 'Extension/xyz' is moved before 'xyz'. | 105 # We sort the files to ensure that 'Extension/xyz' is moved before 'xyz'. | 
| 73 # If 'xyz' is moved first, it would overwrite 'Extension/xyz' and its | 106 # If 'xyz' is moved first, it would overwrite 'Extension/xyz' and its | 
| 74 # original content would be lost. | 107 # original content would be lost. | 
| 75 names = sorted(files.keys(), key=len, reverse=True) | 108 names = sorted(files.keys(), key=len, reverse=True) | 
| 76 for filename in names: | 109 for filename in names: | 
| 77 files['Extension/' + filename] = files.pop(filename) | 110 files['{}/{}'.format(EXTENSION_DIR, filename)] = files.pop(filename) | 
| 78 | 111 | 
| 79 | 112 | 
| 80 def create_content_types_map(files): | 113 def create_content_types_map(filenames): | 
| 81 """Create [Content_Types].xml -- a mime type map.""" | 114 """Create [Content_Types].xml -- a mime type map.""" | 
| 82 # We always have a manifest and a blockmap, so we include those by default. | 115 params = {'defaults': {}, 'overrides': {}} | 
| 83 params = { | 116 overrides = { | 
| 84 'defaults': { | 117 BLOCKMAP: 'application/vnd.ms-appx.blockmap+xml', | 
| 85 'xml': 'text/xml' | 118 MANIFEST: 'application/vnd.ms-appx.manifest+xml' | 
| 
Sebastian Noack
2016/07/11 16:29:44
Isn't that overridden below?
 
Vasily Kuznetsov
2016/07/12 09:38:08
Indeed it is, but since I'm not sure how the conte
 
Sebastian Noack
2016/07/12 21:15:25
I mean, isn't the value here overridden by the log
 
Vasily Kuznetsov
2016/07/13 10:35:31
My thinking was that we are normally adding the co
 
Sebastian Noack
2016/07/13 16:29:22
Do we even need to consider AppxBlockMap.xml and A
 
Vasily Kuznetsov
2016/07/13 17:36:45
Yeah, this is possible, but we'll later have other
 
Sebastian Noack
2016/07/13 17:42:39
The package is signed by the Windows Store. In fac
 | |
| 86 }, | |
| 87 'overrides': { | |
| 88 '/AppxBlockMap.xml': 'application/vnd.ms-appx.blockmap+xml', | |
| 89 '/AppxManifest.xml': 'application/vnd.ms-appx.manifest+xml' | |
| 90 } | |
| 91 } | 119 } | 
| 92 for filename in files: | 120 for filename in filenames: | 
| 93 if '.' in filename[1:]: | 121 ext = os.path.splitext(filename)[1] | 
| 94 ext = filename.split('.')[-1] | 122 if ext: | 
| 
Sebastian Noack
2016/07/11 16:29:45
Use os.path.splitext?
 
Vasily Kuznetsov
2016/07/12 09:38:10
Done.
 | |
| 95 content_type = mimetypes.guess_type(filename, strict=False) | 123 content_type = mimetypes.guess_type(filename, strict=False)[0] | 
| 96 # The return value can be a string or a tuple: | |
| 
Sebastian Noack
2016/07/11 16:29:44
Can it? I think it is always a tuple, or do I miss
 
Vasily Kuznetsov
2016/07/12 09:38:09
"The return value is a tuple (type, encoding) wher
 | |
| 97 # https://docs.python.org/2/library/mimetypes.html#mimetypes.guess_t ype | |
| 98 if isinstance(content_type, tuple): | |
| 99 content_type = content_type[0] | |
| 100 if content_type is not None: | 124 if content_type is not None: | 
| 101 params['defaults'][ext] = content_type | 125 params['defaults'][ext[1:]] = content_type | 
| 126 if filename in overrides: | |
| 127 params['overrides']['/' + filename] = overrides[filename] | |
| 102 content_types_template = _get_template_for(CONTENT_TYPES) | 128 content_types_template = _get_template_for(CONTENT_TYPES) | 
| 103 return content_types_template.render(params).encode('utf-8') | 129 return content_types_template.render(params).encode('utf-8') | 
| 104 | 130 | 
| 105 | 131 | 
| 106 def createBuild(baseDir, type='edge', outFile=None, # noqa: preserve API. | 132 def createBuild(baseDir, type='edge', outFile=None, # noqa: preserve API. | 
| 107 buildNum=None, releaseBuild=False, keyFile=None, | 133 buildNum=None, releaseBuild=False, keyFile=None, | 
| 108 devenv=False): | 134 devenv=False): | 
| 109 | 135 | 
| 110 metadata = packager.readMetadata(baseDir, type) | 136 metadata = packager.readMetadata(baseDir, type) | 
| 111 version = packager.getBuildVersion(baseDir, metadata, releaseBuild, | 137 version = packager.getBuildVersion(baseDir, metadata, releaseBuild, | 
| (...skipping 29 matching lines...) Expand all Loading... | |
| 141 if metadata.has_section('import_locales'): | 167 if metadata.has_section('import_locales'): | 
| 142 packagerChrome.importGeckoLocales(params, files) | 168 packagerChrome.importGeckoLocales(params, files) | 
| 143 | 169 | 
| 144 files['manifest.json'] = packagerChrome.createManifest(params, files) | 170 files['manifest.json'] = packagerChrome.createManifest(params, files) | 
| 145 | 171 | 
| 146 move_files_to_extension(files) | 172 move_files_to_extension(files) | 
| 147 | 173 | 
| 148 if metadata.has_section('appx_assets'): | 174 if metadata.has_section('appx_assets'): | 
| 149 for name, path in metadata.items('appx_assets'): | 175 for name, path in metadata.items('appx_assets'): | 
| 150 path = os.path.join(baseDir, path) | 176 path = os.path.join(baseDir, path) | 
| 151 files.read(path, 'Assets/' + name) | 177 files.read(path, '{}/{}'.format(ASSETS_DIR, name)) | 
| 152 | 178 | 
| 153 files[MANIFEST] = create_appx_manifest(params, files) | 179 files[MANIFEST] = create_appx_manifest(params, files, releaseBuild) | 
| 154 files[CONTENT_TYPES] = create_content_types_map(files) | 180 files[BLOCKMAP] = create_appx_blockmap(files) | 
| 181 files[CONTENT_TYPES] = create_content_types_map(files.keys() + [BLOCKMAP]) | |
| 155 | 182 | 
| 156 # We don't support AppxBlockmap.xml generation for compressed zip files at | 183 files.zip(outfile, compression=zipfile.ZIP_STORED) | 
| 157 # the moment. The only way to reliably calculate the compressed size of | |
| 158 # each 64k chunk in the zip file is to override the relevant parts of | |
| 159 # `zipfile` library. We have chosen to not do it for now, so we produce | |
| 160 # an uncompressed zip file. | |
| 161 files[BLOCKMAP] = create_appx_blockmap(files) | |
| 162 | |
| 163 # TODO: Implement AppxBlockmap.xml generation for compressed zip files. | |
| 164 # https://issues.adblockplus.org/ticket/4149 | |
| 165 files.zip(outfile, compress=False) | |
| LEFT | RIGHT |