Github user dblotsky commented on a diff in the pull request:

    https://github.com/apache/cordova-medic/pull/37#discussion_r26093982
  
    --- Diff: buildbot-conf/cordova.conf ---
    @@ -0,0 +1,326 @@
    +import os
    +import re
    +import json
    +
    +from buildbot.schedulers.basic import SingleBranchScheduler, 
AnyBranchScheduler
    +from buildbot.schedulers.forcesched import ForceScheduler
    +from buildbot.schedulers.timed import Nightly
    +
    +from buildbot.changes.gitpoller import GitPoller
    +from buildbot.changes import filter as change_filter
    +
    +from buildbot.process.factory import BuildFactory
    +from buildbot.config import BuilderConfig
    +
    +from buildbot.process.properties import renderer
    +from buildbot.process.properties import Property as P
    +from buildbot.process.properties import Interpolate as I
    +
    +from buildbot.steps.source.git import Git
    +from buildbot.steps.transfer import FileDownload
    +from buildbot.steps.shell import ShellCommand
    +from buildbot.steps.master import SetProperty
    +
    +from buildbot.status.results import SUCCESS
    +
    +# config
    +MEDIC_CONFIG_FILE    = os.path.join(FP, 'cordova-config.json')
    +PROJECTS_CONFIG_FILE = os.path.join(FP, 'cordova-repos.json')
    +
    +def parse_config_file(file_name):
    +    with open(file_name, 'r') as config_file:
    +        return json.load(config_file)
    +
    +medic_config    = parse_config_file(MEDIC_CONFIG_FILE)
    +projects_config = parse_config_file(PROJECTS_CONFIG_FILE)
    +
    +# constants
    +DEFAULT_REPO_NAME = 'src'
    +BASE_WORKDIR      = '.'
    +
    +OSX     = 'osx'
    +LINUX   = 'linux'
    +WINDOWS = 'windows'
    +
    +# patterns
    +CORDOVA_REPO_PATTERN = r'^.*(cordova-[^\.]+)\.git$'
    +
    +# interpretation of every byte-sized return code as success
    +ALWAYS_SUCCESS = {i: SUCCESS for i in range(0, 256)}
    +
    +####### UTILITIES
    +
    +# helper functions
    +def cordova_builders():
    +    return [b.name for b in c['builders'] if b.name.startswith('cordova_')]
    +
    +def repo_name_from_url(url):
    +    match = re.match(CORDOVA_REPO_PATTERN, url)
    +    if match is not None:
    +        return match.group(1)
    +    return DEFAULT_REPO_NAME
    +
    +def repo_codebase_from_name(name):
    +    repo          = projects_config[name]
    +    codebase_name = repo['codebase']
    +    return repo['codebases'][codebase_name]
    +
    +def repo_url_from_name(name):
    +    return repo_codebase_from_name(name)['repo']
    +
    +def repo_branch_from_name(name):
    +    return repo_codebase_from_name(name)['branch']
    +
    +def slugify(string):
    +    return string.replace(' ', '-')
    +
    +def running_tasks_on_platform(platform_name, os_name):
    +    """
    +    Return the names of tasks possibly started by
    +    builds on the given platform and OS.
    +    """
    +    if platform_name == 'windows':
    +        return ['WWAHost.exe']
    +    elif platform_name == 'wp8':
    +        return ['Xde.exe']
    +    elif platform_name == 'ios':
    +        return ['iOS Simulator']
    +    elif platform_name == 'android':
    +        if os_name == WINDOWS:
    +            return ['emulator-arm.exe', 'adb.exe']
    +        elif os_name == OSX:
    +            return ['emulator64-x86']
    +    return []
    +
    +def can_find_running_tasks(step):
    +    """
    +    Return true if an OS and a platform is specified. Those are the
    +    criteria for finding a task because running_tasks_on_platform uses
    +    those properties to determine which tasks could be running.
    +    """
    +    return (
    +        (step.build.getProperty('slaveos') is not None) and
    +        (step.build.getProperty('platform') is not None)
    +    )
    +
    +# renderers
    +@renderer
    +def render_repo_name(props):
    +    repo_url = props.getProperty('repository')
    +    return repo_name_from_url(repo_url)
    +
    +@renderer
    +def render_task_kill_command(props):
    +
    +    os_name       = props.getProperty('slaveos')
    +    platform_name = props.getProperty('platform')
    +    running_tasks = running_tasks_on_platform(platform_name, os_name)
    +
    +    if not running_tasks:
    +        return ['echo', 'No tasks to kill known.']
    +
    +    if os_name == WINDOWS:
    +        command = ['taskkill', '/F']
    +        for task in running_tasks:
    +            command.append('/IM')
    +            command.append(task)
    +
    +    else:
    +        command = ['killall']
    +        command.extend(running_tasks)
    +
    +    return command
    +
    +@renderer
    +def render_run_args(props):
    +    platform = props.getProperty('platform')
    +    if platform == 'windows':
    +        return '--win'
    +    return ''
    +
    +# step wrappers
    +def DescribedStep(step_class, description, haltOnFailure=True, **kwargs):
    +    return step_class(description=description, 
descriptionDone=description, name=slugify(description), 
haltOnFailure=haltOnFailure, **kwargs)
    +
    +def SH(workdir=BASE_WORKDIR, timeout=medic_config['app']['timeout'], 
**kwargs):
    +    return DescribedStep(ShellCommand, workdir=workdir, timeout=timeout, 
**kwargs)
    +
    +def NPM(npm_command, command=list(), what='code', **kwargs):
    +    return SH(command=['npm', npm_command] + command, description='npm ' + 
npm_command + 'ing ' + what, **kwargs)
    +
    +def NPMInstall(command=list(), **kwargs):
    +    # NOTE:
    +    #      adding the --cache parameter so that we don't use the global
    +    #      npm cache, which is shared with other processes
    +    return NPM('install', command=command + 
[I('--cache=%(prop:workdir)s/npm_cache')], **kwargs)
    +
    +def NPMTest(**kwargs):
    +    return NPM('test', **kwargs)
    +
    +def BuildbotClone(repourl, what='code', workdir=None, **kwargs):
    +    if workdir is None:
    +        workdir = what
    +    return DescribedStep(Git, 'cloning ' + what, repourl=repourl, 
workdir=workdir, mode='full', method='clobber', shallow=True, **kwargs)
    +
    +def CordovaClone(project_name, **kwargs):
    +    branch   = repo_branch_from_name(project_name)
    +    repo_url = repo_url_from_name(project_name)
    +    return BuildbotClone(repourl=repo_url, branch=branch, 
what=project_name, **kwargs)
    +
    +def MedicClone(project_name=None, **kwargs):
    +    """
    +    Clone repositories using medic's checkout.js script.
    +    """
    +
    +    command = ['node', 'cordova-medic/bin/checkout.js', 
'--config=cordova-medic/cordova-repos.json']
    --- End diff --
    
    I haven't seen any significant slowdowns due to this change; in fact, the 
clone step is currently three times faster than in the previous config since we 
clone everything in parallel and at once. I think that this simplifies the code 
significantly and also makes the config file be the source of all information 
regarding cloning.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org

Reply via email to