fix tagging for modules in subdirs.
[build.git] / module-tools.py
1 #!/usr/bin/python -u
2
3 import sys, os
4 import re
5 import time
6 import tempfile
7 from glob import glob
8 from optparse import OptionParser
9
10 # HARDCODED NAME CHANGES
11 #
12 # Moving to git we decided to rename some of the repositories. Here is
13 # a map of name changes applied in git repositories.
14 RENAMED_SVN_MODULES = {
15     "PLEWWW": "plewww",
16     "PLCAPI": "plcapi",
17     "BootManager": "bootmanager",
18     "BootCD": "bootcd",
19     "VserverReference": "vserver-reference",
20     "BootstrapFS": "bootstrapfs",
21     "MyPLC": "myplc",
22     "CoDemux": "codemux",
23     "NodeManager": "nodemanager",
24     "NodeUpdate": "nodeupdate",
25     "Monitor": "monitor"
26     }
27
28 def svn_to_git_name(module):
29     if RENAMED_SVN_MODULES.has_key(module):
30         return RENAMED_SVN_MODULES[module]
31     return module
32
33 def git_to_svn_name(module):
34     for key in RENAMED_SVN_MODULES:
35         if module == RENAMED_SVN_MODULES[key]:
36             return key
37     return module
38     
39
40 # e.g. other_choices = [ ('d','iff') , ('g','uess') ] - lowercase 
41 def prompt (question,default=True,other_choices=[],allow_outside=False):
42     if not isinstance (other_choices,list):
43         other_choices = [ other_choices ]
44     chars = [ c for (c,rest) in other_choices ]
45
46     choices = []
47     if 'y' not in chars:
48         if default is True: choices.append('[y]')
49         else : choices.append('y')
50     if 'n' not in chars:
51         if default is False: choices.append('[n]')
52         else : choices.append('n')
53
54     for (char,choice) in other_choices:
55         if default == char:
56             choices.append("["+char+"]"+choice)
57         else:
58             choices.append("<"+char+">"+choice)
59     try:
60         answer=raw_input(question + " " + "/".join(choices) + " ? ")
61         if not answer:
62             return default
63         answer=answer[0].lower()
64         if answer == 'y':
65             if 'y' in chars: return 'y'
66             else: return True
67         elif answer == 'n':
68             if 'n' in chars: return 'n'
69             else: return False
70         elif other_choices:
71             for (char,choice) in other_choices:
72                 if answer == char:
73                     return char
74             if allow_outside:
75                 return answer
76         return prompt(question,default,other_choices)
77     except:
78         raise
79
80 def default_editor():
81     try:
82         editor = os.environ['EDITOR']
83     except:
84         editor = "emacs"
85     return editor
86
87 ### fold long lines
88 fold_length=132
89
90 def print_fold (line):
91     while len(line) >= fold_length:
92         print line[:fold_length],'\\'
93         line=line[fold_length:]
94     print line
95
96 class Command:
97     def __init__ (self,command,options):
98         self.command=command
99         self.options=options
100         self.tmp="/tmp/command-%d"%os.getpid()
101
102     def run (self):
103         if self.options.dry_run:
104             print 'dry_run',self.command
105             return 0
106         if self.options.verbose and self.options.mode not in Main.silent_modes:
107             print '+',self.command
108             sys.stdout.flush()
109         return os.system(self.command)
110
111     def run_silent (self):
112         if self.options.dry_run:
113             print 'dry_run',self.command
114             return 0
115         if self.options.verbose:
116             print '+',self.command,' .. ',
117             sys.stdout.flush()
118         retcod=os.system(self.command + " &> " + self.tmp)
119         if retcod != 0:
120             print "FAILED ! -- out+err below (command was %s)"%self.command
121             os.system("cat " + self.tmp)
122             print "FAILED ! -- end of quoted output"
123         elif self.options.verbose:
124             print "OK"
125         os.unlink(self.tmp)
126         return retcod
127
128     def run_fatal(self):
129         if self.run_silent() !=0:
130             raise Exception,"Command %s failed"%self.command
131
132     # returns stdout, like bash's $(mycommand)
133     def output_of (self,with_stderr=False):
134         if self.options.dry_run:
135             print 'dry_run',self.command
136             return 'dry_run output'
137         tmp="/tmp/status-%d"%os.getpid()
138         if self.options.debug:
139             print '+',self.command,' .. ',
140             sys.stdout.flush()
141         command=self.command
142         if with_stderr:
143             command += " &> "
144         else:
145             command += " > "
146         command += tmp
147         os.system(command)
148         result=file(tmp).read()
149         os.unlink(tmp)
150         if self.options.debug:
151             print 'Done',
152         return result
153
154
155 class SvnRepository:
156     type = "svn"
157
158     def __init__(self, path, options):
159         self.path = path
160         self.options = options
161
162     def name(self):
163         return os.path.basename(self.path)
164
165     def url(self):
166         out = Command("svn info %s" % self.path, self.options).output_of()
167         for line in out.split('\n'):
168             if line.startswith("URL:"):
169                 return line.split()[1].strip()
170
171     def repo_root(self):
172         out = Command("svn info %s" % self.path, self.options).output_of()
173         for line in out.split('\n'):
174             if line.startswith("Repository Root:"):
175                 root = line.split()[2].strip()
176                 return "%s/%s" % (root, self.pathname())
177
178     @classmethod
179     def checkout(cls, remote, local, options, recursive=False):
180         if recursive:
181             svncommand = "svn co %s %s" % (remote, local)
182         else:
183             svncommand = "svn co -N %s %s" % (remote, local)
184         Command("rm -rf %s" % local, options).run_silent()
185         Command(svncommand, options).run_fatal()
186
187         return SvnRepository(local, options)
188
189     @classmethod
190     def remote_exists(cls, remote):
191         return os.system("svn list %s &> /dev/null" % remote) == 0
192
193     def tag_exists(self, tagname):
194         url = "%s/tags/%s" % (self.repo_root(), tagname)
195         return SvnRepository.remote_exists(url)
196
197     def update(self, subdir="", recursive=True, branch=None):
198         path = os.path.join(self.path, subdir)
199         if recursive:
200             svncommand = "svn up %s" % path
201         else:
202             svncommand = "svn up -N %s" % path
203         Command(svncommand, self.options).run_fatal()
204
205     def commit(self, logfile):
206         # add all new files to the repository
207         Command("svn status %s | grep '^\?' | sed -e 's/? *//' | sed -e 's/ /\\ /g' | xargs svn add" %
208                 self.path, self.options).output_of()
209         Command("svn commit -F %s %s" % (logfile, self.path), self.options).run_fatal()
210
211     def to_branch(self, branch):
212         remote = "%s/branches/%s" % (self.repo_root(), branch)
213         SvnRepository.checkout(remote, self.path, self.options, recursive=True)
214
215     def to_tag(self, tag):
216         remote = "%s/tags/%s" % (self.repo_root(), branch)
217         SvnRepository.checkout(remote, self.path, self.options, recursive=True)
218
219     def tag(self, tagname, logfile):
220         tag_url = "%s/tags/%s" % (self.repo_root(), tagname)
221         self_url = self.url()
222         Command("svn copy -F %s %s %s" % (logfile, self_url, tag_url), self.options).run_fatal()
223
224     def diff(self, f=""):
225         if f:
226             f = os.path.join(self.path, f)
227         else:
228             f = self.path
229         return Command("svn diff %s" % f, self.options).output_of(True)
230
231     def diff_with_tag(self, tagname):
232         tag_url = "%s/tags/%s" % (self.repo_root(), tagname)
233         return Command("svn diff %s %s" % (tag_url, self.url()),
234                        self.options).output_of(True)
235
236     def revert(self, f=""):
237         if f:
238             Command("svn revert %s" % os.path.join(self.path, f), self.options).run_fatal()
239         else:
240             # revert all
241             Command("svn revert %s -R" % self.path, self.options).run_fatal()
242             Command("svn status %s | grep '^\?' | sed -e 's/? *//' | sed -e 's/ /\\ /g' | xargs rm -rf " %
243                     self.path, self.options).run_silent()
244
245     def is_clean(self):
246         command="svn status %s" % self.path
247         return len(Command(command,self.options).output_of(True)) == 0
248
249     def is_valid(self):
250         return os.path.exists(os.path.join(self.path, ".svn"))
251     
252
253 class GitRepository:
254     type = "git"
255
256     def __init__(self, path, options):
257         self.path = path
258         self.options = options
259
260     def name(self):
261         return os.path.basename(self.path)
262
263     def url(self):
264         return self.repo_root()
265
266     def gitweb(self):
267         c = Command("git show | grep commit | awk '{print $2;}'", self.options)
268         out = self.__run_in_repo(c.output_of).strip()
269         return "http://git.onelab.eu/?p=%s.git;a=commit;h=%s" % (self.pathname(), out)
270
271     def repo_root(self):
272         c = Command("git remote show origin", self.options)
273         out = self.__run_in_repo(c.output_of)
274         for line in out.split('\n'):
275             if line.strip().startswith("Fetch URL:"):
276                 return line.split()[2]
277
278     @classmethod
279     def checkout(cls, remote, local, options, depth=0):
280         Command("rm -rf %s" % local, options).run_silent()
281         Command("git clone --depth %d %s %s" % (depth, remote, local), options).run_fatal()
282         return GitRepository(local, options)
283
284     @classmethod
285     def remote_exists(cls, remote):
286         return os.system("git --no-pager ls-remote %s &> /dev/null" % remote) == 0
287
288     def tag_exists(self, tagname):
289         command = 'git tag -l | grep "^%s$"' % tagname
290         c = Command(command, self.options)
291         out = self.__run_in_repo(c.output_of, with_stderr=True)
292         return len(out) > 0
293
294     def __run_in_repo(self, fun, *args, **kwargs):
295         cwd = os.getcwd()
296         os.chdir(self.path)
297         ret = fun(*args, **kwargs)
298         os.chdir(cwd)
299         return ret
300
301     def __run_command_in_repo(self, command, ignore_errors=False):
302         c = Command(command, self.options)
303         if ignore_errors:
304             return self.__run_in_repo(c.output_of)
305         else:
306             return self.__run_in_repo(c.run_fatal)
307
308     def __is_commit_id(self, id):
309         c = Command("git show %s | grep commit | awk '{print $2;}'" % id, self.options)
310         ret = self.__run_in_repo(c.output_of, with_stderr=False)
311         if ret.strip() == id:
312             return True
313         return False
314
315     def update(self, subdir=None, recursive=None, branch="master"):
316         if branch == "master":
317             self.__run_command_in_repo("git checkout %s" % branch)
318         else:
319             self.to_branch(branch, remote=True)
320         self.__run_command_in_repo("git fetch origin --tags")
321         self.__run_command_in_repo("git fetch origin")
322         if not self.__is_commit_id(branch):
323             # we don't need to merge anythign for commit ids.
324             self.__run_command_in_repo("git merge --ff origin/%s" % branch)
325
326     def to_branch(self, branch, remote=True):
327         self.revert()
328         if remote:
329             command = "git branch --track %s origin/%s" % (branch, branch)
330             c = Command(command, self.options)
331             self.__run_in_repo(c.output_of, with_stderr=True)
332         return self.__run_command_in_repo("git checkout %s" % branch)
333
334     def to_tag(self, tag):
335         self.revert()
336         return self.__run_command_in_repo("git checkout %s" % tag)
337
338     def tag(self, tagname, logfile):
339         self.__run_command_in_repo("git tag %s -F %s" % (tagname, logfile))
340         self.commit(logfile)
341
342     def diff(self, f=""):
343         c = Command("git diff %s" % f, self.options)
344         return self.__run_in_repo(c.output_of, with_stderr=True)
345
346     def diff_with_tag(self, tagname):
347         c = Command("git diff %s" % tagname, self.options)
348         return self.__run_in_repo(c.output_of, with_stderr=True)
349
350     def commit(self, logfile, branch="master"):
351         self.__run_command_in_repo("git add .", ignore_errors=True)
352         self.__run_command_in_repo("git add -u", ignore_errors=True)
353         self.__run_command_in_repo("git commit -F  %s" % logfile, ignore_errors=True)
354         if branch == "master" or self.__is_commit_id(branch):
355             self.__run_command_in_repo("git push")
356         else:
357             self.__run_command_in_repo("git push origin %s:%s" % (branch, branch))
358         self.__run_command_in_repo("git push --tags")
359
360     def revert(self, f=""):
361         if f:
362             self.__run_command_in_repo("git checkout %s" % f)
363         else:
364             # revert all
365             self.__run_command_in_repo("git --no-pager reset --hard")
366             self.__run_command_in_repo("git --no-pager clean -f")
367
368     def is_clean(self):
369         def check_commit():
370             command="git status"
371             s="nothing to commit (working directory clean)"
372             return Command(command, self.options).output_of(True).find(s) >= 0
373         return self.__run_in_repo(check_commit)
374
375     def is_valid(self):
376         return os.path.exists(os.path.join(self.path, ".git"))
377     
378
379 class Repository:
380     """ Generic repository """
381     supported_repo_types = [SvnRepository, GitRepository]
382
383     def __init__(self, path, options):
384         self.path = path
385         self.options = options
386         for repo in self.supported_repo_types:
387             self.repo = repo(self.path, self.options)
388             if self.repo.is_valid():
389                 break
390
391     @classmethod
392     def has_moved_to_git(cls, module, config):
393         module = svn_to_git_name(module)
394         # check if the module is already in Git
395 #        return SvnRepository.remote_exists("%s/%s/aaaa-has-moved-to-git" % (config['svnpath'], module))
396         return GitRepository.remote_exists(Module.git_remote_dir(module))
397
398
399     @classmethod
400     def remote_exists(cls, remote):
401         for repo in Repository.supported_repo_types:
402             if repo.remote_exists(remote):
403                 return True
404         return False
405
406     def __getattr__(self, attr):
407         return getattr(self.repo, attr)
408
409
410
411 # support for tagged module is minimal, and is for the Build class only
412 class Module:
413
414     svn_magic_line="--This line, and those below, will be ignored--"
415     setting_tag_format = "Setting tag %s"
416     
417     redirectors=[ # ('module_name_varname','name'),
418                   ('module_version_varname','version'),
419                   ('module_taglevel_varname','taglevel'), ]
420
421     # where to store user's config
422     config_storage="CONFIG"
423     # 
424     config={}
425
426     import commands
427     configKeys=[ ('svnpath',"Enter your toplevel svnpath",
428                   "svn+ssh://%s@svn.planet-lab.org/svn/"%commands.getoutput("id -un")),
429                  ('gitserver', "Enter your git server's hostname", "git.onelab.eu"),
430                  ('gituser', "Enter your user name (login name) on git server", commands.getoutput("id -un")),
431                  ("build", "Enter the name of your build module","build"),
432                  ('username',"Enter your firstname and lastname for changelogs",""),
433                  ("email","Enter your email address for changelogs",""),
434                  ]
435
436     @classmethod
437     def prompt_config_option(cls, key, message, default):
438         cls.config[key]=raw_input("%s [%s] : "%(message,default)).strip() or default
439
440     @classmethod
441     def prompt_config (cls):
442         for (key,message,default) in cls.configKeys:
443             cls.config[key]=""
444             while not cls.config[key]:
445                 cls.prompt_config_option(key, message, default)
446
447     # for parsing module spec name:branch
448     matcher_branch_spec=re.compile("\A(?P<name>[\w\.-]+):(?P<branch>[\w\.-]+)\Z")
449     # special form for tagged module - for Build
450     matcher_tag_spec=re.compile("\A(?P<name>[\w\.-]+)@(?P<tagname>[\w\.-]+)\Z")
451     # parsing specfiles
452     matcher_rpm_define=re.compile("%(define|global)\s+(\S+)\s+(\S*)\s*")
453
454     @classmethod
455     def parse_module_spec(cls, module_spec):
456         name = branch_or_tagname = module_type = ""
457
458         attempt=Module.matcher_branch_spec.match(module_spec)
459         if attempt:
460             module_type = "branch"
461             name=attempt.group('name')
462             branch_or_tagname=attempt.group('branch')
463         else:
464             attempt=Module.matcher_tag_spec.match(module_spec)
465             if attempt:
466                 module_type = "tag"
467                 name=attempt.group('name')
468                 branch_or_tagname=attempt.group('tagname')
469             else:
470                 name=module_spec
471         return name, branch_or_tagname, module_type
472
473
474     def __init__ (self,module_spec,options):
475         # parse module spec
476         self.pathname, branch_or_tagname, module_type = self.parse_module_spec(module_spec)
477         self.name = os.path.basename(self.pathname)
478
479         if module_type == "branch":
480             self.branch=branch_or_tagname
481         elif module_type == "tag":
482             self.tagname=branch_or_tagname
483
484         # when available prefer to use git module name internally
485         self.name = svn_to_git_name(self.name)
486
487         self.options=options
488         self.module_dir="%s/%s"%(options.workdir,self.pathname)
489         self.repository = None
490         self.build = None
491
492     def run (self,command):
493         return Command(command,self.options).run()
494     def run_fatal (self,command):
495         return Command(command,self.options).run_fatal()
496     def run_prompt (self,message,fun, *args):
497         fun_msg = "%s(%s)" % (fun.func_name, ",".join(args))
498         if not self.options.verbose:
499             while True:
500                 choice=prompt(message,True,('s','how'))
501                 if choice is True:
502                     fun(*args)
503                     return
504                 elif choice is False:
505                     print 'About to run function:', fun_msg
506         else:
507             question=message+" - want to run function: " + fun_msg
508             if prompt(question,True):
509                 fun(*args)
510
511     def friendly_name (self):
512         if hasattr(self,'branch'):
513             return "%s:%s"%(self.pathname,self.branch)
514         elif hasattr(self,'tagname'):
515             return "%s@%s"%(self.pathname,self.tagname)
516         else:
517             return self.pathname
518
519     @classmethod
520     def git_remote_dir (cls, name):
521         return "%s@%s:/git/%s.git" % (cls.config['gituser'], cls.config['gitserver'], name)
522
523     @classmethod
524     def svn_remote_dir (cls, name):
525         name = git_to_svn_name(name)
526         svn = cls.config['svnpath']
527         if svn.endswith('/'):
528             return "%s%s" % (svn, name)
529         return "%s/%s" % (svn, name)
530
531     def svn_selected_remote(self):
532         svn_name = git_to_svn_name(self.name)
533         remote = self.svn_remote_dir(svn_name)
534         if hasattr(self,'branch'):
535             remote = "%s/branches/%s" % (remote, self.branch)
536         elif hasattr(self,'tagname'):
537             remote = "%s/tags/%s" % (remote, self.tagname)
538         else:
539             remote = "%s/trunk" % remote
540         return remote
541
542     ####################
543     @classmethod
544     def init_homedir (cls, options):
545         if options.verbose and options.mode not in Main.silent_modes:
546             print 'Checking for', options.workdir
547         storage="%s/%s"%(options.workdir, cls.config_storage)
548         # sanity check. Either the topdir exists AND we have a config/storage
549         # or topdir does not exist and we create it
550         # to avoid people use their own daily svn repo
551         if os.path.isdir(options.workdir) and not os.path.isfile(storage):
552             print """The directory %s exists and has no CONFIG file
553 If this is your regular working directory, please provide another one as the
554 module-* commands need a fresh working dir. Make sure that you do not use 
555 that for other purposes than tagging""" % options.workdir
556             sys.exit(1)
557
558         def checkout_build():
559             print "Checking out build module..."
560             remote = cls.git_remote_dir(cls.config['build'])
561             local = os.path.join(options.workdir, cls.config['build'])
562             GitRepository.checkout(remote, local, options, depth=1)
563             print "OK"
564
565         def store_config():
566             f=file(storage,"w")
567             for (key,message,default) in Module.configKeys:
568                 f.write("%s=%s\n"%(key,Module.config[key]))
569             f.close()
570             if options.debug:
571                 print 'Stored',storage
572                 Command("cat %s"%storage,options).run()
573
574         def read_config():
575             # read config
576             f=open(storage)
577             for line in f.readlines():
578                 (key,value)=re.compile("^(.+)=(.+)$").match(line).groups()
579                 Module.config[key]=value                
580             f.close()
581
582         if not os.path.isdir (options.workdir):
583             print "Cannot find",options.workdir,"let's create it"
584             Command("mkdir -p %s" % options.workdir, options).run_silent()
585             cls.prompt_config()
586             checkout_build()
587             store_config()
588         else:
589             read_config()
590             # check missing config options
591             old_layout = False
592             for (key,message,default) in cls.configKeys:
593                 if not Module.config.has_key(key):
594                     print "Configuration changed for module-tools"
595                     cls.prompt_config_option(key, message, default)
596                     old_layout = True
597                     
598             if old_layout:
599                 Command("rm -rf %s" % options.workdir, options).run_silent()
600                 Command("mkdir -p %s" % options.workdir, options).run_silent()
601                 checkout_build()
602                 store_config()
603
604             build_dir = os.path.join(options.workdir, cls.config['build'])
605             if not os.path.isdir(build_dir):
606                 checkout_build()
607             else:
608                 build = Repository(build_dir, options)
609                 if not build.is_clean():
610                     print "build module needs a revert"
611                     build.revert()
612                     print "OK"
613                 build.update()
614
615         if options.verbose and options.mode not in Main.silent_modes:
616             print '******** Using config'
617             for (key,message,default) in Module.configKeys:
618                 print '\t',key,'=',Module.config[key]
619
620     def init_module_dir (self):
621         if self.options.verbose:
622             print 'Checking for',self.module_dir
623
624         if not os.path.isdir (self.module_dir):
625             if Repository.has_moved_to_git(self.pathname, Module.config):
626                 self.repository = GitRepository.checkout(self.git_remote_dir(self.pathname),
627                                                          self.module_dir,
628                                                          self.options)
629             else:
630                 remote = self.svn_selected_remote()
631                 self.repository = SvnRepository.checkout(remote,
632                                                          self.module_dir,
633                                                          self.options, recursive=False)
634
635         self.repository = Repository(self.module_dir, self.options)
636         if self.repository.type == "svn":
637             # check if module has moved to git    
638             if Repository.has_moved_to_git(self.pathname, Module.config):
639                 Command("rm -rf %s" % self.module_dir, self.options).run_silent()
640                 self.init_module_dir()
641             # check if we have the required branch/tag
642             if self.repository.url() != self.svn_selected_remote():
643                 Command("rm -rf %s" % self.module_dir, self.options).run_silent()
644                 self.init_module_dir()
645
646         elif self.repository.type == "git":
647             if hasattr(self,'branch'):
648                 self.repository.to_branch(self.branch)
649             elif hasattr(self,'tagname'):
650                 self.repository.to_tag(self.tagname)
651
652         else:
653             raise Exception, 'Cannot find %s - check module name'%self.module_dir
654
655
656     def revert_module_dir (self):
657         if self.options.fast_checks:
658             if self.options.verbose: print 'Skipping revert of %s' % self.module_dir
659             return
660         if self.options.verbose:
661             print 'Checking whether', self.module_dir, 'needs being reverted'
662         
663         if not self.repository.is_clean():
664             self.repository.revert()
665
666     def update_module_dir (self):
667         if self.options.fast_checks:
668             if self.options.verbose: print 'Skipping update of %s' % self.module_dir
669             return
670         if self.options.verbose:
671             print 'Updating', self.module_dir
672
673         if hasattr(self,'branch'):
674             self.repository.update(branch=self.branch)
675         elif hasattr(self,'tagname'):
676             self.repository.update(branch=self.tagname)
677         else:
678             self.repository.update()
679
680     def main_specname (self):
681         attempt="%s/%s.spec"%(self.module_dir,self.name)
682         if os.path.isfile (attempt):
683             return attempt
684         pattern1="%s/*.spec"%self.module_dir
685         level1=glob(pattern1)
686         if level1:
687             return level1[0]
688         pattern2="%s/*/*.spec"%self.module_dir
689         level2=glob(pattern2)
690
691         if level2:
692             return level2[0]
693         raise Exception, 'Cannot guess specfile for module %s -- patterns were %s or %s'%(self.pathname,pattern1,pattern2)
694
695     def all_specnames (self):
696         level1=glob("%s/*.spec" % self.module_dir)
697         if level1: return level1
698         level2=glob("%s/*/*.spec" % self.module_dir)
699         return level2
700
701     def parse_spec (self, specfile, varnames):
702         if self.options.verbose:
703             print 'Parsing',specfile,
704             for var in varnames:
705                 print "[%s]"%var,
706             print ""
707         result={}
708         f=open(specfile)
709         for line in f.readlines():
710             attempt=Module.matcher_rpm_define.match(line)
711             if attempt:
712                 (define,var,value)=attempt.groups()
713                 if var in varnames:
714                     result[var]=value
715         f.close()
716         if self.options.debug:
717             print 'found',len(result),'keys'
718             for (k,v) in result.iteritems():
719                 print k,'=',v
720         return result
721                 
722     # stores in self.module_name_varname the rpm variable to be used for the module's name
723     # and the list of these names in self.varnames
724     def spec_dict (self):
725         specfile=self.main_specname()
726         redirector_keys = [ varname for (varname,default) in Module.redirectors]
727         redirect_dict = self.parse_spec(specfile,redirector_keys)
728         if self.options.debug:
729             print '1st pass parsing done, redirect_dict=',redirect_dict
730         varnames=[]
731         for (varname,default) in Module.redirectors:
732             if redirect_dict.has_key(varname):
733                 setattr(self,varname,redirect_dict[varname])
734                 varnames += [redirect_dict[varname]]
735             else:
736                 setattr(self,varname,default)
737                 varnames += [ default ] 
738         self.varnames = varnames
739         result = self.parse_spec (specfile,self.varnames)
740         if self.options.debug:
741             print '2st pass parsing done, varnames=',varnames,'result=',result
742         return result
743
744     def patch_spec_var (self, patch_dict,define_missing=False):
745         for specfile in self.all_specnames():
746             # record the keys that were changed
747             changed = dict ( [ (x,False) for x in patch_dict.keys() ] )
748             newspecfile=specfile+".new"
749             if self.options.verbose:
750                 print 'Patching',specfile,'for',patch_dict.keys()
751             spec=open (specfile)
752             new=open(newspecfile,"w")
753
754             for line in spec.readlines():
755                 attempt=Module.matcher_rpm_define.match(line)
756                 if attempt:
757                     (define,var,value)=attempt.groups()
758                     if var in patch_dict.keys():
759                         if self.options.debug:
760                             print 'rewriting %s as %s'%(var,patch_dict[var])
761                         new.write('%%%s %s %s\n'%(define,var,patch_dict[var]))
762                         changed[var]=True
763                         continue
764                 new.write(line)
765             if define_missing:
766                 for (key,was_changed) in changed.iteritems():
767                     if not was_changed:
768                         if self.options.debug:
769                             print 'rewriting missing %s as %s'%(key,patch_dict[key])
770                         new.write('\n%%define %s %s\n'%(key,patch_dict[key]))
771             spec.close()
772             new.close()
773             os.rename(newspecfile,specfile)
774
775     # returns all lines until the magic line
776     def unignored_lines (self, logfile):
777         result=[]
778         white_line_matcher = re.compile("\A\s*\Z")
779         for logline in file(logfile).readlines():
780             if logline.strip() == Module.svn_magic_line:
781                 break
782             elif white_line_matcher.match(logline):
783                 continue
784             else:
785                 result.append(logline.strip()+'\n')
786         return result
787
788     # creates a copy of the input with only the unignored lines
789     def stripped_magic_line_filename (self, filein, fileout ,new_tag_name):
790        f=file(fileout,'w')
791        f.write(self.setting_tag_format%new_tag_name + '\n')
792        for line in self.unignored_lines(filein):
793            f.write(line)
794        f.close()
795
796     def insert_changelog (self, logfile, oldtag, newtag):
797         for specfile in self.all_specnames():
798             newspecfile=specfile+".new"
799             if self.options.verbose:
800                 print 'Inserting changelog from %s into %s'%(logfile,specfile)
801             spec=open (specfile)
802             new=open(newspecfile,"w")
803             for line in spec.readlines():
804                 new.write(line)
805                 if re.compile('%changelog').match(line):
806                     dateformat="* %a %b %d %Y"
807                     datepart=time.strftime(dateformat)
808                     logpart="%s <%s> - %s"%(Module.config['username'],
809                                                  Module.config['email'],
810                                                  newtag)
811                     new.write(datepart+" "+logpart+"\n")
812                     for logline in self.unignored_lines(logfile):
813                         new.write("- " + logline)
814                     new.write("\n")
815             spec.close()
816             new.close()
817             os.rename(newspecfile,specfile)
818             
819     def show_dict (self, spec_dict):
820         if self.options.verbose:
821             for (k,v) in spec_dict.iteritems():
822                 print k,'=',v
823
824     def last_tag (self, spec_dict):
825         try:
826             return "%s-%s" % (spec_dict[self.module_version_varname],
827                               spec_dict[self.module_taglevel_varname])
828         except KeyError,err:
829             raise Exception,'Something is wrong with module %s, cannot determine %s - exiting'%(self.name,err)
830
831     def tag_name (self, spec_dict, old_svn_name=False):
832         base_tag_name = self.name
833         if old_svn_name:
834             base_tag_name = git_to_svn_name(self.name)
835         return "%s-%s" % (base_tag_name, self.last_tag(spec_dict))
836     
837
838 ##############################
839     # using fine_grain means replacing only those instances that currently refer to this tag
840     # otherwise, <module>-{SVNPATH,GITPATH} is replaced unconditionnally
841     def patch_tags_file (self, tagsfile, oldname, newname,fine_grain=True):
842         newtagsfile=tagsfile+".new"
843         tags=open (tagsfile)
844         new=open(newtagsfile,"w")
845
846         matches=0
847         # fine-grain : replace those lines that refer to oldname
848         if fine_grain:
849             if self.options.verbose:
850                 print 'Replacing %s into %s\n\tin %s .. '%(oldname,newname,tagsfile),
851             matcher=re.compile("^(.*)%s(.*)"%oldname)
852             for line in tags.readlines():
853                 if not matcher.match(line):
854                     new.write(line)
855                 else:
856                     (begin,end)=matcher.match(line).groups()
857                     new.write(begin+newname+end+"\n")
858                     matches += 1
859         # brute-force : change uncommented lines that define <module>-SVNPATH
860         else:
861             if self.options.verbose:
862                 print 'Searching for -SVNPATH or -GITPATH lines referring to /%s/\n\tin %s .. '%(self.pathname,tagsfile),
863             pattern="\A\s*%s-(SVNPATH|GITPATH)\s*(=|:=)\s*(?P<url_main>[^\s]+)/%s[^\s]+"\
864                                           %(self.name,self.name)
865             matcher_module=re.compile(pattern)
866             for line in tags.readlines():
867                 attempt=matcher_module.match(line)
868                 if attempt:
869                     if line.find("-GITPATH") >= 0:
870                         modulepath = "%s-GITPATH"%self.name
871                         replacement = "%-32s:= %s/%s.git@%s\n"%(modulepath,attempt.group('url_main'),self.pathname,newname)
872                     else:
873                         modulepath = "%s-SVNPATH"%self.name
874                         replacement = "%-32s:= %s/%s/tags/%s\n"%(modulepath,attempt.group('url_main'),self.name,newname)
875                     if self.options.verbose:
876                         print ' ' + modulepath, 
877                     new.write(replacement)
878                     matches += 1
879                 else:
880                     new.write(line)
881         tags.close()
882         new.close()
883         os.rename(newtagsfile,tagsfile)
884         if self.options.verbose: print "%d changes"%matches
885         return matches
886
887     def check_tag(self, tagname, need_it=False, old_svn_tag_name=None):
888         if self.options.verbose:
889             print "Checking %s repository tag: %s - " % (self.repository.type, tagname),
890
891         found_tagname = tagname
892         found = self.repository.tag_exists(tagname)
893         if not found and old_svn_tag_name:
894             if self.options.verbose:
895                 print "KO"
896                 print "Checking %s repository tag: %s - " % (self.repository.type, old_svn_tag_name),
897             found = self.repository.tag_exists(old_svn_tag_name)
898             if found:
899                 found_tagname = old_svn_tag_name
900
901         if (found and need_it) or (not found and not need_it):
902             if self.options.verbose:
903                 print "OK",
904                 if found: print "- found"
905                 else: print "- not found"
906         else:
907             if self.options.verbose:
908                 print "KO"
909             if found:
910                 raise Exception, "tag (%s) is already there" % tagname
911             else:
912                 raise Exception, "can not find required tag (%s)" % tagname
913
914         return found_tagname
915
916
917 ##############################
918     def do_tag (self):
919         self.init_module_dir()
920         self.revert_module_dir()
921         self.update_module_dir()
922         # parse specfile
923         spec_dict = self.spec_dict()
924         self.show_dict(spec_dict)
925         
926         # side effects
927         old_tag_name = self.tag_name(spec_dict)
928         old_svn_tag_name = self.tag_name(spec_dict, old_svn_name=True)
929
930         if (self.options.new_version):
931             # new version set on command line
932             spec_dict[self.module_version_varname] = self.options.new_version
933             spec_dict[self.module_taglevel_varname] = 0
934         else:
935             # increment taglevel
936             new_taglevel = str ( int (spec_dict[self.module_taglevel_varname]) + 1)
937             spec_dict[self.module_taglevel_varname] = new_taglevel
938
939         new_tag_name = self.tag_name(spec_dict)
940
941         # sanity check
942         old_tag_name = self.check_tag(old_tag_name, need_it=True, old_svn_tag_name=old_svn_tag_name)
943         new_tag_name = self.check_tag(new_tag_name, need_it=False)
944
945         # checking for diffs
946         diff_output = self.repository.diff_with_tag(old_tag_name)
947         if len(diff_output) == 0:
948             if not prompt ("No pending difference in module %s, want to tag anyway"%self.pathname,False):
949                 return
950
951         # side effect in trunk's specfile
952         self.patch_spec_var(spec_dict)
953
954         # prepare changelog file 
955         # we use the standard subversion magic string (see svn_magic_line)
956         # so we can provide useful information, such as version numbers and diff
957         # in the same file
958         changelog="/tmp/%s-%d.edit"%(self.name,os.getpid())
959         changelog_svn="/tmp/%s-%d.svn"%(self.name,os.getpid())
960         setting_tag_line=Module.setting_tag_format%new_tag_name
961         file(changelog,"w").write("""
962 %s
963 %s
964 Please write a changelog for this new tag in the section above
965 """%(Module.svn_magic_line,setting_tag_line))
966
967         if not self.options.verbose or prompt('Want to see diffs while writing changelog',True):
968             file(changelog,"a").write('DIFF=========\n' + diff_output)
969         
970         if self.options.debug:
971             prompt('Proceed ?')
972
973         # edit it        
974         self.run("%s %s"%(self.options.editor,changelog))
975         # strip magic line in second file - looks like svn has changed its magic line with 1.6
976         # so we do the job ourselves
977         self.stripped_magic_line_filename(changelog,changelog_svn,new_tag_name)
978         # insert changelog in spec
979         if self.options.changelog:
980             self.insert_changelog (changelog,old_tag_name,new_tag_name)
981
982         ## update build
983         build_path = os.path.join(self.options.workdir,
984                                   Module.config['build'])
985         build = Repository(build_path, self.options)
986         if self.options.build_branch:
987             build.to_branch(self.options.build_branch)
988         if not build.is_clean():
989             build.revert()
990
991         tagsfiles=glob(build.path+"/*-tags*.mk")
992         tagsdict=dict( [ (x,'todo') for x in tagsfiles ] )
993         default_answer = 'y'
994         tagsfiles.sort()
995         while True:
996             for tagsfile in tagsfiles:
997                 status=tagsdict[tagsfile]
998                 basename=os.path.basename(tagsfile)
999                 print ".................... Dealing with %s"%basename
1000                 while tagsdict[tagsfile] == 'todo' :
1001                     choice = prompt ("insert %s in %s    "%(new_tag_name,basename),default_answer,
1002                                      [ ('y','es'), ('n', 'ext'), ('f','orce'), 
1003                                        ('d','iff'), ('r','evert'), ('c', 'at'), ('h','elp') ] ,
1004                                      allow_outside=True)
1005                     if choice == 'y':
1006                         self.patch_tags_file(tagsfile,old_tag_name,new_tag_name,fine_grain=True)
1007                     elif choice == 'n':
1008                         print 'Done with %s'%os.path.basename(tagsfile)
1009                         tagsdict[tagsfile]='done'
1010                     elif choice == 'f':
1011                         self.patch_tags_file(tagsfile,old_tag_name,new_tag_name,fine_grain=False)
1012                     elif choice == 'd':
1013                         print build.diff(f=os.path.basename(tagsfile))
1014                     elif choice == 'r':
1015                         build.revert(f=tagsfile)
1016                     elif choice == 'c':
1017                         self.run("cat %s"%tagsfile)
1018                     else:
1019                         name=self.name
1020                         print """y: change %(name)s-{SVNPATH,GITPATH} only if it currently refers to %(old_tag_name)s
1021 f: unconditionnally change any line that assigns %(name)s-SVNPATH to using %(new_tag_name)s
1022 d: show current diff for this tag file
1023 r: revert that tag file
1024 c: cat the current tag file
1025 n: move to next file"""%locals()
1026
1027             if prompt("Want to review changes on tags files",False):
1028                 tagsdict = dict ( [ (x, 'todo') for x in tagsfiles ] )
1029                 default_answer='d'
1030             else:
1031                 break
1032
1033         def diff_all_changes():
1034             print build.diff()
1035             print self.repository.diff()
1036
1037         def commit_all_changes(log):
1038             if hasattr(self,'branch'):
1039                 self.repository.commit(log, branch=self.branch)
1040             else:
1041                 self.repository.commit(log)
1042             build.commit(log)
1043
1044         self.run_prompt("Review module and build", diff_all_changes)
1045         self.run_prompt("Commit module and build", commit_all_changes, changelog_svn)
1046         self.run_prompt("Create tag", self.repository.tag, new_tag_name, changelog_svn)
1047
1048         if self.options.debug:
1049             print 'Preserving',changelog,'and stripped',changelog_svn
1050         else:
1051             os.unlink(changelog)
1052             os.unlink(changelog_svn)
1053
1054
1055 ##############################
1056     def do_version (self):
1057         self.init_module_dir()
1058         self.revert_module_dir()
1059         self.update_module_dir()
1060         spec_dict = self.spec_dict()
1061         if self.options.www:
1062             self.html_store_title('Version for module %s (%s)' % (self.friendly_name(),
1063                                                                   self.last_tag(spec_dict)))
1064         for varname in self.varnames:
1065             if not spec_dict.has_key(varname):
1066                 self.html_print ('Could not find %%define for %s'%varname)
1067                 return
1068             else:
1069                 self.html_print ("%-16s %s"%(varname,spec_dict[varname]))
1070         self.html_print ("%-16s %s"%('url',self.repository.url()))
1071         if self.options.verbose:
1072             self.html_print ("%-16s %s"%('main specfile:',self.main_specname()))
1073             self.html_print ("%-16s %s"%('specfiles:',self.all_specnames()))
1074         self.html_print_end()
1075
1076
1077 ##############################
1078     def do_diff (self):
1079         self.init_module_dir()
1080         self.revert_module_dir()
1081         self.update_module_dir()
1082         spec_dict = self.spec_dict()
1083         self.show_dict(spec_dict)
1084
1085         # side effects
1086         tag_name = self.tag_name(spec_dict)
1087         old_svn_tag_name = self.tag_name(spec_dict, old_svn_name=True)
1088
1089         # sanity check
1090         tag_name = self.check_tag(tag_name, need_it=True, old_svn_tag_name=old_svn_tag_name)
1091
1092         if self.options.verbose:
1093             print 'Getting diff'
1094         diff_output = self.repository.diff_with_tag(tag_name)
1095
1096         if self.options.list:
1097             if diff_output:
1098                 print self.pathname
1099         else:
1100             thename=self.friendly_name()
1101             do_print=False
1102             if self.options.www and diff_output:
1103                 self.html_store_title("Diffs in module %s (%s) : %d chars"%(\
1104                         thename,self.last_tag(spec_dict),len(diff_output)))
1105
1106                 self.html_store_raw ('<p> &lt; (left) %s </p>' % tag_name)
1107                 self.html_store_raw ('<p> &gt; (right) %s </p>' % thename)
1108                 self.html_store_pre (diff_output)
1109             elif not self.options.www:
1110                 print 'x'*30,'module',thename
1111                 print 'x'*20,'<',tag_name
1112                 print 'x'*20,'>',thename
1113                 print diff_output
1114
1115 ##############################
1116     # store and restitute html fragments
1117     @staticmethod 
1118     def html_href (url,text): return '<a href="%s">%s</a>'%(url,text)
1119
1120     @staticmethod 
1121     def html_anchor (url,text): return '<a name="%s">%s</a>'%(url,text)
1122
1123     @staticmethod
1124     def html_quote (text):
1125         return text.replace('&','&#38;').replace('<','&lt;').replace('>','&gt;')
1126
1127     # only the fake error module has multiple titles
1128     def html_store_title (self, title):
1129         if not hasattr(self,'titles'): self.titles=[]
1130         self.titles.append(title)
1131
1132     def html_store_raw (self, html):
1133         if not hasattr(self,'body'): self.body=''
1134         self.body += html
1135
1136     def html_store_pre (self, text):
1137         if not hasattr(self,'body'): self.body=''
1138         self.body += '<pre>' + self.html_quote(text) + '</pre>'
1139
1140     def html_print (self, txt):
1141         if not self.options.www:
1142             print txt
1143         else:
1144             if not hasattr(self,'in_list') or not self.in_list:
1145                 self.html_store_raw('<ul>')
1146                 self.in_list=True
1147             self.html_store_raw('<li>'+txt+'</li>')
1148
1149     def html_print_end (self):
1150         if self.options.www:
1151             self.html_store_raw ('</ul>')
1152
1153     @staticmethod
1154     def html_dump_header(title):
1155         nowdate=time.strftime("%Y-%m-%d")
1156         nowtime=time.strftime("%H:%M (%Z)")
1157         print """<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1158 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
1159 <head>
1160 <title> %s </title>
1161 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
1162 <style type="text/css">
1163 body { font-family:georgia, serif; }
1164 h1 {font-size: large; }
1165 p.title {font-size: x-large; }
1166 span.error {text-weight:bold; color: red; }
1167 </style>
1168 </head>
1169 <body>
1170 <p class='title'> %s - status on %s at %s</p>
1171 <ul>
1172 """%(title,title,nowdate,nowtime)
1173
1174     @staticmethod
1175     def html_dump_middle():
1176         print "</ul>"
1177
1178     @staticmethod
1179     def html_dump_footer():
1180         print "</body></html"
1181
1182     def html_dump_toc(self):
1183         if hasattr(self,'titles'):
1184             for title in self.titles:
1185                 print '<li>',self.html_href ('#'+self.friendly_name(),title),'</li>'
1186
1187     def html_dump_body(self):
1188         if hasattr(self,'titles'):
1189             for title in self.titles:
1190                 print '<hr /><h1>',self.html_anchor(self.friendly_name(),title),'</h1>'
1191         if hasattr(self,'body'):
1192             print self.body
1193             print '<p class="top">',self.html_href('#','Back to top'),'</p>'            
1194
1195
1196
1197 class Build(Module):
1198     
1199     def __get_modules(self, tagfile):
1200         self.init_module_dir()
1201         modules = {}
1202
1203         tagfile = os.path.join(self.module_dir, tagfile)
1204         for line in open(tagfile):
1205             try:
1206                 name, url = line.split(':=')
1207                 name, git_or_svn_path = name.rsplit('-', 1)
1208                 name = svn_to_git_name(name.strip())
1209                 modules[name] = (git_or_svn_path.strip(), url.strip())
1210             except:
1211                 pass
1212         return modules
1213
1214     def get_modules(self, tagfile):
1215         modules = self.__get_modules(tagfile)
1216         for module in modules:
1217             module_type = tag_or_branch = ""
1218
1219             path_type, url = modules[module]
1220             if path_type == "GITPATH":
1221                 module_spec = os.path.split(url)[-1].replace(".git","")
1222                 name, tag_or_branch, module_type = self.parse_module_spec(module_spec)
1223             else:
1224                 tag_or_branch = os.path.split(url)[-1].strip()
1225                 if url.find('/tags/') >= 0:
1226                     module_type = "tag"
1227                 elif url.find('/branches/') >= 0:
1228                     module_type = "branch"
1229             
1230             modules[module] = {"module_type" : module_type,
1231                                "path_type": path_type,
1232                                "tag_or_branch": tag_or_branch,
1233                                "url":url}
1234         return modules
1235                 
1236         
1237
1238 def modules_diff(first, second):
1239     diff = {}
1240
1241     for module in first:
1242         if module not in second: 
1243             print "=== module %s missing in right-hand side ==="%module
1244             continue
1245         if first[module]['tag_or_branch'] != second[module]['tag_or_branch']:
1246             diff[module] = (first[module]['tag_or_branch'], second[module]['tag_or_branch'])
1247
1248     first_set = set(first.keys())
1249     second_set = set(second.keys())
1250
1251     new_modules = list(second_set - first_set)
1252     removed_modules = list(first_set - second_set)
1253
1254     return diff, new_modules, removed_modules
1255
1256 def release_changelog(options, buildtag_old, buildtag_new):
1257
1258     tagfile = options.distrotags[0]
1259     if not tagfile:
1260         print "ERROR: provide a tagfile name (eg. onelab, onelab-k27, planetlab)"
1261         return
1262     tagfile = "%s-tags.mk" % tagfile
1263     
1264     print '----'
1265     print '----'
1266     print '----'
1267     print '= build tag %s to %s =' % (buildtag_old, buildtag_new)
1268     print '== distro %s (%s to %s) ==' % (tagfile, buildtag_old, buildtag_new)
1269
1270     build = Build("build@%s" % buildtag_old, options)
1271     build.init_module_dir()
1272     first = build.get_modules(tagfile)
1273
1274     print ' * from', buildtag_old, build.repository.gitweb()
1275
1276     build = Build("build@%s" % buildtag_new, options)
1277     build.init_module_dir()
1278     second = build.get_modules(tagfile)
1279
1280     print ' * to', buildtag_new, build.repository.gitweb()
1281
1282     diff, new_modules, removed_modules = modules_diff(first, second)
1283
1284
1285     def get_module(name, tag):
1286         if not tag or  tag == "trunk":
1287             return Module("%s" % (module), options)
1288         else:
1289             return Module("%s@%s" % (module, tag), options)
1290
1291
1292     for module in diff:
1293         print '=== %s - %s to %s : package %s ===' % (tagfile, buildtag_old, buildtag_new, module)
1294
1295         first, second = diff[module]
1296         m = get_module(module, first)
1297         os.system('rm -rf %s' % m.module_dir) # cleanup module dir
1298         m.init_module_dir()
1299
1300         if m.repository.type == "svn":
1301             print ' * from', first, m.repository.url()
1302         else:
1303             print ' * from', first, m.repository.gitweb()
1304
1305         specfile = m.main_specname()
1306         (tmpfd, tmpfile) = tempfile.mkstemp()
1307         os.system("cp -f /%s %s" % (specfile, tmpfile))
1308         
1309         m = get_module(module, second)
1310         m.init_module_dir()
1311         specfile = m.main_specname()
1312
1313         if m.repository.type == "svn":
1314             print ' * to', second, m.repository.url()
1315         else:
1316             print ' * to', second, m.repository.gitweb()
1317
1318         print '{{{'
1319         os.system("diff -u %s %s" % (tmpfile, specfile))
1320         print '}}}'
1321
1322         os.unlink(tmpfile)
1323
1324     for module in new_modules:
1325         print '=== %s : new package in build %s ===' % (tagfile, module)
1326
1327     for module in removed_modules:
1328         print '=== %s : removed package from build %s ===' % (tagfile, module)
1329
1330
1331 def adopt_master (options, args):
1332     modules=[]
1333     for module in options.modules:
1334         modules += module.split()
1335     for module in modules: 
1336         modobj=Module(module,options)
1337         for tags_file in args:
1338             if options.verbose:
1339                 print 'adopting master for',module,'in',tags_file
1340             modobj.patch_tags_file(tags_file,'_unused_','master',fine_grain=False)
1341     if options.verbose:
1342         Command("git diff %s"%" ".join(args),options).run()
1343
1344 ##############################
1345 class Main:
1346
1347     module_usage="""Usage: %prog [options] module_desc [ .. module_desc ]
1348
1349 module-tools : a set of tools to manage subversion tags and specfile
1350   requires the specfile to either
1351   * define *version* and *taglevel*
1352   OR alternatively 
1353   * define redirection variables module_version_varname / module_taglevel_varname
1354 Trunk:
1355   by default, the trunk of modules is taken into account
1356   in this case, just mention the module name as <module_desc>
1357 Branches:
1358   if you wish to work on a branch rather than on the trunk, 
1359   you can use something like e.g. Mom:2.1 as <module_desc>
1360 """
1361     release_usage="""Usage: %prog [options] tag1 .. tagn
1362   Extract release notes from the changes in specfiles between several build tags, latest first
1363   Examples:
1364       release-changelog 4.2-rc25 4.2-rc24 4.2-rc23 4.2-rc22
1365   You can refer to a (build) branch by prepending a colon, like in
1366       release-changelog :4.2 4.2-rc25
1367   You can refer to the build trunk by just mentioning 'trunk', e.g.
1368       release-changelog -t coblitz-tags.mk coblitz-2.01-rc6 trunk
1369 """
1370     master_usage="""Usage: %prog [options] tag-file[s]
1371   With this command you can adopt one or several masters in your tag files
1372     This should be run in your daily build workdir; no call of git nor svn is done
1373   Examples:
1374     module-master -m "plewww plcapi" -m Monitor onelab*tags.mk
1375 """
1376     common_usage="""More help:
1377   see http://svn.planet-lab.org/wiki/ModuleTools"""
1378
1379     modes={ 
1380         'list' : "displays a list of available tags or branches",
1381         'version' : "check latest specfile and print out details",
1382         'diff' : "show difference between module (trunk or branch) and latest tag",
1383         'tag'  : """increment taglevel in specfile, insert changelog in specfile,
1384                 create new tag and and monitor its adoption in build/*-tags*.mk""",
1385         'branch' : """create a branch for this module, from the latest tag on the trunk, 
1386                   and change trunk's version number to reflect the new branch name;
1387                   you can specify the new branch name by using module:branch""",
1388         'sync' : """create a tag from the module
1389                 this is a last resort option, mostly for repairs""",
1390         'changelog' : """extract changelog between build tags
1391                 expected arguments are a list of tags""",
1392         'master' : """locally adopt master or trunk for some modules""",
1393         }
1394
1395     silent_modes = ['list']
1396     # 'changelog' is for release-changelog
1397     # 'master' is for 'adopt-master'
1398     regular_modes = set(modes.keys()).difference(set(['changelog','master']))
1399
1400     @staticmethod
1401     def optparse_list (option, opt, value, parser):
1402         try:
1403             setattr(parser.values,option.dest,getattr(parser.values,option.dest)+value.split())
1404         except:
1405             setattr(parser.values,option.dest,value.split())
1406
1407     def run(self):
1408
1409         mode=None
1410         for function in Main.modes.keys():
1411             if sys.argv[0].find(function) >= 0:
1412                 mode = function
1413                 break
1414         if not mode:
1415             print "Unsupported command",sys.argv[0]
1416             print "Supported commands:" + " ".join(Main.modes.keys())
1417             sys.exit(1)
1418
1419         usage='undefined usage, mode=%s'%mode
1420         if mode in Main.regular_modes:
1421             usage = Main.module_usage
1422             usage += Main.common_usage
1423             usage += "\nmodule-%s : %s"%(mode,Main.modes[mode])
1424         elif mode=='changelog':
1425             usage = Main.release_usage
1426             usage += Main.common_usage
1427         elif mode=='master':
1428             usage = Main.master_usage
1429             usage += Main.common_usage
1430
1431         parser=OptionParser(usage=usage)
1432         
1433         # the 'master' mode is really special and doesn't share any option
1434         if mode=='master':
1435             parser.add_option("-m","--module",action="append",dest="modules",default=[],
1436                               help="modules, can be used several times or with quotes")
1437             parser.add_option("-v","--verbose", action="store_true", dest="verbose", default=False, 
1438                               help="run in verbose mode")
1439             (options, args) = parser.parse_args()
1440             options.workdir='unused'
1441             options.dry_run=False
1442             options.mode='master'
1443             if len(args)==0 or len(options.modules)==0:
1444                 parser.print_help()
1445                 sys.exit(1)
1446             adopt_master (options,args)
1447             return 
1448
1449         # the other commands (module-* and release-changelog) share the same skeleton
1450         if mode == "tag" or mode == 'branch':
1451             parser.add_option("-s","--set-version",action="store",dest="new_version",default=None,
1452                               help="set new version and reset taglevel to 0")
1453         if mode == "tag" :
1454             parser.add_option("-c","--no-changelog", action="store_false", dest="changelog", default=True,
1455                               help="do not update changelog section in specfile when tagging")
1456             parser.add_option("-b","--build-branch", action="store", dest="build_branch", default=None,
1457                               help="specify a build branch; used for locating the *tags*.mk files where adoption is to take place")
1458         if mode == "tag" or mode == "sync" :
1459             parser.add_option("-e","--editor", action="store", dest="editor", default=default_editor(),
1460                               help="specify editor")
1461
1462         if mode in ["diff","version"] :
1463             parser.add_option("-W","--www", action="store", dest="www", default=False,
1464                               help="export diff in html format, e.g. -W trunk")
1465
1466         if mode == "diff" :
1467             parser.add_option("-l","--list", action="store_true", dest="list", default=False,
1468                               help="just list modules that exhibit differences")
1469             
1470         default_modules_list=os.path.dirname(sys.argv[0])+"/modules.list"
1471         parser.add_option("-a","--all",action="store_true",dest="all_modules",default=False,
1472                           help="run on all modules as found in %s"%default_modules_list)
1473         parser.add_option("-f","--file",action="store",dest="modules_list",default=None,
1474                           help="run on all modules found in specified file")
1475         parser.add_option("-n","--dry-run",action="store_true",dest="dry_run",default=False,
1476                           help="dry run - shell commands are only displayed")
1477         parser.add_option("-t","--distrotags",action="callback",callback=Main.optparse_list, dest="distrotags",
1478                           default=[], nargs=1,type="string",
1479                           help="""specify distro-tags files, e.g. onelab-tags-4.2.mk
1480 -- can be set multiple times, or use quotes""")
1481
1482         parser.add_option("-w","--workdir", action="store", dest="workdir", 
1483                           default="%s/%s"%(os.getenv("HOME"),"modules"),
1484                           help="""name for dedicated working dir - defaults to ~/modules
1485 ** THIS MUST NOT ** be your usual working directory""")
1486         parser.add_option("-F","--fast-checks",action="store_true",dest="fast_checks",default=False,
1487                           help="skip safety checks, such as svn updates -- use with care")
1488
1489         # default verbosity depending on function - temp
1490         verbose_modes= ['tag', 'sync', 'branch']
1491         
1492         if mode not in verbose_modes:
1493             parser.add_option("-v","--verbose", action="store_true", dest="verbose", default=False, 
1494                               help="run in verbose mode")
1495         else:
1496             parser.add_option("-q","--quiet", action="store_false", dest="verbose", default=True,
1497                               help="run in quiet (non-verbose) mode")
1498         (options, args) = parser.parse_args()
1499         options.mode=mode
1500         if not hasattr(options,'dry_run'):
1501             options.dry_run=False
1502         if not hasattr(options,'www'):
1503             options.www=False
1504         options.debug=False
1505
1506         
1507
1508         ########## module-*
1509         if len(args) == 0:
1510             if options.all_modules:
1511                 options.modules_list=default_modules_list
1512             if options.modules_list:
1513                 args=Command("grep -v '#' %s"%options.modules_list,options).output_of().split()
1514             else:
1515                 parser.print_help()
1516                 sys.exit(1)
1517         Module.init_homedir(options)
1518         
1519
1520         if mode in Main.regular_modes:
1521             modules=[ Module(modname,options) for modname in args ]
1522             # hack: create a dummy Module to store errors/warnings
1523             error_module = Module('__errors__',options)
1524
1525             for module in modules:
1526                 if len(args)>1 and mode not in Main.silent_modes:
1527                     if not options.www:
1528                         print '========================================',module.friendly_name()
1529                 # call the method called do_<mode>
1530                 method=Module.__dict__["do_%s"%mode]
1531                 try:
1532                     method(module)
1533                 except Exception,e:
1534                     if options.www:
1535                         title='<span class="error"> Skipping module %s - failure: %s </span>'%\
1536                             (module.friendly_name(), str(e))
1537                         error_module.html_store_title(title)
1538                     else:
1539                         import traceback
1540                         traceback.print_exc()
1541                         print 'Skipping module %s: '%modname,e
1542     
1543             if options.www:
1544                 if mode == "diff":
1545                     modetitle="Changes to tag in %s"%options.www
1546                 elif mode == "version":
1547                     modetitle="Latest tags in %s"%options.www
1548                 modules.append(error_module)
1549                 error_module.html_dump_header(modetitle)
1550                 for module in modules:
1551                     module.html_dump_toc()
1552                 Module.html_dump_middle()
1553                 for module in modules:
1554                     module.html_dump_body()
1555                 Module.html_dump_footer()
1556         else:
1557             release_changelog(options, *args)
1558             
1559     
1560 ####################
1561 if __name__ == "__main__" :
1562     try:
1563         Main().run()
1564     except KeyboardInterrupt:
1565         print '\nBye'