001// *************************************************************************************************************************** 002// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * 003// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * 004// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * 005// * with the License. You may obtain a copy of the License at * 006// * * 007// * http://www.apache.org/licenses/LICENSE-2.0 * 008// * * 009// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * 010// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * 011// * specific language governing permissions and limitations under the License. * 012// *************************************************************************************************************************** 013package org.apache.juneau.svl.vars; 014 015import static org.apache.juneau.common.internal.ArgUtils.*; 016 017import org.apache.juneau.svl.*; 018 019/** 020 * A basic if-else logic variable resolver. 021 * 022 * <p> 023 * The format for this var is one of the following: 024 * <ul> 025 * <li><js>"$IF{booleanArg,thenValue}"</js> 026 * <li><js>"$IF{booleanArg,thenValue,elseValue}"</js> 027 * </ul> 028 * 029 * <p> 030 * The boolean argument is any string. 031 * <br>The following values are interpreted as <jk>true</jk>: <js>"true"</js>,<js>"TRUE"</js>,<js>"t"</js>, 032 * <js>"T"</js>,<js>"1"</js>. 033 * <br>All else are interpreted as <jk>false</jk> 034 * 035 * <h5 class='section'>Example:</h5> 036 * <p class='bjava'> 037 * <jc>// Create a variable resolver that resolves system properties and $IF vars.</jc> 038 * VarResolver <jv>varResolver</jv> = VarResolver.<jsm>create</jsm>().vars(IfVar.<jk>class</jk>, SystemPropertiesVar.<jk>class</jk>).build(); 039 * 040 * <jc>// Use it!</jc> 041 * System.<jsf>out</jsf>.println(<jv>varResolver</jv>.resolve(<js>"Property $IF{$S{someBooleanFlag},IS,IS NOT} set!"</js>)); 042 * </p> 043 * 044 * <p> 045 * Since this is a {@link MultipartVar}, any variables contained in the result will be recursively resolved. 046 * <br>Likewise, if the arguments contain any variables, those will be resolved before they are passed to this var. 047 * 048 * <h5 class='section'>See Also:</h5><ul> 049 * <li class='link'><a class="doclink" href="../../../../../index.html#jm.SimpleVariableLanguage">Simple Variable Language</a> 050 * </ul> 051 */ 052public class IfVar extends MultipartVar { 053 054 /** The name of this variable. */ 055 public static final String NAME = "IF"; 056 057 /** 058 * Constructor. 059 */ 060 public IfVar() { 061 super(NAME); 062 } 063 064 @Override /* MultipartVar */ 065 public String resolve(VarResolverSession session, String[] args) { 066 assertArg(args.length >= 2 && args.length <= 3, "Invalid number of arguments passed to $IF var. Must be either $IF{booleanArg,thenValue} or $IF{booleanArg,thenValue,elseValue}"); 067 068 String b = args[0].toLowerCase(); 069 if ("1".equals(b) || "t".equals(b) || "true".equals(b)) 070 return args[1]; 071 return args.length == 2 ? "" : args[2]; 072 } 073}