| 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 # Note: These are the base functions common to all packagers, the actual | 5 # Note: These are the base functions common to all packagers, the actual |
| 6 # packagers are implemented in packagerGecko and packagerChrome. | 6 # packagers are implemented in packagerGecko and packagerChrome. |
| 7 | 7 |
| 8 import sys | 8 import sys |
| 9 import os | 9 import os |
| 10 import re | 10 import re |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 return relpath.split('/')[0] in self.includedFiles | 94 return relpath.split('/')[0] in self.includedFiles |
| 95 | 95 |
| 96 def is_ignored(self, relpath): | 96 def is_ignored(self, relpath): |
| 97 parts = relpath.split('/') | 97 parts = relpath.split('/') |
| 98 return any(part in self.ignoredFiles for part in parts) | 98 return any(part in self.ignoredFiles for part in parts) |
| 99 | 99 |
| 100 def read(self, path, relpath='', skip=()): | 100 def read(self, path, relpath='', skip=()): |
| 101 if os.path.isdir(path): | 101 if os.path.isdir(path): |
| 102 for file in os.listdir(path): | 102 for file in os.listdir(path): |
| 103 name = relpath + ('/' if relpath != '' else '') + file | 103 name = relpath + ('/' if relpath != '' else '') + file |
| 104 if (name not in skip | 104 |
| 105 and self.isIncluded(name) and not self.is_ignored(name))
: | 105 included = self.isIncluded(name) and not self.is_ignored(name) |
| 106 if name not in skip and included: |
| 106 self.read(os.path.join(path, file), name, skip) | 107 self.read(os.path.join(path, file), name, skip) |
| 107 else: | 108 else: |
| 108 with open(path, 'rb') as file: | 109 with open(path, 'rb') as file: |
| 109 if relpath in self: | 110 if relpath in self: |
| 110 print >>sys.stderr, 'Warning: File %s defined multiple times
' % relpath | 111 print >>sys.stderr, 'Warning: File %s defined multiple times
' % relpath |
| 111 self[relpath] = file.read() | 112 self[relpath] = file.read() |
| 112 | 113 |
| 113 def readMappedFiles(self, mappings): | 114 def readMappedFiles(self, mappings): |
| 114 for item in mappings: | 115 for item in mappings: |
| 115 target, source = item | 116 target, source = item |
| (...skipping 19 matching lines...) Expand all Loading... |
| 135 | 136 |
| 136 def zip(self, outFile, sortKey=None, compression=zipfile.ZIP_DEFLATED): | 137 def zip(self, outFile, sortKey=None, compression=zipfile.ZIP_DEFLATED): |
| 137 with zipfile.ZipFile(outFile, 'w', compression) as zf: | 138 with zipfile.ZipFile(outFile, 'w', compression) as zf: |
| 138 for name in sorted(self, key=sortKey): | 139 for name in sorted(self, key=sortKey): |
| 139 zf.writestr(name, self[name]) | 140 zf.writestr(name, self[name]) |
| 140 | 141 |
| 141 def zipToString(self, sortKey=None): | 142 def zipToString(self, sortKey=None): |
| 142 buffer = StringIO() | 143 buffer = StringIO() |
| 143 self.zip(buffer, sortKey=sortKey) | 144 self.zip(buffer, sortKey=sortKey) |
| 144 return buffer.getvalue() | 145 return buffer.getvalue() |
| LEFT | RIGHT |