我尽力创建自定义while循环,但结果徒劳无功。 有没有人成功在NANT中创建自定义while循环?
答案 0 :(得分:6)
您可以创建自定义任务:
<target name="sample">
<property name="foo.value" value="0"/>
<while property="foo.value" equals="0">
<do>
<echo message="${foo.value}"/>
<property name="foo.value" value="${int::parse(foo.value) + 1}"/>
</do>
</while>
</target>
<script language="C#" prefix="directory">
<code>
<![CDATA[
[TaskName("while")]
public class WhileTask : TaskContainer
{
private TaskContainer _doStuff;
private string _propertyName;
private string _equals;
private string _notEquals;
[BuildElement("do")]
public TaskContainer StuffToDo
{
get
{
return this._doStuff;
}
set
{
this._doStuff = value;
}
}
[TaskAttribute("property")]
public string PropertyName
{
get
{
return this._propertyName;
}
set
{
this._propertyName = value;
}
}
[TaskAttribute("equals")]
public string Equals
{
get
{
return this._equals;
}
set
{
this._equals = value;
}
}
[TaskAttribute("notequals")]
public string NotEquals
{
get
{
return this._notEquals;
}
set
{
this._notEquals = value;
}
}
protected override void ExecuteTask()
{
while (this.IsTrue())
{
this._doStuff.Execute();
}
}
private bool IsTrue()
{
if (!string.IsNullOrEmpty(this.Equals))
{
return this.Properties[this.PropertyName] == this.Equals;
}
return this.Properties[this.PropertyName] != this.NotEquals;
}
}
]]>
</code>
</script>
答案 1 :(得分:5)
查看NAnt当前可用任务的列表,它看起来像而不再受支持(http://nant.sourceforge.net/release/latest/help/tasks/)
所以我认为如何进行自定义while循环的最简单,最有效的方法是递归。
例如,像这样:
<property name="count" value="120" />
<target name="wait">
<if test="${int::parse(count) > 0}" >
<property name="count" value="${int::parse(count) - 1}" />
<call target="wait"/>
</if>
</target>
此致
马立克
答案 2 :(得分:3)
这是另一个在NAnt中实现的简单而有效的while循环版本的例子。
<?xml version="1.0"?>
<project name="whiletask" xmlns="http://tempuri.org/nant-donotuse.xsd">
<script language="C#" prefix="loop">
<code>
<![CDATA[
/// <summary>
/// A while loop task. Will continuelly execute the task while the <c>test</c> is <c>empty</c>
/// or evalutes to <c>true</c>.
/// </summary>
[TaskName("while")]
public class WhileTask : TaskContainer
{
private string _test;
private TaskContainer _childTasks;
/// <summary>
/// The expression to test each iteration. If empty, then always evalutes to true (i.e. infinite loop.)
/// </summary>
[TaskAttribute("test", ExpandProperties = false)]
public string Test
{
get { return _test; }
set { _test = NAnt.Core.Util.StringUtils.ConvertEmptyToNull(value); }
}
/// <summary>
/// Superficial to ensure the XML schema is rendered correctly for this task. It will get executed
/// if tasks exist within it.
/// </summary>
[BuildElement("do")]
public TaskContainer ChildTasks
{
get { return _childTasks; }
set { _childTasks = value; }
}
/// <summary>
/// Executes the while loop while the <c>test</c> evalutes to true or <c>test</c> is empty.
/// </summary>
protected override void ExecuteTask()
{
while (this.Test == null
|| bool.Parse(Project.ExpandProperties(this.Test, this.Location)))
{
if (this._childTasks != null)
{
this._childTasks.Execute();
}
else
{
base.ExecuteTask();
}
}
}
}
]]>
</code>
</script>
<property name="i" value="0" />
<while test="${int::parse(i) <= 10}">
<echo message="${i}" />
<property name="i" value="${int::parse(i)+1}" />
</while>
</project>
答案 3 :(得分:1)
有很多方法可以做到这一点。我写了一些类似于Cao的东西,它触发了一个属性为true,所以条件可以像你喜欢的那样复杂,如果它是动态的,那么每个循环都会计算值,当你调用函数时它很方便。检查文件是否存在。我还添加了简单的break和continue控件。它也可以作为无限循环运行,没有属性,当你想要退出大量条件时(在这种情况下使用'if'with break / continue或者 - 在我的情况下 - 我想运行任务直到它被例外,然后处理是使用failonerror或trycatch块。
这里有一些Nant脚本,显示了从10开始倒计时的两种方法:
<property name="greaterthanzero" value="${int::parse(count) > 0}" dynamic="true"/>
<property name="count" value="10" />
<while propertytrue="greaterthanzero" >
<echo>CountDown = ${count}</echo>
<property name="count" value="${int::parse(count) - 1}" />
</while>
<property name="count" value="10" />
<while>
<if test="${int::parse(count) > 0}" >
<echo>CountDown = ${count}</echo>
<property name="count" value="${int::parse(count) - 1}" />
<continue/>
</if>
<break/>
</while>
这是一个真实的例子,我用来等待删除锁文件:
<property name="count" value="0" />
<property name="lockfileexists" value="${file::exists(lockfile)}" dynamic="true"/>
<while propertytrue="lockfileexists" >
<sleep seconds="1" />
<property name="count" value="${int::parse(count) + 1}" />
<if test="${count == '15'}" >
<echo>Timed out after 15 seconds</echo>
<break/>
</if>
</while>
这是任务代码:
<script language="C#" prefix="loops">
<code>
<![CDATA[
public class LoopBreakException : Exception {}
public class LoopContinueException : Exception {}
[TaskName("break")]
public class BreakTask : Task
{
protected override void ExecuteTask()
{
throw new LoopBreakException();
}
}
[TaskName("continue")]
public class ContinueTask : Task
{
protected override void ExecuteTask()
{
throw new LoopContinueException();
}
}
[TaskName("while")]
public class WhileTask : TaskContainer
{
[TaskAttribute("propertytrue")]
public string PropertyName { get; set; }
protected bool CheckCondition()
{
if (!string.IsNullOrEmpty(PropertyName))
{
try
{
return bool.Parse(Properties[PropertyName]);
}
catch (Exception ex)
{
throw new BuildException(string.Format("While Property '{0}' not found", PropertyName), Location);
}
}
//for infinite loops
return true;
}
protected override void ExecuteTask()
{
while (CheckCondition())
{
try
{
ExecuteChildTasks();
}
catch (LoopContinueException)
{
continue;
}
catch (LoopBreakException)
{
break;
}
}
}
}
]]>
</code>
答案 4 :(得分:0)
没有其他信息,有一个关于创建自定义NAnt任务的教程here。
该文章的一个好处是作者建议使用调试自定义任务的两种方法:
将程序集(和pdb)文件复制到NAnt bin目录。在Visual Studio中打开包含任务源的解决方案。放置断点。转到项目属性并打开“调试”页面。将Debug Mode更改为Program,将Start Application更改为NAnt可执行文件的路径(例如C:\ Program Files \ NAnt \ bin \ NAnt.exe)。然后设置工作目录和/或命令行参数,以便NAnt将获取您的构建文件。点击“运行”即可离开。
放置System.Diagnostics.Debbugger.Break();在你要破解的行之前的代码中。重新编译项目并将程序集(和pdb)复制到NAnt bin目录。当你运行你的NAnt脚本时,你应该得到一个弹出框,要求你选择一个调试器。
还有另一个教程here。
或者,您可以用foreach来表达您的问题吗?
答案 5 :(得分:0)
我自己创建了自定义任务。但似乎在NANT中使用嵌套循环存在一些问题。
基本上我正在尝试使用嵌套循环。在foreach内部的while循环或在另一个foreach内的foreach。但在这两种情况下,循环都执行当前目标&amp;每次迭代时调用当前目标的目标,而不是第二次循环内的主体。
此致
Sarathy
答案 6 :(得分:0)
以下是在nant中编写WHILE循环的一种方法,没有自定义任务或script
元素,在failonerror="false"
循环中利用foreach
。
<property name="n" value="10000" /><!-- this would be inefficient if "n" is very large -->
<property name="i" value="0" />
<foreach item="String" in="${string::pad-right(' ', int::parse(n), ',')}" delim="," property="val" failonerror="false" >
<if test="${int::parse(i) > 3}"><!-- put our exit condition here -->
<fail message="condition met, exit loop early" />
</if>
<echo message="i: ${i}" />
<property name="i" value="${int::parse(i) + 1}" />
</foreach>
执行上述WHILE循环的输出如下。请注意,由于failonerror="false"
fail
调用不会终止脚本:
[echo] i: 0
[echo] i: 1
[echo] i: 2
[echo] i: 3
[foreach] myscript.nant(24,18):
[foreach] condition met, exit loop early
BUILD SUCCEEDED - 1 non-fatal error(s), 0 warning(s)
我基于WHILE循环基于如何构建FOR循环,这是上面代码的略微简化版本:
<property name="n" value="5" />
<property name="i" value="0" />
<foreach item="String" in="${string::pad-right(' ', int::parse(n), ',')}" delim="," property="val" >
<echo message="i: ${i}" />
<property name="i" value="${int::parse(i) + 1}" /> <!-- increment "i" -->
</foreach>
FOR循环的输出如下所示:
[echo] i: 0
[echo] i: 1
[echo] i: 2
[echo] i: 3
[echo] i: 4
BUILD SUCCEEDED