~ubuntu-branches/ubuntu/trusty/jenkins/trusty

« back to all changes in this revision

Viewing changes to core/src/main/java/hudson/cli/ListJobsCommand.java

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-08-13 12:35:19 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20130813123519-tizgfxcr70trl7r0
Tags: 1.509.2+dfsg-1
* New upstream release (Closes: #706725):
  - d/control: Update versioned BD's:
    * jenkins-executable-war >= 1.28.
    * jenkins-instance-identity >= 1.3.
    * libjenkins-remoting-java >= 2.23.
    * libjenkins-winstone-java >= 0.9.10-jenkins-44.
    * libstapler-java >= 1.207.
    * libjenkins-json-java >= 2.4-jenkins-1.
    * libstapler-adjunct-timeline-java >= 1.4.
    * libstapler-adjunct-codemirror-java >= 1.2.
    * libmaven-hpi-plugin-java >= 1.93.
    * libjenkins-xstream-java >= 1.4.4-jenkins-3.
  - d/maven.rules: Map to older version of animal-sniffer-maven-plugin.
  - Add patch for compatibility with guava >= 0.14.
  - Add patch to exclude asm4 dependency via jnr-posix.
  - Fixes the following security vulnerabilities:
    CVE-2013-2034, CVE-2013-2033, CVE-2013-2034, CVE-2013-1808
* d/patches/*: Switch to using git patch-queue for managing patches.
* De-duplicate jars between libjenkins-java and jenkins-external-job-monitor
  (Closes: #701163):
  - d/control: Add dependency between jenkins-external-job-monitor ->
    libjenkins-java.
  - d/rules: 
    Drop installation of jenkins-core in jenkins-external-job-monitor.
  - d/jenkins-external-job-monitor.{links,install}: Link to jenkins-core
    in /usr/share/java instead of included version.
* Wait longer for jenkins to stop during restarts (Closes: #704848):
  - d/jenkins.init: Re-sync init script from upstream codebase.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * The MIT License
 
3
 *
 
4
 * Copyright (c) 2004-2010, Sun Microsystems, Inc.
 
5
 *
 
6
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 
7
 * of this software and associated documentation files (the "Software"), to deal
 
8
 * in the Software without restriction, including without limitation the rights
 
9
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
10
 * copies of the Software, and to permit persons to whom the Software is
 
11
 * furnished to do so, subject to the following conditions:
 
12
 *
 
13
 * The above copyright notice and this permission notice shall be included in
 
14
 * all copies or substantial portions of the Software.
 
15
 *
 
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
19
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
21
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
22
 * THE SOFTWARE.
 
23
 */
 
24
package hudson.cli;
 
25
 
 
26
import java.util.Collection;
 
27
import java.util.Collections;
 
28
import hudson.model.Item;
 
29
import hudson.model.ItemGroup;
 
30
import hudson.model.TopLevelItem;
 
31
import hudson.model.View;
 
32
import hudson.Extension;
 
33
import jenkins.model.Jenkins;
 
34
import org.kohsuke.args4j.Argument;
 
35
 
 
36
/**
 
37
 * Lists all jobs (in a specific view).
 
38
 * 
 
39
 * @author Michael Koch
 
40
 */
 
41
@Extension
 
42
public class ListJobsCommand extends CLICommand {
 
43
    @Override
 
44
    public String getShortDescription() {
 
45
        return Messages.ListJobsCommand_ShortDescription();
 
46
    }
 
47
 
 
48
    @Argument(metaVar="NAME",usage="Name of the view",required=false)
 
49
    public String name;
 
50
 
 
51
    protected int run() throws Exception {
 
52
        Jenkins h = Jenkins.getInstance();
 
53
        final Collection<TopLevelItem> jobs;
 
54
 
 
55
        // If name is given retrieve jobs for the given view.
 
56
        if (name != null) {
 
57
            View view = h.getView(name);
 
58
 
 
59
            if (view != null) {
 
60
                jobs = view.getItems();
 
61
            }
 
62
            // If no view was found, try with an item group.
 
63
            else {
 
64
                final Item item = h.getItemByFullName(name);
 
65
 
 
66
                // If item group was found use it's jobs.
 
67
                if (item instanceof ItemGroup) {
 
68
                    ItemGroup itemGroup = (ItemGroup) item;
 
69
                    jobs = itemGroup.getItems();
 
70
                }
 
71
                // No view and no item group with the given name found.
 
72
                else {
 
73
                    stderr.println("No view or item group with the given name found");
 
74
                    jobs = Collections.emptyList();
 
75
                }
 
76
            }
 
77
        }
 
78
        // Fallback to listing all jobs.
 
79
        else {
 
80
            jobs = h.getItems();
 
81
        }
 
82
 
 
83
        // Print all jobs.
 
84
        for (TopLevelItem item : jobs) {
 
85
            stdout.println(item.getDisplayName());
 
86
        }
 
87
 
 
88
        return 0;
 
89
    }
 
90
}