2015-03-18 11:31:47 -04:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
2015-03-18 13:32:24 -04:00
|
|
|
<!--
|
2017-12-20 14:18:39 -05:00
|
|
|
Copyright (C) 2015, 2017 R-T Specialty, LLC.
|
2015-03-18 13:32:24 -04:00
|
|
|
|
|
|
|
This file is part of tame-core.
|
|
|
|
|
|
|
|
tame-core is free software: you can redistribute it and/or modify it
|
2018-01-26 11:13:33 -05:00
|
|
|
under the terms of the GNU General Public License as
|
2015-03-18 13:32:24 -04:00
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program 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. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
2015-03-18 11:31:47 -04:00
|
|
|
<package xmlns="http://www.lovullo.com/rater"
|
2018-04-06 11:05:27 -04:00
|
|
|
xmlns:t="http://www.lovullo.com/rater/apply-template"
|
|
|
|
xmlns:c="http://www.lovullo.com/calc"
|
|
|
|
core="true"
|
|
|
|
desc="Date and time">
|
2013-02-13 09:27:33 -05:00
|
|
|
|
2015-03-18 11:31:47 -04:00
|
|
|
<import package="base" />
|
2013-02-13 09:27:33 -05:00
|
|
|
|
2018-04-06 11:05:27 -04:00
|
|
|
<import package="assert" />
|
|
|
|
<import package="vector/cmatch" />
|
|
|
|
|
2013-02-13 09:27:33 -05:00
|
|
|
|
2017-04-04 10:29:24 -04:00
|
|
|
Providing the current timestamp externally allows the system to be
|
|
|
|
wholly deterministic.
|
|
|
|
It also captures the state of the data in time,
|
|
|
|
so re-calculating in the future (e.g. using the summary pages)
|
|
|
|
will yield the same result.
|
|
|
|
|
|
|
|
<param name="timestamp_current" type="integer" default="0"
|
|
|
|
desc="Unix timestamp representing the current time of the
|
|
|
|
system (clock time), as it should be perceived" />
|
|
|
|
|
2018-04-06 11:05:27 -04:00
|
|
|
<t:assert failure="Missing Unix timestamp for timestamp_current">
|
|
|
|
<t:match-gt on="timestamp_current" value="ZERO" />
|
|
|
|
</t:assert>
|
|
|
|
|
|
|
|
|
2017-04-04 10:29:24 -04:00
|
|
|
This system does not handle its own arthiemtic to figure out the
|
|
|
|
current date components from the given timestamp.
|
|
|
|
|
|
|
|
<param name="timestamp_year" type="integer" default="0"
|
|
|
|
desc="Current year (clock time), as it should be perceived" />
|
|
|
|
|
|
|
|
<param name="timestamp_month" type="integer" default="0"
|
|
|
|
desc="Current month (clock time), as it should be perceived;
|
|
|
|
1-indexed" />
|
|
|
|
|
|
|
|
<param name="timestamp_day" type="integer" default="0"
|
|
|
|
desc="Current day (clock time), as it should be perceived;
|
|
|
|
1-indexed" />
|
|
|
|
|
|
|
|
|
2013-02-13 09:27:33 -05:00
|
|
|
<!--
|
|
|
|
Determines how many years the given date is relative to the current date
|
|
|
|
|
2017-04-04 10:29:24 -04:00
|
|
|
Note that a positive number will be returned if the given date is
|
|
|
|
in the past, negative if in the future.
|
2013-02-13 09:27:33 -05:00
|
|
|
-->
|
2017-04-04 10:29:24 -04:00
|
|
|
<template name="_age-years_" desc="Age in years of the given date relative to the current">
|
2015-03-18 11:31:47 -04:00
|
|
|
<param name="@generates@" desc="Generator variable, per index" />
|
|
|
|
<param name="@yearset@" desc="Set of years to iterate on" />
|
|
|
|
<param name="@sym@" desc="Generator symbol" />
|
|
|
|
<param name="@when@" desc="Only when this boolean value is true" />
|
|
|
|
<param name="@default@" desc="Default age when yearset values are empty" />
|
2013-02-13 09:27:33 -05:00
|
|
|
|
2015-03-18 11:31:47 -04:00
|
|
|
<param name="@yields@" desc="Variable to yield into">
|
|
|
|
<text>_</text>
|
|
|
|
<param-value name="@generates@" />
|
|
|
|
</param>
|
2013-02-13 09:27:33 -05:00
|
|
|
|
|
|
|
|
2015-03-18 11:31:47 -04:00
|
|
|
<rate yields="@yields@">
|
2013-02-13 09:27:33 -05:00
|
|
|
<c:sum of="@yearset@" index="k" generates="@generates@" desc="Relative age" sym="@sym@">
|
|
|
|
<c:cases>
|
2015-03-18 11:31:47 -04:00
|
|
|
<if name="@when@">
|
2013-02-13 09:27:33 -05:00
|
|
|
<c:case>
|
|
|
|
<c:when name="@when@" index="k">
|
|
|
|
<c:eq>
|
|
|
|
<c:value-of name="FALSE" />
|
|
|
|
</c:eq>
|
|
|
|
</c:when>
|
|
|
|
|
|
|
|
<!-- return a default, or 0 if no default is provided -->
|
2015-03-18 11:31:47 -04:00
|
|
|
<if name="@default@">
|
2013-02-13 09:27:33 -05:00
|
|
|
<c:value-of name="@default@" index="k" />
|
2015-03-18 11:31:47 -04:00
|
|
|
</if>
|
|
|
|
<unless name="@default@">
|
2013-02-13 09:27:33 -05:00
|
|
|
<c:const value="0" type="integer" desc="Condition not met, but no default" />
|
2015-03-18 11:31:47 -04:00
|
|
|
</unless>
|
2013-02-13 09:27:33 -05:00
|
|
|
</c:case>
|
2015-03-18 11:31:47 -04:00
|
|
|
</if>
|
2013-02-13 09:27:33 -05:00
|
|
|
|
|
|
|
<!-- if no @when@, then we'll always do this -->
|
|
|
|
<c:otherwise>
|
|
|
|
<c:cases>
|
|
|
|
<c:case>
|
|
|
|
<c:when name="@yearset@" index="k">
|
|
|
|
<c:gt>
|
|
|
|
<c:const value="0" type="integer" desc="Only calculate difference if a value is available" />
|
|
|
|
</c:gt>
|
|
|
|
</c:when>
|
|
|
|
|
|
|
|
<c:sum label="Calculate by subtracting the given year from the current year">
|
2017-04-04 10:29:24 -04:00
|
|
|
<c:value-of name="timestamp_year" />
|
2013-02-13 09:27:33 -05:00
|
|
|
|
|
|
|
<c:product>
|
|
|
|
<c:value-of name="NEGATE" />
|
|
|
|
<c:value-of name="@yearset@" index="k" />
|
|
|
|
</c:product>
|
|
|
|
</c:sum>
|
|
|
|
</c:case>
|
|
|
|
|
|
|
|
<!-- we don't have a value; just use the default age we were given -->
|
2015-03-18 11:31:47 -04:00
|
|
|
<if name="@default@">
|
2013-02-13 09:27:33 -05:00
|
|
|
<c:otherwise>
|
|
|
|
<c:value-of name="@default@" index="k" />
|
|
|
|
</c:otherwise>
|
2015-03-18 11:31:47 -04:00
|
|
|
</if>
|
2013-02-13 09:27:33 -05:00
|
|
|
</c:cases>
|
|
|
|
</c:otherwise>
|
|
|
|
</c:cases>
|
|
|
|
</c:sum>
|
2015-03-18 11:31:47 -04:00
|
|
|
</rate>
|
|
|
|
</template>
|
|
|
|
</package>
|
|
|
|
|