1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
/*
 * Copyright 2011-17 Fraunhofer ISE, energy & meteo Systems GmbH and other contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */
package org.openmuc.openiec61850;
 
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Timer;
import java.util.TimerTask;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
 
import org.openmuc.jasn1.ber.types.BerBitString;
import org.openmuc.openiec61850.internal.mms.asn1.AccessResult;
import org.openmuc.openiec61850.internal.mms.asn1.Data;
import org.openmuc.openiec61850.internal.mms.asn1.Identifier;
import org.openmuc.openiec61850.internal.mms.asn1.InformationReport;
import org.openmuc.openiec61850.internal.mms.asn1.MMSpdu;
import org.openmuc.openiec61850.internal.mms.asn1.ObjectName;
import org.openmuc.openiec61850.internal.mms.asn1.UnconfirmedPDU;
import org.openmuc.openiec61850.internal.mms.asn1.UnconfirmedService;
import org.openmuc.openiec61850.internal.mms.asn1.VariableAccessSpecification;
 
public class Urcb extends Rcb {
 
    ServerAssociation reserved = null;
    boolean enabled = false;
    private Timer integrityTimer;
    // private ScheduledFuture<?> integrityFuture = null;
    private ScheduledFuture<?> bufTmFuture = null;
    final HashMap<FcModelNode, BdaReasonForInclusion> membersToBeReported = new LinkedHashMap<>();
 
    public Urcb(ObjectReference objectReference, List<FcModelNode> children) {
        super(objectReference, Fc.RP, children);
    }
 
    /**
     * Reserve URCB - The attribute Resv (if set to TRUE) shall indicate that the URCB is currently exclusively reserved
     * for the client that has set the value to TRUE. Other clients shall not be allowed to set any attribute of that
     * URCB.
     * 
     * @return the Resv child
     */
    public BdaBoolean getResv() {
        return (BdaBoolean) children.get("Resv");
    }
 
    void enable() {
 
        for (FcModelNode dataSetMember : dataSet) {
            for (BasicDataAttribute bda : dataSetMember.getBasicDataAttributes()) {
                if (bda.dchg) {
                    if (getTrgOps().isDataChange()) {
                        synchronized (bda.chgRcbs) {
                            bda.chgRcbs.add(this);
                        }
                    }
                }
                else if (bda.qchg) {
                    if (getTrgOps().isQualityChange()) {
                        synchronized (bda.chgRcbs) {
                            bda.chgRcbs.add(this);
                        }
                    }
                }
                if (bda.dupd) {
                    if (getTrgOps().isDataUpdate()) {
                        synchronized (bda.dupdRcbs) {
                            bda.dupdRcbs.add(this);
                        }
                    }
                }
            }
        }
 
        if (getTrgOps().isIntegrity() && !(getIntgPd().getValue() < 10l)) {
            integrityTimer = new Timer();
 
            integrityTimer.schedule(new TimerTask() {
                // integrityFuture = reserved.executor.scheduleAtFixedRate(new Runnable() {
                @Override
                public void run() {
                    synchronized (Urcb.this) {
                        if (!enabled) {
                            return;
                        }
                        reserved.sendAnMmsPdu(getMmsReport(true, false));
                    }
                }
                // }, getIntgPd().getValue(), getIntgPd().getValue(), TimeUnit.MILLISECONDS);
            }, getIntgPd().getValue(), getIntgPd().getValue());
 
        }
 
        enabled = true;
 
    }
 
    void disable() {
 
        for (FcModelNode dataSetMember : dataSet) {
            for (BasicDataAttribute bda : dataSetMember.getBasicDataAttributes()) {
                if (bda.dchg) {
                    if (getTrgOps().isDataChange()) {
                        synchronized (bda.chgRcbs) {
                            bda.chgRcbs.remove(this);
                        }
                    }
                }
                else if (bda.qchg) {
                    if (getTrgOps().isQualityChange()) {
                        synchronized (bda.chgRcbs) {
                            bda.chgRcbs.remove(this);
                        }
                    }
                }
                if (bda.dupd) {
                    if (getTrgOps().isDataUpdate()) {
                        synchronized (bda.dupdRcbs) {
                            bda.dupdRcbs.remove(this);
                        }
                    }
                }
            }
        }
 
        // if (integrityFuture != null) {
        // integrityFuture.cancel(false);
        // }
        if (integrityTimer != null) {
            integrityTimer.cancel();
        }
 
        enabled = false;
 
    }
 
