01ec2636dcbf7d3b6ae5db046afa0b791956e6ad
[nonrtric.git] / information-coordinator-service / src / main / java / org / oransc / ics / repository / InfoProducer.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20
21 package org.oransc.ics.repository;
22
23 import java.util.Collection;
24 import java.util.HashSet;
25 import java.util.Set;
26
27 import lombok.Getter;
28
29 public class InfoProducer {
30     @Getter
31     private final String id;
32
33     @Getter
34     private final Collection<InfoType> infoTypes;
35
36     @Getter
37     private final String jobCallbackUrl;
38
39     @Getter
40     private final String producerSupervisionCallbackUrl;
41
42     private final Set<String> enabledJobs = new HashSet<>();
43
44     private int unresponsiveCounter = 0;
45
46     public InfoProducer(String id, Collection<InfoType> infoTypes, String jobCallbackUrl,
47         String producerSupervisionCallbackUrl) {
48         this.id = id;
49         this.infoTypes = infoTypes;
50         this.jobCallbackUrl = jobCallbackUrl;
51         this.producerSupervisionCallbackUrl = producerSupervisionCallbackUrl;
52     }
53
54     public synchronized void setAliveStatus(boolean isAlive) {
55         if (isAlive) {
56             unresponsiveCounter = 0;
57         } else {
58             unresponsiveCounter++;
59         }
60     }
61
62     public synchronized boolean isDead() {
63         return this.unresponsiveCounter >= 3;
64     }
65
66     public synchronized boolean isAvailable() {
67         return this.unresponsiveCounter == 0;
68     }
69
70     public synchronized void setJobEnabled(InfoJob job) {
71         this.enabledJobs.add(job.getId());
72     }
73
74     public synchronized void setJobDisabled(InfoJob job) {
75         this.enabledJobs.remove(job.getId());
76     }
77
78     /**
79      * Is the job enabled for this producer?
80      */
81     public synchronized boolean isJobEnabled(InfoJob job) {
82         return this.enabledJobs.contains(job.getId());
83     }
84
85 }