未验证 提交 af95fef7 编写于 作者: J Jesse Glick

Removing core/src/main/groovy/.

上级 c4dff1ba
......@@ -799,10 +799,10 @@ THE SOFTWARE.
<plugin><!-- run unit test in src/test/java -->
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<!-- version specified in grandparent pom -->
<executions>
<execution>
<goals>
<goal>generateTestStubs</goal>
<goal>testCompile</goal>
</goals>
</execution>
......
/*
* The MIT License
*
* Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package hudson.util
import hudson.model.Computer
import jenkins.util.Timer
import jenkins.model.Jenkins
import hudson.model.Label
import hudson.model.Queue.BlockedItem
import hudson.model.Queue.BuildableItem
import hudson.model.Queue.WaitingItem
import hudson.triggers.SafeTimerTask
import java.text.DateFormat
import java.util.concurrent.TimeUnit
/**
* Spits out the load information.
*
* <p>
* I'm using this code to design the auto scaling feature.
* In future this might be useful data to expose to the UI.
*
* @author Kohsuke Kawaguchi
*/
public class LoadMonitorImpl extends SafeTimerTask {
private final File dataFile;
private List<String> labels;
public LoadMonitorImpl(File dataFile) {
this.dataFile = dataFile;
labels = Jenkins.getInstance().labels*.name;
printHeaders();
Timer.get().scheduleAtFixedRate(this,0,10*1000, TimeUnit.MILLISECONDS);
}
private String quote(Object s) { "\"${s}\""; }
protected void printHeaders() {
def headers = ["# of executors","# of busy executors","BuildableItems in Q","BuildableItem avg wait time"];
def data = ["timestamp"];
data += headers;
data += ["WaitingItems in Q","BlockedItems in Q"];
for( String label : labels)
data += headers.collect { "${it} (${label}}" }
dataFile.append(data.collect({ quote(it) }).join(",")+"\n");
}
@Override
protected void doRun() {
def now = new Date();
def data = [];
data.add(quote(FORMATTER.format(now)));
def h = Jenkins.getInstance();
def items = h.queue.items;
def filterByType = {Class type -> items.findAll { type.isInstance(it) } }
def builder = {List<Computer> cs, Closure itemFilter ->
// number of total executor, number of busy executor
data.add(cs.sum { it.isOffline() ? 0 : it.numExecutors });
data.add(cs.sum {Computer c ->
c.executors.findAll { !it.isIdle() }.size()
});
// queue statistics
def is = filterByType(BuildableItem).findAll(itemFilter);
data.add(is.size());
data.add(is.sum {BuildableItem bi -> now.time - bi.buildableStartMilliseconds }?:0 / Math.max(1,is.size()) );
};
// for the whole thing
builder(Arrays.asList(h.computers),{ it->true });
data.add(filterByType(WaitingItem).size());
data.add(filterByType(BlockedItem).size());
// per label stats
for (String label : labels) {
Label l = h.getLabel(label)
builder(l.nodes.collect { it.toComputer() }) { BuildableItem bi -> bi.task.assignedLabel==l };
}
dataFile.append(data.join(",")+"\n");
}
private static final DateFormat FORMATTER = DateFormat.getDateTimeInstance();
}
new LoadMonitorImpl(new File("/files/hudson/load.txt"));
package jenkins.util.groovy
import lib.FormTagLib
import lib.LayoutTagLib
import org.kohsuke.stapler.jelly.groovy.JellyBuilder
import org.kohsuke.stapler.jelly.groovy.Namespace
import lib.JenkinsTagLib
/**
* Base class for utility classes for Groovy view scripts
* <p />
* Usage from script of a subclass, say ViewHelper:
* <p />
* <tt>new ViewHelper(delegate).method();</tt>
* <p />
* see <tt>ModularizeViewScript</tt> in ui-samples for an example how to use this class.
*
* @author Stefan Wolf (wolfs)
*/
abstract class AbstractGroovyViewModule {
JellyBuilder builder
FormTagLib f
LayoutTagLib l
JenkinsTagLib t
Namespace st
public AbstractGroovyViewModule(JellyBuilder b) {
builder = b
f= builder.namespace(FormTagLib)
l=builder.namespace(LayoutTagLib)
t=builder.namespace(JenkinsTagLib)
st=builder.namespace("jelly:stapler")
}
def methodMissing(String name, args) {
builder.invokeMethod(name,args)
}
def propertyMissing(String name) {
builder.getProperty(name)
}
def propertyMissing(String name, value) {
builder.setProperty(name, value)
}
}
package jenkins.util.groovy;
import groovy.lang.GroovyObjectSupport;
import lib.FormTagLib;
import lib.LayoutTagLib;
import org.kohsuke.stapler.jelly.groovy.JellyBuilder;
import org.kohsuke.stapler.jelly.groovy.Namespace;
import lib.JenkinsTagLib;
/**
* Base class for utility classes for Groovy view scripts
* <p />
* Usage from script of a subclass, say ViewHelper:
* <p />
* <tt>new ViewHelper(delegate).method();</tt>
* <p />
* see <tt>ModularizeViewScript</tt> in ui-samples for an example how to use
* this class.
*/
public abstract class AbstractGroovyViewModule extends GroovyObjectSupport {
public JellyBuilder builder;
public FormTagLib f;
public LayoutTagLib l;
public JenkinsTagLib t;
public Namespace st;
public AbstractGroovyViewModule(JellyBuilder b) {
builder = b;
f = builder.namespace(FormTagLib.class);
l = builder.namespace(LayoutTagLib.class);
t = builder.namespace(JenkinsTagLib.class);
st = builder.namespace("jelly:stapler");
}
public Object methodMissing(String name, Object args) {
return builder.invokeMethod(name, args);
}
public Object propertyMissing(String name) {
return builder.getProperty(name);
}
public void propertyMissing(String name, Object value) {
builder.setProperty(name, value);
}
}
......@@ -722,34 +722,6 @@ THE SOFTWARE.
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-jenkins-dev-plugin</artifactId>
</plugin>
<!--<plugin>
<groupId>org.jvnet.fix1600</groupId>
<artifactId>fix1600</artifactId>
<executions>
<execution>
<goals>
<goal>fix</goal>
</goals>
</execution>
</executions>
</plugin>-->
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>generateStubs</goal>
<goal>compile</goal>
<goal>generateTestStubs</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<extensions>
......
......@@ -244,7 +244,6 @@ THE SOFTWARE.
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<!-- version specified in grandparent pom -->
<executions>
<execution>
<id>default</id>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册