    void generalInterrogation() {
        reserved.executor.execute(new Runnable() {
            @Override
            public void run() {
                synchronized (Urcb.this) {
                    if (!enabled) {
                        return;
                    }
                    reserved.sendAnMmsPdu(getMmsReport(false, true));
                }
            }
        });
    }
 
    private MMSpdu getMmsReport(boolean integrity, boolean gi) {
 
        InformationReport.ListOfAccessResult listOfAccessResult = new InformationReport.ListOfAccessResult();
 
        List<AccessResult> accessResults = listOfAccessResult.getAccessResult();
 
        AccessResult accessResult = new AccessResult();
        accessResult.setSuccess(getRptId().getMmsDataObj());
        accessResults.add(accessResult);
 
        accessResult = new AccessResult();
        accessResult.setSuccess(getOptFlds().getMmsDataObj());
        accessResults.add(accessResult);
 
        if (getOptFlds().isSequenceNumber()) {
            accessResult = new AccessResult();
            accessResult.setSuccess(getSqNum().getMmsDataObj());
            accessResults.add(accessResult);
        }
        getSqNum().setValue((short) (getSqNum().getValue() + 1));
 
        if (getOptFlds().isReportTimestamp()) {
            BdaEntryTime entryTime = new BdaEntryTime(null, null, null, false, false);
            entryTime.setTimestamp(System.currentTimeMillis());
 
            accessResult = new AccessResult();
            accessResult.setSuccess(entryTime.getMmsDataObj());
            accessResults.add(accessResult);
        }
 
        if (getOptFlds().isDataSetName()) {
            accessResult = new AccessResult();
            accessResult.setSuccess(getDatSet().getMmsDataObj());
            accessResults.add(accessResult);
        }
 
        if (getOptFlds().isConfigRevision()) {
            accessResult = new AccessResult();
            accessResult.setSuccess(getConfRev().getMmsDataObj());
            accessResults.add(accessResult);
        }
 
        // segmentation not supported
 
        List<FcModelNode> dataSetMembers = dataSet.getMembers();
        int dataSetSize = dataSetMembers.size();
 
        // inclusion bitstring
        byte[] inclusionStringArray = new byte[(dataSetSize - 1) / 8 + 1];
 
        if (integrity || gi) {
 
            for (int i = 0; i < dataSetSize; i++) {
                inclusionStringArray[i / 8] |= 1 << (7 - i % 8);
            }
            BerBitString inclusionString = new BerBitString(inclusionStringArray, dataSetSize);
 
            Data data = new Data();
            data.setBitString(inclusionString);
            accessResult = new AccessResult();
            accessResult.setSuccess(data);
            accessResults.add(accessResult);
 
            // data reference sending not supported for now
 
            for (FcModelNode dataSetMember : dataSetMembers) {
                accessResult = new AccessResult();
                accessResult.setSuccess(dataSetMember.getMmsDataObj());
                accessResults.add(accessResult);
            }
 
            BdaReasonForInclusion reasonForInclusion = new BdaReasonForInclusion(null);
            if (integrity) {
                reasonForInclusion.setIntegrity(true);
            }
            else {
                reasonForInclusion.setGeneralInterrogation(true);
            }
 
            if (getOptFlds().isReasonForInclusion()) {
                for (int i = 0; i < dataSetMembers.size(); i++) {
                    accessResult = new AccessResult();
                    accessResult.setSuccess(reasonForInclusion.getMmsDataObj());
                    accessResults.add(accessResult);
                }
            }
 
        }
        else {
 
            int index = 0;
            for (FcModelNode dataSetMember : dataSet) {
                if (membersToBeReported.get(dataSetMember) != null) {
                    inclusionStringArray[index / 8] |= 1 << (7 - index % 8);
                }
                index++;
            }
            BerBitString inclusionString = new BerBitString(inclusionStringArray, dataSetSize);
 
            Data data = new Data();
            data.setBitString(inclusionString);
            accessResult = new AccessResult();
            accessResult.setSuccess(data);
            accessResults.add(accessResult);
 
            // data reference sending not supported for now
 
            for (FcModelNode dataSetMember : dataSetMembers) {
                if (membersToBeReported.get(dataSetMember) != null) {
                    accessResult = new AccessResult();
                    accessResult.setSuccess(dataSetMember.getMmsDataObj());
                    accessResults.add(accessResult);
                }
            }
 
            if (getOptFlds().isReasonForInclusion()) {
                for (FcModelNode dataSetMember : dataSetMembers) {
                    BdaReasonForInclusion reasonForInclusion = membersToBeReported.get(dataSetMember);
                    if (reasonForInclusion != null) {
                        accessResult = new AccessResult();
                        accessResult.setSuccess(reasonForInclusion.getMmsDataObj());
                        accessResults.add(accessResult);
                    }
                }
            }
 
            membersToBeReported.clear();
            bufTmFuture = null;
 
        }
 
        ObjectName objectName = new ObjectName();
        objectName.setVmdSpecific(new Identifier("RPT".getBytes()));
 
        VariableAccessSpecification varAccSpec = new VariableAccessSpecification();
        varAccSpec.setVariableListName(objectName);
        // null,
        // new ObjectName(new Identifier("RPT".getBytes()), null, null));
 
        InformationReport infoReport = new InformationReport();
        infoReport.setVariableAccessSpecification(varAccSpec);
        infoReport.setListOfAccessResult(listOfAccessResult);
        // varAccSpec,
        // new InformationReport.ListOfAccessResult(listOfAccessResult));
 
        UnconfirmedService unconfirmedService = new UnconfirmedService();
        unconfirmedService.setInformationReport(infoReport);
 
        UnconfirmedPDU unconfirmedPDU = new UnconfirmedPDU();
        unconfirmedPDU.setService(unconfirmedService);
 
        MMSpdu mmsPdu = new MMSpdu();
        mmsPdu.setUnconfirmedPDU(unconfirmedPDU);
 
        return mmsPdu;
    }
 
