1 package org.apache.maven.werkz.jelly;
2
3 /* ====================================================================
4 * Licensed to the Apache Software Foundation (ASF) under one or more
5 * contributor license agreements. See the NOTICE file distributed with
6 * this work for additional information regarding copyright ownership.
7 * The ASF licenses this file to You under the Apache License, Version 2.0
8 * (the "License"); you may not use this file except in compliance with
9 * the License. You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ====================================================================
19 */
20
21 /*
22 $Id: WerkzTagSupport.java 517014 2007-03-11 21:15:50Z ltheussl $
23
24 Copyright 2002 (C) The Werken Company. All Rights Reserved.
25
26 Redistribution and use of this software and associated documentation
27 ("Software"), with or without modification, are permitted provided
28 that the following conditions are met:
29
30 1. Redistributions of source code must retain copyright
31 statements and notices. Redistributions must also contain a
32 copy of this document.
33
34 2. Redistributions in binary form must reproduce the
35 above copyright notice, this list of conditions and the
36 following disclaimer in the documentation and/or other
37 materials provided with the distribution.
38
39 3. The name "werkz" must not be used to endorse or promote
40 products derived from this Software without prior written
41 permission of The Werken Company. For written permission,
42 please contact bob@werken.com.
43
44 4. Products derived from this Software may not be called "werkz"
45 nor may "werkz" appear in their names without prior written
46 permission of The Werken Company. "werkz" is a registered
47 trademark of The Werken Company.
48
49 5. Due credit should be given to "the werkz project"
50 ( http://werkz.werken.com/ ).
51
52 THIS SOFTWARE IS PROVIDED BY THE WERKEN COMPANY AND CONTRIBUTORS
53 ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
54 NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
55 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
56 THE WERKEN COMPANY OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
57 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
58 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
59 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
60 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
61 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
62 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
63 OF THE POSSIBILITY OF SUCH DAMAGE.
64
65 */
66
67 import org.apache.commons.jelly.JellyTagException;
68 import org.apache.commons.jelly.TagSupport;
69 import org.apache.maven.werkz.Goal;
70 import org.apache.maven.werkz.WerkzProject;
71
72 /**
73 * The abstract base class for Werkz child tags
74 *
75 * @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
76 * @version $Revision: 1.2.2.1 $
77 */
78 public abstract class WerkzTagSupport
79 extends TagSupport
80 {
81
82 public WerkzTagSupport( boolean trim )
83 {
84 super( trim );
85 }
86
87 public WerkzTagSupport()
88 {
89 }
90
91 // Implementation methods
92 //-------------------------------------------------------------------------
93
94 /**
95 * @return the goal of the given name or
96 * throws a JellyExceptoin if the goal could not be found
97 */
98 protected Goal getGoal( String name )
99 throws JellyTagException
100 {
101 WerkzProject project = getProject();
102 if ( project == null )
103 {
104 throw new JellyTagException( "Must use this tag inside a <maven:project> tag" );
105 }
106
107 // #### allow lazy creation of callbacks before the goal is defined...
108 Goal goal = project.getGoal( name, true );
109 if ( goal == null )
110 {
111 throw new JellyTagException( "No such target name: " + name );
112 }
113 return goal;
114 }
115
116 /**
117 * @return the goal manager instance
118 */
119 protected WerkzProject getProject()
120 {
121 WerkzProject answer = null;
122 ProjectTag tag = (ProjectTag) findAncestorWithClass( ProjectTag.class );
123 if ( tag != null )
124 {
125 answer = tag.getProject();
126 }
127 if ( answer == null )
128 {
129 answer = (WerkzProject) context.findVariable( "org.apache.commons.jelly.werkz.Project" );
130 }
131 return answer;
132 }
133
134 }