/* * Copyright (c) 1998-2011 Caucho Technology -- all rights reserved * * This file is part of Resin(R) Open Source * * Each copy or derived work must preserve the copyright notice and this * notice unmodified. * * Resin Open Source is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Resin Open Source is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty * of NON-INFRINGEMENT. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with Resin Open Source; if not, write to the * * Free Software Foundation, Inc. * 59 Temple Place, Suite 330 * Boston, MA 02111-1307 USA * * @author Emil Ong */ package com.caucho.maven; import com.caucho.env.repository.CommitBuilder; import com.caucho.server.admin.DeployClient; import com.caucho.server.admin.TagResult; import com.caucho.server.admin.WebAppDeployClient; import com.caucho.server.admin.StatusQuery; import com.caucho.vfs.Path; import com.caucho.vfs.Vfs; import java.io.IOException; import java.util.HashMap; import java.util.Properties; import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugin.logging.Log; /** * The MavenDeploy * @goal query-tags */ public class MavenQueryTags extends AbstractDeployMojo { private String _pattern; private boolean _printValues = false; public void setPattern(String pattern) { _pattern = pattern; } public String getPattern() { return _pattern; } public void setPrintValues(boolean printValues) { _printValues = printValues; } public boolean getPrintValues() { return _printValues; } protected String getMojoName() { return "resin-query-tags"; } @Override protected void processSystemProperties() throws MojoExecutionException { super.processSystemProperties(); Properties properties = System.getProperties(); String pattern = properties.getProperty("resin.pattern"); if (pattern != null) _pattern = pattern; } @Override protected void printParameters() { super.printParameters(); Log log = getLog(); log.debug(" pattern = " + _pattern); } @Override protected void validate() throws MojoExecutionException { super.validate(); if (_pattern == null && getStage() == null && getVirtualHost() == null && getContextRoot() == null && getVersion() == null) throw new MojoExecutionException("At least one of pattern, stage, virtualHost, contextRoot, or version is required by " + getMojoName()); } /** * Executes the maven resin:run task */ @Override protected void doTask(WebAppDeployClient client) throws MojoExecutionException { Log log = getLog(); String pattern = _pattern; if (pattern == null) { if (getContextRoot() == null) setContextRoot(".*"); CommitBuilder commit = buildVersionedWarTag(); pattern = commit.getId(); } log.debug("Query pattern = '" + pattern + "'"); TagResult []tags = client.queryTags(pattern); for (TagResult tag : tags) { if (_printValues) log.info(tag.getTag() + " -> " + tag.getRoot()); else log.info(tag.getTag()); } } }