7 @contact: Debian FTP Master <ftpmaster@debian.org>
8 @copyright: 2001 - 2006 James Troup <james@nocrew.org>
9 @copyright: 2009 Joerg Jaspert <joerg@debian.org>
10 @copyright: 2009 Mark Hymers <mhy@debian.org>
11 @license: GNU General Public License version 2 or later
14 # This program is free software; you can redistribute it and/or modify
15 # it under the terms of the GNU General Public License as published by
16 # the Free Software Foundation; either version 2 of the License, or
17 # (at your option) any later version.
19 # This program is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details.
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write to the Free Software
26 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 ###############################################################################
34 from cPickle import Unpickler, Pickler
35 from errno import EPERM
37 from apt_inst import debExtractControl
38 from apt_pkg import ParseSection
40 from utils import open_file, fubar, poolify
44 ###############################################################################
48 ###############################################################################
50 CHANGESFIELDS_MANDATORY = [ "distribution", "source", "architecture",
51 "version", "maintainer", "urgency", "fingerprint", "changedby822",
52 "changedby2047", "changedbyname", "maintainer822", "maintainer2047",
53 "maintainername", "maintaineremail", "closes", "changes" ]
55 __all__.append('CHANGESFIELDS_MANDATORY')
57 CHANGESFIELDS_OPTIONAL = [ "changed-by", "filecontents", "format",
58 "process-new note", "adv id", "distribution-version", "sponsoremail" ]
60 __all__.append('CHANGESFIELDS_OPTIONAL')
62 CHANGESFIELDS_FILES = [ "package", "version", "architecture", "type", "size",
63 "md5sum", "sha1sum", "sha256sum", "component", "location id",
64 "source package", "source version", "maintainer", "dbtype", "files id",
65 "new", "section", "priority", "othercomponents", "pool name",
66 "original component" ]
68 __all__.append('CHANGESFIELDS_FILES')
70 CHANGESFIELDS_DSC = [ "source", "version", "maintainer", "fingerprint",
71 "uploaders", "bts changelog", "dm-upload-allowed" ]
73 __all__.append('CHANGESFIELDS_DSC')
75 CHANGESFIELDS_DSCFILES_MANDATORY = [ "size", "md5sum" ]
77 __all__.append('CHANGESFIELDS_DSCFILES_MANDATORY')
79 CHANGESFIELDS_DSCFILES_OPTIONAL = [ "files id" ]
81 __all__.append('CHANGESFIELDS_DSCFILES_OPTIONAL')
83 CHANGESFIELDS_ORIGFILES = [ "id", "location" ]
85 __all__.append('CHANGESFIELDS_ORIGFILES')
87 ###############################################################################
89 class Changes(object):
90 """ Convenience wrapper to carry around all the package information """
92 def __init__(self, **kwds):
96 self.changes_file = ""
104 def file_summary(self):
105 # changes["distribution"] may not exist in corner cases
106 # (e.g. unreadable changes files)
107 if not self.changes.has_key("distribution") or not \
108 isinstance(self.changes["distribution"], dict):
109 self.changes["distribution"] = {}
114 override_summary = ""
116 for name, entry in sorted(self.files.items()):
117 if entry.has_key("byhand"):
119 summary += name + " byhand\n"
121 elif entry.has_key("new"):
123 summary += "(new) %s %s %s\n" % (name, entry["priority"], entry["section"])
125 if entry.has_key("othercomponents"):
126 summary += "WARNING: Already present in %s distribution.\n" % (entry["othercomponents"])
128 if entry["type"] == "deb":
129 deb_fh = open_file(name)
130 summary += ParseSection(debExtractControl(deb_fh))["Description"] + '\n'
134 entry["pool name"] = poolify(self.changes.get("source", ""), entry["component"])
135 destination = entry["pool name"] + name
136 summary += name + "\n to " + destination + "\n"
138 if not entry.has_key("type"):
139 entry["type"] = "unknown"
141 if entry["type"] in ["deb", "udeb", "dsc"]:
142 # (queue/unchecked), there we have override entries already, use them
143 # (process-new), there we dont have override entries, use the newly generated ones.
144 override_prio = entry.get("override priority", entry["priority"])
145 override_sect = entry.get("override section", entry["section"])
146 override_summary += "%s - %s %s\n" % (name, override_prio, override_sect)
148 return (byhand, new, summary, override_summary)
150 def check_override(self):
152 Checks override entries for validity.
154 Returns an empty string if there are no problems
155 or the text of a warning if there are
160 # Abandon the check if it's a non-sourceful upload
161 if not self.changes["architecture"].has_key("source"):
164 for name, entry in sorted(self.files.items()):
165 if not entry.has_key("new") and entry["type"] == "deb":
166 if entry["section"] != "-":
167 if entry["section"].lower() != entry["override section"].lower():
168 summary += "%s: package says section is %s, override says %s.\n" % (name,
170 entry["override section"])
172 if entry["priority"] != "-":
173 if entry["priority"] != entry["override priority"]:
174 summary += "%s: package says priority is %s, override says %s.\n" % (name,
176 entry["override priority"])
181 def remove_known_changes(self, session=None):
182 session.delete(get_dbchange(self.changes_file, session))
184 def mark_missing_fields(self):
185 """add "missing" in fields which we will require for the known_changes table"""
186 for key in ['urgency', 'maintainer', 'fingerprint', 'changed-by' ]:
187 if (not self.changes.has_key(key)) or (not self.changes[key]):
188 self.changes[key]='missing'
191 def add_known_changes(self, dirpath, in_queue=None, session=None):
192 """add "missing" in fields which we will require for the known_changes table"""
195 changesfile = os.path.join(dirpath, self.changes_file)
196 filetime = datetime.datetime.fromtimestamp(os.path.getctime(changesfile))
198 self.mark_missing_fields()
201 for key in ("distribution", "architecture", "binary"):
202 if isinstance(self.changes[key], dict):
203 multivalues[key] = " ".join(self.changes[key].keys())
205 multivalues[key] = self.changes[key]
208 chg.chagnesfile = self.change_file
210 chg.in_queue_id = in_queue
211 chg.source = self.chagnes["source"]
212 chg.binaries = multivalues["binary"]
213 chg.architecture = multivalues["architecture"]
214 chg.version = self.changes["version"]
215 chg.distribution = multivalues["distribution"]
216 chg.urgency = self.changes["urgency"]
217 chg.maintainer = self.changes["maintainer"]
218 chg.fingerprint = self.changes["fingerprint"]
219 chg.changedby = self.changes["changed-by"]
220 chg.date = self.changes["date"]
225 for chg_fn in self.files.keys():
226 cpf = ChangePendingFile()
227 cpf.filename = chg_fn
228 cpf.size = self.files[chg_fn]['size']
229 cpf.md5sum = self.files[chg_fn]['md5sum']
232 chg_files.append(cpf)
234 chg.files = chg_files
237 chg = session.query(DBChange).filter_by(changesname = self.changes_file).one();
241 def unknown_files_fields(self, name):
242 return sorted(list( set(self.files[name].keys()) -
243 set(CHANGESFIELDS_FILES)))
245 def unknown_changes_fields(self):
246 return sorted(list( set(self.changes.keys()) -
247 set(CHANGESFIELDS_MANDATORY + CHANGESFIELDS_OPTIONAL)))
249 def unknown_dsc_fields(self):
250 return sorted(list( set(self.dsc.keys()) -
251 set(CHANGESFIELDS_DSC)))
253 def unknown_dsc_files_fields(self, name):
254 return sorted(list( set(self.dsc_files[name].keys()) -
255 set(CHANGESFIELDS_DSCFILES_MANDATORY + CHANGESFIELDS_DSCFILES_OPTIONAL)))
259 for name, entry in self.files.items():
260 r.append(" %s:" % (name))
261 for i in CHANGESFIELDS_FILES:
263 r.append(" %s: %s" % (i.capitalize(), entry[i]))
264 xfields = self.unknown_files_fields(name)
266 r.append("files[%s] still has following unrecognised keys: %s" % (name, ", ".join(xfields)))
270 def str_changes(self):
272 for i in CHANGESFIELDS_MANDATORY:
273 val = self.changes[i]
274 if isinstance(val, list):
276 elif isinstance(val, dict):
277 val = " ".join(val.keys())
278 r.append(' %s: %s' % (i.capitalize(), val))
280 for i in CHANGESFIELDS_OPTIONAL:
281 if self.changes.has_key(i):
282 r.append(' %s: %s' % (i.capitalize(), self.changes[i]))
284 xfields = self.unknown_changes_fields()
286 r.append("Warning: changes still has the following unrecognised fields: %s" % ", ".join(xfields))
292 for i in CHANGESFIELDS_DSC:
293 if self.dsc.has_key(i):
294 r.append(' %s: %s' % (i.capitalize(), self.dsc[i]))
296 xfields = self.unknown_dsc_fields()
298 r.append("Warning: dsc still has the following unrecognised fields: %s" % ", ".join(xfields))
302 def str_dsc_files(self):
304 for name, entry in self.dsc_files.items():
305 r.append(" %s:" % (name))
306 for i in CHANGESFIELDS_DSCFILES_MANDATORY:
307 r.append(" %s: %s" % (i.capitalize(), entry[i]))
308 for i in CHANGESFIELDS_DSCFILES_OPTIONAL:
310 r.append(" %s: %s" % (i.capitalize(), entry[i]))
311 xfields = self.unknown_dsc_files_fields(name)
313 r.append("dsc_files[%s] still has following unrecognised keys: %s" % (name, ", ".join(xfields)))
320 r.append(" Changes:")
321 r += self.str_changes()
331 r += self.str_files()
335 r.append(" Dsc Files:")
336 r += self.str_dsc_files()
340 __all__.append('Changes')