/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ package groovy.transform.stc; import org.codehaus.groovy.ast.ASTNode; import org.codehaus.groovy.ast.ClassNode; import org.codehaus.groovy.ast.MethodNode; import org.codehaus.groovy.ast.tools.GenericsUtils; import org.codehaus.groovy.control.CompilationUnit; import org.codehaus.groovy.control.SourceUnit; import java.util.ArrayList; import java.util.List; /** * <p>A closure parameter hint class that is convenient if you want to use a String representation * of the signature. It makes use of the {@link ClosureParams#options() option strings}, where * each string corresponds to a single signature.</p> * * <p>The following example describes a closure as accepting a single signature (List<T> list ->):</p> * * <code>public <T> T apply(T src, @ClosureParams(value=FromString.class, options="List<T>" Closure<T> cl)</code> * * <p>The next example describes a closure as accepting two signatures (List<T> list ->) and (T t ->):</p> * * <code>public <T> T apply(T src, @ClosureParams(value=FromString.class, options={"List<T>","T"} Closure<T> cl)</code> * * <p>It is advisable not to use this hint as a replacement for the various {@link FirstParam}, {@link SimpleType}, * ... hints because it is actually much slower. Using this hint should therefore be limited * to cases where it's not possible to express the signature using the existing hints.</p> * * @author Cédric Champeau * @since 2.3.0 */ public class FromString extends ClosureSignatureHint { @Override public List<ClassNode[]> getClosureSignatures(final MethodNode node, final SourceUnit sourceUnit, final CompilationUnit compilationUnit, final String[] options, final ASTNode usage) { List<ClassNode[]> list = new ArrayList<ClassNode[]>(options.length); for (String option : options) { list.add(parseOption(option, sourceUnit, compilationUnit, node, usage)); } return list; } /** * Parses a string representing a type, that must be aligned with the current context. * For example, <i>"List<T>"</i> must be converted into the appropriate ClassNode * for which <i>T</i> matches the appropriate placeholder. * * * @param option a string representing a type * @param sourceUnit the source unit (of the file being compiled) * @param compilationUnit the compilation unit (of the file being compiled) * @param mn the method node * @param usage * @return a class node if it could be parsed and resolved, null otherwise */ private static ClassNode[] parseOption(final String option, final SourceUnit sourceUnit, final CompilationUnit compilationUnit, final MethodNode mn, final ASTNode usage) { return GenericsUtils.parseClassNodesFromString(option, sourceUnit, compilationUnit, mn, usage); } }