4d90c187a9
Please review the following patch containing the code changes in the repo. This patch is a transition patch and is the auto-generated output of the python-black tool. Change-Id: I2d2de71da8a105fb62b561899ae78441ddab4032 Signed-off-by: Thanh Ha <zxiiro@gmail.com>
73 lines
2.4 KiB
Python
73 lines
2.4 KiB
Python
#!/usr/bin/env python
|
|
# Copyright (C) 2018 Sorin Sbarnea
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
import logging
|
|
import sys
|
|
import jenkins_jobs.cli.subcommand.base as base
|
|
import jenkins_jobs.utils as utils
|
|
import jenkins_jobs.builder as builder
|
|
import jenkins_jobs.parser as parser
|
|
import jenkins_jobs.registry as registry
|
|
|
|
|
|
def list_duplicates(seq):
|
|
seen = set()
|
|
return set(x for x in seq if x in seen or seen.add(x))
|
|
|
|
|
|
class ListSubCommand(base.BaseSubCommand):
|
|
def parse_args(self, subparser):
|
|
list = subparser.add_parser("list", help="List jobs")
|
|
|
|
self.parse_option_recursive_exclude(list)
|
|
|
|
list.add_argument("names", help="name(s) of job(s)", nargs="*", default=None)
|
|
list.add_argument(
|
|
"-p", "--path", default=None, help="path to YAML file or directory"
|
|
)
|
|
|
|
def execute(self, options, jjb_config):
|
|
self.jjb_config = jjb_config
|
|
self.jenkins = builder.JenkinsManager(jjb_config)
|
|
|
|
jobs = self.get_jobs(options.names, options.path)
|
|
|
|
logging.info("Matching jobs: %d", len(jobs))
|
|
stdout = utils.wrap_stream(sys.stdout)
|
|
|
|
for job in jobs:
|
|
stdout.write((job + "\n").encode("utf-8"))
|
|
|
|
def get_jobs(self, jobs_glob=None, fn=None):
|
|
if fn:
|
|
r = registry.ModuleRegistry(self.jjb_config, self.jenkins.plugins_list)
|
|
p = parser.YamlParser(self.jjb_config)
|
|
p.load_files(fn)
|
|
p.expandYaml(r, jobs_glob)
|
|
jobs = [j["name"] for j in p.jobs]
|
|
else:
|
|
jobs = [
|
|
j["name"]
|
|
for j in self.jenkins.get_jobs()
|
|
if not jobs_glob or parser.matches(j["name"], jobs_glob)
|
|
]
|
|
|
|
jobs = sorted(jobs)
|
|
for duplicate in list_duplicates(jobs):
|
|
logging.warning("Found duplicate job name '%s', likely bug.", duplicate)
|
|
|
|
logging.debug("Builder.get_jobs: returning %r", jobs)
|
|
|
|
return jobs
|