summaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch2/__init__.py
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2015-06-30 09:39:11 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-09 17:59:29 +0100
commitfbb9c6f5538084e125b58118a86968908e6f895b (patch)
treee79c3022188e4dcc3c3c2d19e6f1980d82879f95 /lib/bb/fetch2/__init__.py
parent454da2cd17539ceb9caad6d76f034757e44ee12f (diff)
downloadopenembedded-core-contrib-fbb9c6f5538084e125b58118a86968908e6f895b.tar.gz
fetch2: Add fetch parameter to checkstatus
In order to pass connection cache object to checkstatus function add fetch parameter. Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/fetch2/__init__.py')
-rw-r--r--lib/bb/fetch2/__init__.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/bb/fetch2/__init__.py b/lib/bb/fetch2/__init__.py
index 7fd9ec7bf1..8d0221decc 100644
--- a/lib/bb/fetch2/__init__.py
+++ b/lib/bb/fetch2/__init__.py
@@ -907,12 +907,12 @@ def rename_bad_checksum(ud, suffix):
bb.utils.movefile(ud.localpath, new_localpath)
-def try_mirror_url(origud, ud, ld, check = False):
+def try_mirror_url(fetch, origud, ud, ld, check = False):
# Return of None or a value means we're finished
# False means try another url
try:
if check:
- found = ud.method.checkstatus(ud, ld)
+ found = ud.method.checkstatus(fetch, ud, ld)
if found:
return found
return False
@@ -975,7 +975,7 @@ def try_mirror_url(origud, ud, ld, check = False):
pass
return False
-def try_mirrors(d, origud, mirrors, check = False):
+def try_mirrors(fetch, d, origud, mirrors, check = False):
"""
Try to use a mirrored version of the sources.
This method will be automatically called before the fetchers go.
@@ -989,7 +989,7 @@ def try_mirrors(d, origud, mirrors, check = False):
uris, uds = build_mirroruris(origud, mirrors, ld)
for index, uri in enumerate(uris):
- ret = try_mirror_url(origud, uds[index], ld, check)
+ ret = try_mirror_url(fetch, origud, uds[index], ld, check)
if ret != False:
return ret
return None
@@ -1473,7 +1473,7 @@ class FetchMethod(object):
"""
return True
- def checkstatus(self, urldata, d):
+ def checkstatus(self, fetch, urldata, d):
"""
Check the status of a URL
Assumes localpath was called first
@@ -1577,7 +1577,7 @@ class Fetch(object):
elif m.try_premirror(ud, self.d):
logger.debug(1, "Trying PREMIRRORS")
mirrors = mirror_from_string(self.d.getVar('PREMIRRORS', True))
- localpath = try_mirrors(self.d, ud, mirrors, False)
+ localpath = try_mirrors(self, self.d, ud, mirrors, False)
if premirroronly:
self.d.setVar("BB_NO_NETWORK", "1")
@@ -1616,7 +1616,7 @@ class Fetch(object):
m.clean(ud, self.d)
logger.debug(1, "Trying MIRRORS")
mirrors = mirror_from_string(self.d.getVar('MIRRORS', True))
- localpath = try_mirrors (self.d, ud, mirrors)
+ localpath = try_mirrors(self, self.d, ud, mirrors)
if not localpath or ((not os.path.exists(localpath)) and localpath.find("*") == -1):
if firsterr:
@@ -1648,15 +1648,15 @@ class Fetch(object):
logger.debug(1, "Testing URL %s", u)
# First try checking uri, u, from PREMIRRORS
mirrors = mirror_from_string(self.d.getVar('PREMIRRORS', True))
- ret = try_mirrors(self.d, ud, mirrors, True)
+ ret = try_mirrors(self, self.d, ud, mirrors, True)
if not ret:
# Next try checking from the original uri, u
try:
- ret = m.checkstatus(ud, self.d)
+ ret = m.checkstatus(self, ud, self.d)
except:
# Finally, try checking uri, u, from MIRRORS
mirrors = mirror_from_string(self.d.getVar('MIRRORS', True))
- ret = try_mirrors(self.d, ud, mirrors, True)
+ ret = try_mirrors(self, self.d, ud, mirrors, True)
if not ret:
raise FetchError("URL %s doesn't work" % u, u)