#!/usr/bin/python -u ''' ADOdb version update script Updates the version number, and release date in all php and html files ''' from datetime import date import getopt import os from os import path import re import subprocess import sys # ADOdb version validation regex # These are used by sed - they are not PCRE ! _version_dev = "dev" _version_abrc = r"(alpha|beta|rc)(\.([0-9]+))?" _version_prerelease = r"(-?(%s|%s))?" % (_version_dev, _version_abrc) _version_base = r"[Vv]?([0-9]\.[0-9]+)(\.([0-9]+))?" _version_regex = _version_base + _version_prerelease _release_date_regex = r"(Unreleased|[0-9?]+-.*-[0-9]+)" _changelog_file = "docs/changelog.md" _tag_prefix = "v" # Command-line options options = "hct" long_options = ["help", "commit", "tag"] def usage(): print '''Usage: %s version Parameters: version ADOdb version, format: [v]X.YY[a-z|dev] Options: -c | --commit Automatically commit the changes -t | --tag Create a tag for the new release -h | --help Show this usage message ''' % ( path.basename(__file__) ) # end usage() def version_is_dev(version): ''' Returns true if version is a development release ''' return version.endswith(_version_dev) def version_is_prerelease(version): ''' Returns true if version is alpha, beta or release-candidate ''' return re.search(_version_abrc, version) is not None def version_is_patch(version): ''' Returns true if version is a patch release (i.e. X.Y.Z with Z > 0) ''' return (re.search('^' + _version_base + '$', version) is not None and not version.endswith('.0')) def version_parse(version): ''' Breakdown the version into groups (Z and -dev are optional) 1:(X.Y), 2:(.Z), 3:(Z), 4:(-dev or -alpha/beta/rc.N), 8: N ''' return re.match(r'^%s$' % _version_regex, version) def version_check(version): ''' Checks that the given version is valid, exits with error if not. Returns the SemVer-normalized version without the "v" prefix - add '.0' if missing patch bit - add '-' before dev release suffix if needed ''' vparse = version_parse(version) if not vparse: usage() print "ERROR: invalid version ! \n" sys.exit(1) vnorm = vparse.group(1) # Add .patch version component if vparse.group(2): vnorm += vparse.group(2) else: # None was specified, assume a .0 release vnorm += '.0' # Normalize version number if version_is_dev(version): vnorm += '-' + _version_dev elif version_is_prerelease(version): vnorm += '-' + vparse.group(5) # If no alpha/beta/rc version number specified, assume 1 if not vparse.group(8): vnorm += ".1" return vnorm def get_release_date(version): ''' Returns the release date in DD-MMM-YYYY format, or "Unreleased" for development releases. ''' # Development release if version_is_dev(version): return "Unreleased" else: return date.today().strftime("%d-%b-%Y") def git_root(): ''' Returns the git repository's root (top-level) directory ''' return subprocess.check_output('git rev-parse --show-toplevel', shell=True).rstrip() def sed_script(version): ''' Builds sed script to update version information in source files ''' # Version number and release date script = r"s/{}\s+{}/v{} {}/".format( _version_regex, _release_date_regex, version, get_release_date(version) ) return script def sed_filelist(): ''' Build list of files to update ''' dirlist = [] for root, dirs, files in os.walk(".", topdown=True): # Filter files by extensions files = [ f for f in files if re.search(r'\.php$', f, re.IGNORECASE) ] for fname in files: dirlist.append(path.join(root, fname)) return dirlist def sed_run(script, files): ''' Run sed ''' subprocess.call( "sed -r -i '%s' %s " % (script, files), shell=True ) def tag_name(version): return _tag_prefix + version def tag_check(version): ''' Checks if the tag for the specified version exists in the repository by attempting to check it out Throws exception if not ''' subprocess.check_call( "git checkout --quiet " + tag_name(version), stderr=subprocess.PIPE, shell=True) print "Tag '%s' already exists" % tag_name(version) def tag_delete(version): ''' Deletes the specified tag ''' subprocess.check_call( "git tag --delete " + tag_name(version), stderr=subprocess.PIPE, shell=True) def tag_create(version): ''' Creates the tag for the specified version Returns True if tag created ''' print "Creating release tag '%s'" % tag_name(version) result = subprocess.call( "git tag --sign --message '%s' %s" % ( "ADOdb version %s released %s" % ( version, get_release_date(version) ), tag_name(version) ), shell=True ) return result == 0 def section_exists(filename, version, print_message=True): ''' Checks given file for existing section with specified version ''' script = True for i, line in enumerate(open(filename)): if re.search(r'^## ' + version, line): if print_message: print " Existing section for v%s found," % version, return True return False class UnsupportedPreviousVersion(Exception): pass class NoPreviousVersion(Exception): pass def version_get_previous(version): ''' Returns the previous version number. In pre-releaes scenarios, it would be complex to figure out what the previous version is, so it is not worth the effort to implement as this is a rare usage scenario; we just raise an exception in this case. - 'UnsupportedPreviousVersion' when attempting facing pre-release scenarios (rc -> beta -> alpha) - 'NoPreviousVersion' when processing major version or .1 pre-releases (can't handle e.g. alpha.0) ''' vprev = version.split('.') item = len(vprev) - 1 while item > 0: try: val = int(vprev[item]) except ValueError: raise UnsupportedPreviousVersion( "Retrieving pre-release's previous version is not supported") if val > 0: vprev[item] = str(val - 1) break item -= 1 # Unhandled scenarios: # - major version number (item == 0) # - .0 pre-release if (item == 0 or version_is_prerelease(version) and vprev[item] == '0'): raise NoPreviousVersion return '.'.join(vprev) def update_changelog(version): ''' Updates the release date in the Change Log ''' print "Updating Changelog" # Version number without '-dev' suffix vparse = version_parse(version) version_release = vparse.group(1) + vparse.group(2) # Make sure previous version exists in changelog, ignore .0 pre-releases try: if version_is_dev(version): version_previous = version_get_previous(version_release) else: version_previous = version_get_previous(version) if not section_exists(_changelog_file, version_previous, False): raise ValueError( "ERROR: previous version %s does not exist in changelog" % version_previous ) except NoPreviousVersion: if version_is_prerelease(version): version_previous = version_release else: version_previous = False # If version exists, update the release date if section_exists(_changelog_file, version): print 'updating release date' script = "s/^## {0} .*$/## {1} - {2}/".format( version.replace('.', r'\.'), version, get_release_date(version) ) else: # If it's a .0 release, treat it as dev if (not version_is_patch(version) and not version_is_prerelease(version) and not version_is_dev(version)): version += '-' + _version_dev # If development release already exists, nothing to do if (version_is_dev(version) and section_exists(_changelog_file, version_release)): print "nothing to do" return print " Inserting new section for v%s" % version # Prerelease section is inserted after the main version's, # otherwise we insert the new section before it. section_template = "## {0} - {1}" if version_is_prerelease(version): version_section = section_template.format( version, get_release_date(version) ) version_section = "\\0\\n\\n" + version_section else: version_section = section_template.format( version_release, get_release_date(version) ) version_section += "\\n\\n\\0" if version_previous: # Adjust previous version number (remove patch component) version_previous = version_parse(version_previous).group(1) script = "1,/^## {0}/s/^## {0}.*$/{1}/".format( version_previous, version_section ) # We don't have a previous version, insert before the first section else: print "No previous version" script = "1,/^## /s/^## .*$/{0}/".format(version_section) sed_run(script, _changelog_file) print " WARNING: review '%s' to ensure added section is correct" % ( _changelog_file ) # end update_changelog def version_set(version, do_commit=True, do_tag=True): ''' Bump version number and set release date in source files ''' print "Preparing version bump commit" update_changelog(version) print "Updating version and date in source files" sed_run(sed_script(version), " ".join(sed_filelist())) print "Version set to %s" % version if do_commit: # Commit changes print "Committing" commit_ok = subprocess.call( "git commit --all --message '%s'" % ( "Bump version to %s" % version ), shell=True ) if do_tag: tag_ok = tag_create(version) else: tag_ok = False if commit_ok == 0: print ''' NOTE: you should carefully review the new commit, making sure updates to the files are correct and no additional changes are required. If everything is fine, then the commit can be pushed upstream; otherwise: - Make the required corrections - Amend the commit ('git commit --all --amend' ) or create a new one''' if tag_ok: print ''' - Drop the tag ('git tag --delete %s') - run this script again ''' % ( tag_name(version) ) else: print "Note: changes have been staged but not committed." # end version_set() def main(): # Get command-line options try: opts, args = getopt.gnu_getopt(sys.argv[1:], options, long_options) except getopt.GetoptError, err: print str(err) usage() sys.exit(2) if len(args) < 1: usage() print "ERROR: please specify the version" sys.exit(1) do_commit = False do_tag = False for opt, val in opts: if opt in ("-h", "--help"): usage() sys.exit(0) elif opt in ("-c", "--commit"): do_commit = True elif opt in ("-t", "--tag"): do_tag = True # Mandatory parameters version = version_check(args[0]) # Change to Git repo's root directory os.chdir(git_root()) # Let's do it version_set(version, do_commit, do_tag) # end main() if __name__ == "__main__": main()