blob: 495ac8a30aa082dabb8baaddce974973bee9211a [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#
Patrick Williams92b42cb2022-09-03 06:53:57 -05002# Copyright BitBake Contributors
3#
Brad Bishopc342db32019-05-15 21:57:59 -04004# SPDX-License-Identifier: GPL-2.0-only
5#
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006"""
7Bitbake "Fetch" implementation for osc (Opensuse build service client).
8Based on the svn "Fetch" implementation.
9
10"""
11
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012import logging
Andrew Geisslerc9f78652020-09-18 14:11:35 -050013import os
Andrew Geisslerd5838332022-05-27 11:33:10 -050014import re
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015import bb
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016from bb.fetch2 import FetchMethod
17from bb.fetch2 import FetchError
18from bb.fetch2 import MissingParameterError
19from bb.fetch2 import runfetchcmd
20
Andrew Geisslerc9f78652020-09-18 14:11:35 -050021logger = logging.getLogger(__name__)
22
Patrick Williamsc124f4f2015-09-15 14:41:29 -050023class Osc(FetchMethod):
24 """Class to fetch a module or modules from Opensuse build server
25 repositories."""
26
27 def supports(self, ud, d):
28 """
29 Check to see if a given url can be fetched with osc.
30 """
31 return ud.type in ['osc']
32
33 def urldata_init(self, ud, d):
34 if not "module" in ud.parm:
35 raise MissingParameterError('module', ud.url)
36
37 ud.module = ud.parm["module"]
38
39 # Create paths to osc checkouts
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080040 oscdir = d.getVar("OSCDIR") or (d.getVar("DL_DIR") + "/osc")
Patrick Williamsc124f4f2015-09-15 14:41:29 -050041 relpath = self._strip_leading_slashes(ud.path)
Andrew Geisslerd5838332022-05-27 11:33:10 -050042 ud.oscdir = oscdir
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080043 ud.pkgdir = os.path.join(oscdir, ud.host)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050044 ud.moddir = os.path.join(ud.pkgdir, relpath, ud.module)
45
46 if 'rev' in ud.parm:
47 ud.revision = ud.parm['rev']
48 else:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050049 pv = d.getVar("PV", False)
Patrick Williams03907ee2022-05-01 06:28:52 -050050 rev = bb.fetch2.srcrev_internal_helper(ud, d, '')
Andrew Geissler82c905d2020-04-13 13:39:40 -050051 if rev:
Patrick Williamsc124f4f2015-09-15 14:41:29 -050052 ud.revision = rev
53 else:
54 ud.revision = ""
55
Andrew Geisslerd5838332022-05-27 11:33:10 -050056 ud.localfile = d.expand('%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), relpath.replace('/', '.'), ud.revision))
Patrick Williamsc124f4f2015-09-15 14:41:29 -050057
58 def _buildosccommand(self, ud, d, command):
59 """
60 Build up an ocs commandline based on ud
61 command is "fetch", "update", "info"
62 """
63
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080064 basecmd = d.getVar("FETCHCMD_osc") or "/usr/bin/env osc"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050065
Andrew Geisslerd5838332022-05-27 11:33:10 -050066 proto = ud.parm.get('protocol', 'https')
Patrick Williamsc124f4f2015-09-15 14:41:29 -050067
68 options = []
69
70 config = "-c %s" % self.generate_config(ud, d)
71
Andrew Geisslerd5838332022-05-27 11:33:10 -050072 if getattr(ud, 'revision', ''):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050073 options.append("-r %s" % ud.revision)
74
75 coroot = self._strip_leading_slashes(ud.path)
76
77 if command == "fetch":
Andrew Geisslerd5838332022-05-27 11:33:10 -050078 osccmd = "%s %s -A %s://%s co %s/%s %s" % (basecmd, config, proto, ud.host, coroot, ud.module, " ".join(options))
Patrick Williamsc124f4f2015-09-15 14:41:29 -050079 elif command == "update":
Andrew Geisslerd5838332022-05-27 11:33:10 -050080 osccmd = "%s %s -A %s://%s up %s" % (basecmd, config, proto, ud.host, " ".join(options))
81 elif command == "api_source":
82 osccmd = "%s %s -A %s://%s api source/%s/%s" % (basecmd, config, proto, ud.host, coroot, ud.module)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050083 else:
84 raise FetchError("Invalid osc command %s" % command, ud.url)
85
86 return osccmd
87
Andrew Geisslerd5838332022-05-27 11:33:10 -050088 def _latest_revision(self, ud, d, name):
89 """
90 Fetch latest revision for the given package
91 """
92 api_source_cmd = self._buildosccommand(ud, d, "api_source")
93
94 output = runfetchcmd(api_source_cmd, d)
95 match = re.match(r'<directory ?.* rev="(\d+)".*>', output)
96 if match is None:
97 raise FetchError("Unable to parse osc response", ud.url)
98 return match.groups()[0]
99
100 def _revision_key(self, ud, d, name):
101 """
102 Return a unique key for the url
103 """
104 # Collapse adjacent slashes
105 slash_re = re.compile(r"/+")
106 rev = getattr(ud, 'revision', "latest")
107 return "osc:%s%s.%s.%s" % (ud.host, slash_re.sub(".", ud.path), name, rev)
108
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500109 def download(self, ud, d):
110 """
111 Fetch url
112 """
113
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600114 logger.debug2("Fetch: checking for module directory '" + ud.moddir + "'")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500115
Andrew Geisslerd5838332022-05-27 11:33:10 -0500116 if os.access(ud.moddir, os.R_OK):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500117 oscupdatecmd = self._buildosccommand(ud, d, "update")
118 logger.info("Update "+ ud.url)
119 # update sources there
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600120 logger.debug("Running %s", oscupdatecmd)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500121 bb.fetch2.check_network_access(d, oscupdatecmd, ud.url)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600122 runfetchcmd(oscupdatecmd, d, workdir=ud.moddir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500123 else:
124 oscfetchcmd = self._buildosccommand(ud, d, "fetch")
125 logger.info("Fetch " + ud.url)
126 # check out sources there
127 bb.utils.mkdirhier(ud.pkgdir)
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600128 logger.debug("Running %s", oscfetchcmd)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500129 bb.fetch2.check_network_access(d, oscfetchcmd, ud.url)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600130 runfetchcmd(oscfetchcmd, d, workdir=ud.pkgdir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500131
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500132 # tar them up to a defined filename
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600133 runfetchcmd("tar -czf %s %s" % (ud.localpath, ud.module), d,
134 cleanup=[ud.localpath], workdir=os.path.join(ud.pkgdir + ud.path))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500135
136 def supports_srcrev(self):
137 return False
138
139 def generate_config(self, ud, d):
140 """
141 Generate a .oscrc to be used for this run.
142 """
143
Andrew Geisslerd5838332022-05-27 11:33:10 -0500144 config_path = os.path.join(ud.oscdir, "oscrc")
145 if not os.path.exists(ud.oscdir):
146 bb.utils.mkdirhier(ud.oscdir)
147
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500148 if (os.path.exists(config_path)):
149 os.remove(config_path)
150
151 f = open(config_path, 'w')
Andrew Geisslerd5838332022-05-27 11:33:10 -0500152 proto = ud.parm.get('protocol', 'https')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500153 f.write("[general]\n")
Andrew Geisslerd5838332022-05-27 11:33:10 -0500154 f.write("apiurl = %s://%s\n" % (proto, ud.host))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500155 f.write("su-wrapper = su -c\n")
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500156 f.write("build-root = %s\n" % d.getVar('WORKDIR'))
157 f.write("urllist = %s\n" % d.getVar("OSCURLLIST"))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500158 f.write("extra-pkgs = gzip\n")
159 f.write("\n")
Andrew Geisslerd5838332022-05-27 11:33:10 -0500160 f.write("[%s://%s]\n" % (proto, ud.host))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500161 f.write("user = %s\n" % ud.parm["user"])
162 f.write("pass = %s\n" % ud.parm["pswd"])
163 f.close()
164
165 return config_path