    @Override
    public FcDataObject copy() {
        List<FcModelNode> childCopies = new ArrayList<>(children.size());
        for (ModelNode childNode : children.values()) {
            childCopies.add((FcModelNode) childNode.copy());
        }
        Urcb urcb = new Urcb(objectReference, childCopies);
        urcb.dataSet = dataSet;
        return urcb;
    }
 
    void report(BasicDataAttribute bda, boolean dchg, boolean qchg, boolean dupd) {
 
        synchronized (this) {
 
            if (!enabled) {
                return;
            }
 
            FcModelNode memberFound = null;
            FcModelNode fcModelNode = bda;
            while (memberFound == null) {
                for (FcModelNode member : dataSet) {
                    if (member == fcModelNode) {
                        memberFound = fcModelNode;
                        break;
                    }
                }
                if (memberFound != null) {
                    break;
                }
                if (!(fcModelNode.parent instanceof FcModelNode)) {
                    // Unable to report Basic Data Attribute because it is not part of the referenced data set
                    return;
                }
                fcModelNode = (FcModelNode) fcModelNode.parent;
            }
 
            BdaReasonForInclusion reasonForInclusion = membersToBeReported.get(fcModelNode);
            if (reasonForInclusion == null) {
                reasonForInclusion = new BdaReasonForInclusion(null);
                membersToBeReported.put(fcModelNode, reasonForInclusion);
            }
 
            if (dchg) {
                reasonForInclusion.setDataChange(true);
            }
            if (dupd) {
                reasonForInclusion.setDataUpdate(true);
            }
            else if (qchg) {
                reasonForInclusion.setQualityChange(true);
            }
 
            // if bufTmFuture is not null then it is already scheduled and will send the combined report
            if (bufTmFuture == null) {
                bufTmFuture = reserved.executor.schedule(new Runnable() {
                    @Override
                    public void run() {
                        synchronized (Urcb.this) {
                            if (!enabled) {
                                return;
                            }
                            reserved.sendAnMmsPdu(getMmsReport(false, false));
                        }
                    }
                }, getBufTm().getValue(), TimeUnit.MILLISECONDS);
            }
 
        }
 
    }
 
}