01: /********************************************************************************
02: * CruiseControl, a Continuous Integration Toolkit
03: * Copyright (c) 2001-2003, ThoughtWorks, Inc.
04: * 200 E. Randolph, 25th Floor
05: * Chicago, IL 60601 USA
06: * All rights reserved.
07: *
08: * Redistribution and use in source and binary forms, with or without
09: * modification, are permitted provided that the following conditions
10: * are met:
11: *
12: * + Redistributions of source code must retain the above copyright
13: * notice, this list of conditions and the following disclaimer.
14: *
15: * + Redistributions in binary form must reproduce the above
16: * copyright notice, this list of conditions and the following
17: * disclaimer in the documentation and/or other materials provided
18: * with the distribution.
19: *
20: * + Neither the name of ThoughtWorks, Inc., CruiseControl, nor the
21: * names of its contributors may be used to endorse or promote
22: * products derived from this software without specific prior
23: * written permission.
24: *
25: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26: * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27: * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28: * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
29: * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31: * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32: * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33: * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34: * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35: * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36: ********************************************************************************/package net.sourceforge.cruisecontrol.publishers;
37:
38: import net.sourceforge.cruisecontrol.CruiseControlException;
39: import net.sourceforge.cruisecontrol.Publisher;
40: import net.sourceforge.cruisecontrol.util.Commandline;
41: import net.sourceforge.cruisecontrol.util.ValidationHelper;
42:
43: import org.apache.log4j.Logger;
44: import org.jdom.Element;
45:
46: import java.io.IOException;
47:
48: /**
49: * Used to execute a custom publishing command
50: *
51: * @author <a href="orenmnero@sourceforge.net">Oren Miller</a>
52: */
53: public class ExecutePublisher implements Publisher {
54:
55: private static final Logger LOG = Logger
56: .getLogger(ExecutePublisher.class);
57:
58: private String commandString;
59:
60: public void setCommand(String commandString) {
61: this .commandString = commandString;
62: }
63:
64: /**
65: * Called after the configuration is read to make sure that all the mandatory parameters
66: * were specified..
67: *
68: * @throws CruiseControlException if there was a configuration error.
69: */
70: public void validate() throws CruiseControlException {
71: ValidationHelper.assertIsSet(commandString, "command", this
72: .getClass());
73: }
74:
75: public void publish(Element cruisecontrolLog)
76: throws CruiseControlException {
77:
78: Commandline command = new Commandline(commandString);
79: LOG.info("executing command: " + command);
80:
81: try {
82: Process p = command.execute();
83: p.waitFor();
84: LOG
85: .debug("waitfor() ended with exit code "
86: + p.exitValue());
87: } catch (IOException e) {
88: throw new CruiseControlException(e);
89: } catch (InterruptedException e) {
90: throw new CruiseControlException(e);
91: }
92: }
93:
94: }
|