blob: e8182ed9d8141aa3233442f4e558ea945f00ffeb [file] [log] [blame]
David Ostrovsky72623a12013-05-30 01:05:56 +02001# Copyright (C) 2013 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
David Ostrovsky2536d062013-11-14 00:35:07 +010015from os import path
16
David Ostrovsky2536d062013-11-14 00:35:07 +010017REPO_ROOTS = {
18 'GERRIT': 'http://gerrit-maven.storage.googleapis.com',
David Ostrovskya2707972014-01-17 09:04:35 +010019 'GERRIT_API': 'https://gerrit-api.commondatastorage.googleapis.com/release',
David Ostrovsky2536d062013-11-14 00:35:07 +010020 'MAVEN_CENTRAL': 'http://repo1.maven.org/maven2',
21 'MAVEN_LOCAL': 'file://' + path.expanduser('~/.m2/repository'),
David Pursehouse777cd1a2016-04-08 13:57:38 +090022 'MAVEN_SNAPSHOT': 'https://oss.sonatype.org/content/repositories/snapshots',
David Ostrovsky2536d062013-11-14 00:35:07 +010023}
24
David Pursehouse15a9f532014-06-23 10:55:20 +090025
David Ostrovsky2536d062013-11-14 00:35:07 +010026def resolve_url(url, redirects):
27 """ Resolve URL of a Maven artifact.
28
29 prefix:path is passed as URL. prefix identifies known or custom
30 repositories that can be rewritten in redirects set, passed as
31 second arguments.
32
33 A special case is supported, when prefix neither exists in
34 REPO_ROOTS, no in redirects set: the url is returned as is.
35 This enables plugins to pass custom maven_repository URL as is
36 directly to maven_jar().
37
38 Returns a resolved path for Maven artifact.
39 """
40 s = url.find(':')
41 if s < 0:
42 return url
43 scheme, rest = url[:s], url[s+1:]
44 if scheme in redirects:
45 root = redirects[scheme]
46 elif scheme in REPO_ROOTS:
47 root = REPO_ROOTS[scheme]
48 else:
49 return url
50 root = root.rstrip('/')
51 rest = rest.lstrip('/')
52 return '/'.join([root, rest])
Dave Borowitz0cb928c2015-11-18 10:19:52 -050053
54
55def hash_file(hash_obj, path):
56 """Hash the contents of a file.
57
58 Args:
59 hash_obj: an open hash object, e.g. hashlib.sha1().
60 path: path to the file to hash.
61
62 Returns:
63 The passed-in hash_obj.
64 """
65 with open(path, 'rb') as f:
66 while True:
67 b = f.read(8192)
68 if not b:
69 break
70 hash_obj.update(b)
71 return hash_obj