Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | #!/usr/bin/env python |
michael@0 | 2 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 5 | # |
michael@0 | 6 | # Execute as: /import.py <source-distribution> <target-dir> |
michael@0 | 7 | # <target-dir> must have 'IMPORT_FILES' in it |
michael@0 | 8 | |
michael@0 | 9 | import sys |
michael@0 | 10 | import re |
michael@0 | 11 | import os |
michael@0 | 12 | import shutil |
michael@0 | 13 | |
michael@0 | 14 | def die(msg): |
michael@0 | 15 | sys.stderr.write('ERROR:' + msg + '\n') |
michael@0 | 16 | sys.exit(1) |
michael@0 | 17 | |
michael@0 | 18 | DISTRO = sys.argv[1] |
michael@0 | 19 | IMPORT_DIR = sys.argv[2] |
michael@0 | 20 | FILES = [] |
michael@0 | 21 | |
michael@0 | 22 | f = open("%s/IMPORT_FILES" % IMPORT_DIR) |
michael@0 | 23 | for l in f: |
michael@0 | 24 | l = l.strip() |
michael@0 | 25 | l = l.strip("'") |
michael@0 | 26 | if l.startswith("#"): |
michael@0 | 27 | continue |
michael@0 | 28 | if not l: |
michael@0 | 29 | continue |
michael@0 | 30 | FILES.append(l) |
michael@0 | 31 | |
michael@0 | 32 | for f in FILES: |
michael@0 | 33 | print f |
michael@0 | 34 | SOURCE_PATH = "%s/%s"%(DISTRO,f) |
michael@0 | 35 | DEST_PATH = "%s/%s"%(IMPORT_DIR,f) |
michael@0 | 36 | if not os.path.exists(SOURCE_PATH): |
michael@0 | 37 | die("%s does not exist"%SOURCE_PATH) |
michael@0 | 38 | if not os.path.exists(os.path.dirname(DEST_PATH)): |
michael@0 | 39 | os.makedirs(os.path.dirname(DEST_PATH)) |
michael@0 | 40 | shutil.copyfile(SOURCE_PATH, DEST_PATH) |