VES Heartbeat and Software Management Feature
[oam/tr069-adapter.git] / common / src / main / java / org / commscope / tr069adapter / common / scheduler / trigger / PeriodicTriggerRule.java
1 /*\r
2  * ============LICENSE_START========================================================================\r
3  * ONAP : tr-069-adapter\r
4  * =================================================================================================\r
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.\r
6  * =================================================================================================\r
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,\r
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You\r
9  * may obtain a copy of the License at\r
10  *\r
11  * http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\r
14  * either express or implied. See the License for the specific language governing permissions and\r
15  * limitations under the License.\r
16  * ===============LICENSE_END=======================================================================\r
17  */\r
18 \r
19 \r
20 package org.commscope.tr069adapter.common.scheduler.trigger;\r
21 \r
22 import static org.commscope.tr069adapter.common.scheduler.impl.QuartzSchedulerUtil.getInterval;\r
23 import static org.quartz.SimpleScheduleBuilder.simpleSchedule;\r
24 \r
25 import java.util.Date;\r
26 \r
27 import org.commscope.tr069adapter.common.scheduler.TriggerInfo;\r
28 import org.quartz.Trigger;\r
29 import org.quartz.TriggerBuilder;\r
30 import org.springframework.stereotype.Component;\r
31 \r
32 @Component\r
33 public class PeriodicTriggerRule implements TriggerRule {\r
34 \r
35   /**\r
36    * Run the periodically once.\r
37    */\r
38   public Trigger apply(TriggerInfo triggerInfo, String triggerName, String triggerGroup) {\r
39 \r
40     Date startDate = triggerInfo.getStartDate();\r
41     Date endDate = triggerInfo.getEndDate();\r
42     long interval = triggerInfo.getInterval();\r
43     boolean evaluate = interval != -1 && endDate != null;\r
44     Trigger trigger = null;\r
45     if (evaluate) {\r
46       long intervalInMilliseconds =\r
47           getInterval(triggerInfo.getInterval(), triggerInfo.getTimeUnit());\r
48       TriggerBuilder<Trigger> triggerBuilder =\r
49           TriggerBuilder.newTrigger().withIdentity(triggerName, triggerGroup);\r
50 \r
51       triggerBuilder =\r
52           (startDate == null) ? triggerBuilder.startNow() : triggerBuilder.startAt(startDate);\r
53 \r
54       trigger = triggerBuilder\r
55           .withSchedule(simpleSchedule().withIntervalInMilliseconds(intervalInMilliseconds)\r
56               .withMisfireHandlingInstructionNextWithExistingCount().repeatForever())\r
57           .endAt(endDate).build();\r
58     }\r
59     return trigger;\r
60   }\r
61 }\r