blob: e21115debfdef9ce0176c8b6cd84c397f4d3413e [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001"""
2BitBake 'Fetch' implementation for mercurial DRCS (hg).
3
4"""
5
6# Copyright (C) 2003, 2004 Chris Larson
7# Copyright (C) 2004 Marcin Juszkiewicz
8# Copyright (C) 2007 Robert Schuster
9#
Brad Bishopc342db32019-05-15 21:57:59 -040010# SPDX-License-Identifier: GPL-2.0-only
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011#
12# Based on functions from the base bb module, Copyright 2003 Holger Schurig
Brad Bishopc342db32019-05-15 21:57:59 -040013#
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014
15import os
16import sys
17import logging
18import bb
Patrick Williamsf1e5d692016-03-30 15:21:19 -050019import errno
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020from bb.fetch2 import FetchMethod
21from bb.fetch2 import FetchError
22from bb.fetch2 import MissingParameterError
23from bb.fetch2 import runfetchcmd
24from bb.fetch2 import logger
25
26class Hg(FetchMethod):
27 """Class to fetch from mercurial repositories"""
28 def supports(self, ud, d):
29 """
30 Check to see if a given url can be fetched with mercurial.
31 """
32 return ud.type in ['hg']
33
34 def supports_checksum(self, urldata):
35 """
36 Don't require checksums for local archives created from
37 repository checkouts.
38 """
39 return False
40
41 def urldata_init(self, ud, d):
42 """
43 init hg specific variable within url data
44 """
45 if not "module" in ud.parm:
46 raise MissingParameterError('module', ud.url)
47
48 ud.module = ud.parm["module"]
49
50 if 'protocol' in ud.parm:
51 ud.proto = ud.parm['protocol']
52 elif not ud.host:
53 ud.proto = 'file'
54 else:
55 ud.proto = "hg"
56
Patrick Williamsc124f4f2015-09-15 14:41:29 -050057 # Create paths to mercurial checkouts
58 hgsrcname = '%s_%s_%s' % (ud.module.replace('/', '.'), \
59 ud.host, ud.path.replace('/', '.'))
Brad Bishopd7bf8c12018-02-25 22:55:05 -050060 mirrortarball = 'hg_%s.tar.gz' % hgsrcname
61 ud.fullmirror = os.path.join(d.getVar("DL_DIR"), mirrortarball)
62 ud.mirrortarballs = [mirrortarball]
Patrick Williamsc124f4f2015-09-15 14:41:29 -050063
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080064 hgdir = d.getVar("HGDIR") or (d.getVar("DL_DIR") + "/hg")
Patrick Williamsc124f4f2015-09-15 14:41:29 -050065 ud.pkgdir = os.path.join(hgdir, hgsrcname)
66 ud.moddir = os.path.join(ud.pkgdir, ud.module)
67 ud.localfile = ud.moddir
Brad Bishop6e60e8b2018-02-01 10:27:11 -050068 ud.basecmd = d.getVar("FETCHCMD_hg") or "/usr/bin/env hg"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050069
Brad Bishop1d80a2e2019-11-15 16:35:03 -050070 ud.setup_revisions(d)
71
72 if 'rev' in ud.parm:
73 ud.revision = ud.parm['rev']
74 elif not ud.revision:
75 ud.revision = self.latest_revision(ud, d)
76
Brad Bishop6e60e8b2018-02-01 10:27:11 -050077 ud.write_tarballs = d.getVar("BB_GENERATE_MIRROR_TARBALLS")
Patrick Williamsc124f4f2015-09-15 14:41:29 -050078
79 def need_update(self, ud, d):
80 revTag = ud.parm.get('rev', 'tip')
81 if revTag == "tip":
82 return True
83 if not os.path.exists(ud.localpath):
84 return True
85 return False
86
87 def try_premirror(self, ud, d):
88 # If we don't do this, updating an existing checkout with only premirrors
89 # is not possible
Brad Bishop19323692019-04-05 15:28:33 -040090 if bb.utils.to_boolean(d.getVar("BB_FETCH_PREMIRRORONLY")):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050091 return True
92 if os.path.exists(ud.moddir):
93 return False
94 return True
95
96 def _buildhgcommand(self, ud, d, command):
97 """
98 Build up an hg commandline based on ud
99 command is "fetch", "update", "info"
100 """
101
102 proto = ud.parm.get('protocol', 'http')
103
104 host = ud.host
105 if proto == "file":
106 host = "/"
107 ud.host = "localhost"
108
109 if not ud.user:
110 hgroot = host + ud.path
111 else:
112 if ud.pswd:
113 hgroot = ud.user + ":" + ud.pswd + "@" + host + ud.path
114 else:
115 hgroot = ud.user + "@" + host + ud.path
116
117 if command == "info":
118 return "%s identify -i %s://%s/%s" % (ud.basecmd, proto, hgroot, ud.module)
119
120 options = [];
121
122 # Don't specify revision for the fetch; clone the entire repo.
123 # This avoids an issue if the specified revision is a tag, because
124 # the tag actually exists in the specified revision + 1, so it won't
125 # be available when used in any successive commands.
126 if ud.revision and command != "fetch":
127 options.append("-r %s" % ud.revision)
128
129 if command == "fetch":
130 if ud.user and ud.pswd:
131 cmd = "%s --config auth.default.prefix=* --config auth.default.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" clone %s %s://%s/%s %s" % (ud.basecmd, ud.user, ud.pswd, proto, " ".join(options), proto, hgroot, ud.module, ud.module)
132 else:
133 cmd = "%s clone %s %s://%s/%s %s" % (ud.basecmd, " ".join(options), proto, hgroot, ud.module, ud.module)
134 elif command == "pull":
135 # do not pass options list; limiting pull to rev causes the local
136 # repo not to contain it and immediately following "update" command
137 # will crash
138 if ud.user and ud.pswd:
139 cmd = "%s --config auth.default.prefix=* --config auth.default.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" pull" % (ud.basecmd, ud.user, ud.pswd, proto)
140 else:
141 cmd = "%s pull" % (ud.basecmd)
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500142 elif command == "update" or command == "up":
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500143 if ud.user and ud.pswd:
144 cmd = "%s --config auth.default.prefix=* --config auth.default.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" update -C %s" % (ud.basecmd, ud.user, ud.pswd, proto, " ".join(options))
145 else:
146 cmd = "%s update -C %s" % (ud.basecmd, " ".join(options))
147 else:
148 raise FetchError("Invalid hg command %s" % command, ud.url)
149
150 return cmd
151
152 def download(self, ud, d):
153 """Fetch url"""
154
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500155 logger.debug(2, "Fetch: checking for module directory '" + ud.moddir + "'")
156
157 # If the checkout doesn't exist and the mirror tarball does, extract it
158 if not os.path.exists(ud.pkgdir) and os.path.exists(ud.fullmirror):
159 bb.utils.mkdirhier(ud.pkgdir)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600160 runfetchcmd("tar -xzf %s" % (ud.fullmirror), d, workdir=ud.pkgdir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500161
162 if os.access(os.path.join(ud.moddir, '.hg'), os.R_OK):
163 # Found the source, check whether need pull
164 updatecmd = self._buildhgcommand(ud, d, "update")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500165 logger.debug(1, "Running %s", updatecmd)
166 try:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600167 runfetchcmd(updatecmd, d, workdir=ud.moddir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500168 except bb.fetch2.FetchError:
169 # Runnning pull in the repo
170 pullcmd = self._buildhgcommand(ud, d, "pull")
171 logger.info("Pulling " + ud.url)
172 # update sources there
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500173 logger.debug(1, "Running %s", pullcmd)
174 bb.fetch2.check_network_access(d, pullcmd, ud.url)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600175 runfetchcmd(pullcmd, d, workdir=ud.moddir)
Patrick Williamsd7e96312015-09-22 08:09:05 -0500176 try:
177 os.unlink(ud.fullmirror)
178 except OSError as exc:
179 if exc.errno != errno.ENOENT:
180 raise
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500181
182 # No source found, clone it.
183 if not os.path.exists(ud.moddir):
184 fetchcmd = self._buildhgcommand(ud, d, "fetch")
185 logger.info("Fetch " + ud.url)
186 # check out sources there
187 bb.utils.mkdirhier(ud.pkgdir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500188 logger.debug(1, "Running %s", fetchcmd)
189 bb.fetch2.check_network_access(d, fetchcmd, ud.url)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600190 runfetchcmd(fetchcmd, d, workdir=ud.pkgdir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500191
192 # Even when we clone (fetch), we still need to update as hg's clone
193 # won't checkout the specified revision if its on a branch
194 updatecmd = self._buildhgcommand(ud, d, "update")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500195 logger.debug(1, "Running %s", updatecmd)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600196 runfetchcmd(updatecmd, d, workdir=ud.moddir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500197
198 def clean(self, ud, d):
199 """ Clean the hg dir """
200
201 bb.utils.remove(ud.localpath, True)
202 bb.utils.remove(ud.fullmirror)
203 bb.utils.remove(ud.fullmirror + ".done")
204
205 def supports_srcrev(self):
206 return True
207
208 def _latest_revision(self, ud, d, name):
209 """
210 Compute tip revision for the url
211 """
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500212 bb.fetch2.check_network_access(d, self._buildhgcommand(ud, d, "info"), ud.url)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500213 output = runfetchcmd(self._buildhgcommand(ud, d, "info"), d)
214 return output.strip()
215
216 def _build_revision(self, ud, d, name):
217 return ud.revision
218
219 def _revision_key(self, ud, d, name):
220 """
221 Return a unique key for the url
222 """
223 return "hg:" + ud.moddir
224
225 def build_mirror_data(self, ud, d):
226 # Generate a mirror tarball if needed
Patrick Williamsd7e96312015-09-22 08:09:05 -0500227 if ud.write_tarballs == "1" and not os.path.exists(ud.fullmirror):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500228 # it's possible that this symlink points to read-only filesystem with PREMIRROR
229 if os.path.islink(ud.fullmirror):
230 os.unlink(ud.fullmirror)
231
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500232 logger.info("Creating tarball of hg repository")
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600233 runfetchcmd("tar -czf %s %s" % (ud.fullmirror, ud.module), d, workdir=ud.pkgdir)
234 runfetchcmd("touch %s.done" % (ud.fullmirror), d, workdir=ud.pkgdir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500235
236 def localpath(self, ud, d):
237 return ud.pkgdir
238
239 def unpack(self, ud, destdir, d):
240 """
241 Make a local clone or export for the url
242 """
243
244 revflag = "-r %s" % ud.revision
245 subdir = ud.parm.get("destsuffix", ud.module)
246 codir = "%s/%s" % (destdir, subdir)
247
248 scmdata = ud.parm.get("scmdata", "")
249 if scmdata != "nokeep":
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500250 proto = ud.parm.get('protocol', 'http')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500251 if not os.access(os.path.join(codir, '.hg'), os.R_OK):
252 logger.debug(2, "Unpack: creating new hg repository in '" + codir + "'")
253 runfetchcmd("%s init %s" % (ud.basecmd, codir), d)
254 logger.debug(2, "Unpack: updating source in '" + codir + "'")
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500255 if ud.user and ud.pswd:
256 runfetchcmd("%s --config auth.default.prefix=* --config auth.default.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" pull %s" % (ud.basecmd, ud.user, ud.pswd, proto, ud.moddir), d, workdir=codir)
257 else:
258 runfetchcmd("%s pull %s" % (ud.basecmd, ud.moddir), d, workdir=codir)
259 if ud.user and ud.pswd:
260 runfetchcmd("%s --config auth.default.prefix=* --config auth.default.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" up -C %s" % (ud.basecmd, ud.user, ud.pswd, proto, revflag), d, workdir=codir)
261 else:
262 runfetchcmd("%s up -C %s" % (ud.basecmd, revflag), d, workdir=codir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500263 else:
264 logger.debug(2, "Unpack: extracting source to '" + codir + "'")
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600265 runfetchcmd("%s archive -t files %s %s" % (ud.basecmd, revflag, codir), d, workdir=ud.moddir)