2012-09-16 13:42:41 +00:00
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
-->
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Language" content="en-us">
|
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/style.css">
|
|
|
|
<title>The Command Line Processor Plugin: ArgumentProcessor</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<h1>The Command Line Processor Plugin: ArgumentProcessor</h1>
|
|
|
|
|
2018-02-08 22:52:33 +01:00
|
|
|
<h2 id="definition">What is an ArgumentProcessor?</h2>
|
2012-09-16 13:42:41 +00:00
|
|
|
|
|
|
|
<p>
|
|
|
|
An <code>ArgumentProcessor</code> is a parser of command line argument which is
|
|
|
|
then call before and after the build file is being parsed. Third party
|
|
|
|
libraries may then be able to have custom argument line argument which modify
|
|
|
|
Ant behaviour.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
An <code>ArgumentProcessor</code> is called each time Ant parse an unknown
|
|
|
|
argument, an <code>ArgumentProcessor</code> doesn't take precedence over Ant to
|
2018-02-28 07:58:59 +01:00
|
|
|
parse already supported options. It is then recommended to third
|
|
|
|
party <code>ArgumentProcessor</code> implementation to chose specific 'enough'
|
2012-09-16 13:42:41 +00:00
|
|
|
argument name, avoiding for instance one letter arguments.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
It is also called at the different phases so different behaviour can be
|
|
|
|
implemented. It is called just after every arguments are parsed, just
|
|
|
|
before the project is being configured (the build file being parsed),
|
|
|
|
and just after. Some of the methods to be implemented return a boolean:
|
2018-02-28 07:58:59 +01:00
|
|
|
if <q>true</q> is returned, Ant will terminate immediately, without
|
2012-09-16 13:42:41 +00:00
|
|
|
error.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Being called during all these phases, an <code>ArgumentProcessor</code>
|
2018-02-28 07:58:59 +01:00
|
|
|
can just print some specific system properties and quit
|
|
|
|
(like <code>-diagnose</code>), or print some specific properties of a
|
|
|
|
project after being parsed and quit (like <code>-projectHelp</code>),
|
|
|
|
or just set some custom properties on the project and let it run.
|
2012-09-16 13:42:41 +00:00
|
|
|
</p>
|
|
|
|
|
2018-02-08 22:52:33 +01:00
|
|
|
<h2 id="repository">How to register it's own ArgumentProcessor</h2>
|
2012-09-16 13:42:41 +00:00
|
|
|
|
|
|
|
<p>First, the <code>ArgumentProcessor</code> must be an implementation of
|
|
|
|
<code>org.apache.tools.ant.ArgumentProcessor</code>.
|
|
|
|
</p>
|
|
|
|
|
2018-02-28 07:58:59 +01:00
|
|
|
<p>Then to declare it: create a
|
|
|
|
file <samp>META-INF/services/org.apache.tools.ant.ArgumentProcessor</samp>
|
|
|
|
which contains only one line the fully qualified name of the class of the
|
2012-09-16 13:42:41 +00:00
|
|
|
implementation. This file together with the implementation class need then to
|
|
|
|
be found in Ant's classpath.
|
|
|
|
</p>
|
|
|
|
</body>
|
|
|
|
</html>
|