mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-03 16:56:54 +00:00
91_watchdog.pm: add regexp2WillReactivate attribute (Forum #113237)
git-svn-id: https://svn.fhem.de/fhem/trunk@22501 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
e732971ae3
commit
bcbe49a79e
@ -19,13 +19,14 @@ watchdog_Initialize($)
|
|||||||
$hash->{NotifyFn} = "watchdog_Notify";
|
$hash->{NotifyFn} = "watchdog_Notify";
|
||||||
no warnings 'qw';
|
no warnings 'qw';
|
||||||
my @attrList = qw(
|
my @attrList = qw(
|
||||||
activateOnStart:0,1
|
activateOnStart:1,0
|
||||||
addStateEvent:0,1
|
addStateEvent:1,0
|
||||||
autoRestart:0,1
|
autoRestart:1,0
|
||||||
disable:0,1
|
disable:1,0
|
||||||
disabledForIntervals
|
disabledForIntervals
|
||||||
execOnReactivate
|
execOnReactivate
|
||||||
regexp1WontReactivate:0,1
|
regexp1WontReactivate:1,0
|
||||||
|
regexp2WillReactivate:1,0
|
||||||
);
|
);
|
||||||
use warnings 'qw';
|
use warnings 'qw';
|
||||||
$hash->{AttrList} = join(" ", @attrList);
|
$hash->{AttrList} = join(" ", @attrList);
|
||||||
@ -123,6 +124,7 @@ watchdog_Notify($$)
|
|||||||
my $ln = $watchdog->{NAME};
|
my $ln = $watchdog->{NAME};
|
||||||
return "" if(IsDisabled($ln) || $watchdog->{STATE} eq "inactive");
|
return "" if(IsDisabled($ln) || $watchdog->{STATE} eq "inactive");
|
||||||
my $dontReAct = AttrVal($ln, "regexp1WontReactivate", 0);
|
my $dontReAct = AttrVal($ln, "regexp1WontReactivate", 0);
|
||||||
|
my $re2act = AttrVal($ln, "regexp2WillReactivate", 0);
|
||||||
|
|
||||||
my $n = $dev->{NAME};
|
my $n = $dev->{NAME};
|
||||||
my $re1 = $watchdog->{RE1};
|
my $re1 = $watchdog->{RE1};
|
||||||
@ -150,7 +152,7 @@ watchdog_Notify($$)
|
|||||||
|
|
||||||
RemoveInternalTimer($watchdog);
|
RemoveInternalTimer($watchdog);
|
||||||
|
|
||||||
if($re1 eq $re2 || $re1 eq ".") {
|
if($re1 eq $re2 || $re1 eq "." || $re2act) {
|
||||||
watchdog_Activate($watchdog);
|
watchdog_Activate($watchdog);
|
||||||
return "";
|
return "";
|
||||||
|
|
||||||
@ -369,7 +371,7 @@ watchdog_Set($@)
|
|||||||
<a name="watchdogattr"></a>
|
<a name="watchdogattr"></a>
|
||||||
<b>Attributes</b>
|
<b>Attributes</b>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a name="#activateOnStart">activateOnStart</a><br>
|
<li><a name="watchdogactivateOnStart">activateOnStart</a><br>
|
||||||
if set, the watchdog will be activated after a FHEM start if appropriate,
|
if set, the watchdog will be activated after a FHEM start if appropriate,
|
||||||
determined by the Timestamp of the Activated and the Triggered readings.
|
determined by the Timestamp of the Activated and the Triggered readings.
|
||||||
Note: since between shutdown and startup events may be missed, this
|
Note: since between shutdown and startup events may be missed, this
|
||||||
@ -380,14 +382,24 @@ watchdog_Set($@)
|
|||||||
<li><a href="#disable">disable</a></li>
|
<li><a href="#disable">disable</a></li>
|
||||||
<li><a href="#disabledForIntervals">disabledForIntervals</a></li>
|
<li><a href="#disabledForIntervals">disabledForIntervals</a></li>
|
||||||
|
|
||||||
<li><a name="regexp1WontReactivate">regexp1WontReactivate</a><br>
|
<li><a name="watchdogregexp1WontReactivate">regexp1WontReactivate</a><br>
|
||||||
When a watchdog is active, a second event matching regexp1 will
|
When a watchdog is active, a second event matching regexp1 will
|
||||||
normally reset the timeout. Set this attribute to prevents this.</li>
|
normally reset the timeout. Set this attribute to prevents this.
|
||||||
|
</li><br>
|
||||||
|
|
||||||
|
<li><a name="watchdogregexp2WillReactivate">regexp2WillReactivate</a><br>
|
||||||
|
Normally after an event matching regexp2 ist received, the watchdog is
|
||||||
|
waiting for an event matching regexp1 to start the countdown. If this
|
||||||
|
attribute set to 1 (the default 0), then after receivig an event
|
||||||
|
matching regexp2 the countdown is reset and started. Note: if regexp1 and
|
||||||
|
regexp2 are identical, or regexp2 is ., then this behavior is default.
|
||||||
|
</li><br>
|
||||||
|
|
||||||
<li><a href="#execOnReactivate">execOnActivate</a>
|
<li><a href="#execOnReactivate">execOnActivate</a>
|
||||||
If set, its value will be executed as a FHEM command when the watchdog is
|
If set, its value will be executed as a FHEM command when the watchdog is
|
||||||
reactivated (after triggering) by receiving an event matching regexp1.
|
reactivated (after triggering) by receiving an event matching regexp1.
|
||||||
</li>
|
</li><br>
|
||||||
|
|
||||||
<li><a href="#autoRestart">autoRestart</a>
|
<li><a href="#autoRestart">autoRestart</a>
|
||||||
When the watchdog has triggered it will be automatically re-set to state
|
When the watchdog has triggered it will be automatically re-set to state
|
||||||
defined again (waiting for regexp1) if this attribute is set to 1.
|
defined again (waiting for regexp1) if this attribute is set to 1.
|
||||||
@ -504,7 +516,7 @@ watchdog_Set($@)
|
|||||||
<a name="watchdogattr"></a>
|
<a name="watchdogattr"></a>
|
||||||
<b>Attribute</b>
|
<b>Attribute</b>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a name="#activateOnStart">activateOnStart</a><br>
|
<li><a name="watchdogactivateOnStart">activateOnStart</a><br>
|
||||||
Falls gesetzt, wird der Watchdog nach FHEM-Neustart aktiviert, je nach
|
Falls gesetzt, wird der Watchdog nach FHEM-Neustart aktiviert, je nach
|
||||||
Zeitstempel der Activated und Triggered Readings. Da zwischen Shutdown
|
Zeitstempel der Activated und Triggered Readings. Da zwischen Shutdown
|
||||||
und Neustart Events verlorengehen können, ist die Voreinstellung 0
|
und Neustart Events verlorengehen können, ist die Voreinstellung 0
|
||||||
@ -515,15 +527,26 @@ watchdog_Set($@)
|
|||||||
<li><a href="#addStateEvent">addStateEvent</a></li>
|
<li><a href="#addStateEvent">addStateEvent</a></li>
|
||||||
<li><a href="#disable">disable</a></li>
|
<li><a href="#disable">disable</a></li>
|
||||||
<li><a href="#disabledForIntervals">disabledForIntervals</a></li>
|
<li><a href="#disabledForIntervals">disabledForIntervals</a></li>
|
||||||
<li><a name="regexp1WontReactivate">regexp1WontReactivate</a><br>
|
<br>
|
||||||
|
|
||||||
|
<li><a name="watchdogregexp1WontReactivate">regexp1WontReactivate</a><br>
|
||||||
Wenn ein Watchdog aktiv ist, wird ein zweites Ereignis das auf regexp1
|
Wenn ein Watchdog aktiv ist, wird ein zweites Ereignis das auf regexp1
|
||||||
passt normalerweise den Timer zurücksetzen. Dieses Attribut wird
|
passt normalerweise den Timer zurücksetzen. Dieses Attribut wird
|
||||||
das verhindern.</li>
|
das verhindern.</li><br>
|
||||||
|
|
||||||
|
<li><a name="watchdogregexp2WillReactivate">regexp2WillReactivate</a><br>
|
||||||
|
In der Voreinstellung wartet der Watchdog nach Empfang eines Events, der
|
||||||
|
auf regexp2 matcht, wieder auf einem Event, was auf regexp1 matcht, um
|
||||||
|
den Rückwärtszähler zu starten. Wenn dieses Attribut
|
||||||
|
gesetzt ist (auf 1), dann wird nach dem Empfang des "regexp2" Events der
|
||||||
|
Zähler ohne auf einem "regexp1" Event zu warten, von vorne
|
||||||
|
gestartet. Falls regexp1 und regexp2 gleich sind, oder regexp2 ist .,
|
||||||
|
dann ist dieses Verhalten die Voreinstellung.</li></br>
|
||||||
|
|
||||||
<li><a href="#execOnReactivate">execOnActivate</a>
|
<li><a href="#execOnReactivate">execOnActivate</a>
|
||||||
Falls gesetzt, wird der Wert des Attributes als FHEM Befehl
|
Falls gesetzt, wird der Wert des Attributes als FHEM Befehl
|
||||||
ausgeführt, wenn ein regexp1 Ereignis den Watchdog
|
ausgeführt, wenn ein regexp1 Ereignis den Watchdog
|
||||||
aktiviert nachdem er ausgelöst wurde.</li>
|
aktiviert nachdem er ausgelöst wurde.</li></br>
|
||||||
|
|
||||||
<li><a href="#autoRestart">autoRestart</a>
|
<li><a href="#autoRestart">autoRestart</a>
|
||||||
Wenn dieses Attribut gesetzt ist, wird der Watchdog nach dem er
|
Wenn dieses Attribut gesetzt ist, wird der Watchdog nach dem er
|
||||||
|
Loading…
x
Reference in New Issue
Block a user