aboutsummaryrefslogtreecommitdiffstats
path: root/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/event/comm/TopicEndpoint.java
blob: 4e2f4ecf2dacce8773f343a1d4a1a9a8f934dbf1 (plain)
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
/*
 * ============LICENSE_START=======================================================
 * policy-endpoints
 * ================================================================================
 * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

package org.onap.policy.common.endpoints.event.comm;

import com.fasterxml.jackson.annotation.JsonIgnore;

import java.util.ArrayList;
import java.util.List;
import java.util.Properties;

import org.onap.policy.common.capabilities.Lockable;
import org.onap.policy.common.capabilities.Startable;
import org.onap.policy.common.endpoints.event.comm.bus.DmaapTopicSink;
import org.onap.policy.common.endpoints.event.comm.bus.DmaapTopicSource;
import org.onap.policy.common.endpoints.event.comm.bus.NoopTopicSink;
import org.onap.policy.common.endpoints.event.comm.bus.UebTopicSink;
import org.onap.policy.common.endpoints.event.comm.bus.UebTopicSource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Abstraction to managed the system's Networked Topic Endpoints, sources of all events input into
 * the System.
 */
public interface TopicEndpoint extends Startable, Lockable {

    /**
     * singleton for global access
     */
    public static final TopicEndpoint manager = new ProxyTopicEndpointManager();

    /**
     * Add Topic Sources to the communication infrastructure initialized per properties
     *
     * @param properties properties for Topic Source construction
     * @return a generic Topic Source
     * @throws IllegalArgumentException when invalid arguments are provided
     */
    public List<TopicSource> addTopicSources(Properties properties);

    /**
     * Add Topic Sinks to the communication infrastructure initialized per properties
     *
     * @param properties properties for Topic Sink construction
     * @return a generic Topic Sink
     * @throws IllegalArgumentException when invalid arguments are provided
     */
    public List<TopicSink> addTopicSinks(Properties properties);

    /**
     * gets all Topic Sources
     *
     * @return the Topic Source List
     */
    List<TopicSource> getTopicSources();

    /**
     * get the Topic Sources for the given topic name
     *
     * @param topicNames the topic name
     *
     * @return the Topic Source List
     * @throws IllegalStateException if the entity is in an invalid state
     * @throws IllegalArgumentException if invalid parameters are present
     */
    public List<TopicSource> getTopicSources(List<String> topicNames);

    /**
     * gets the Topic Source for the given topic name and underlying communication infrastructure
     * type
     *
     * @param commType communication infrastructure type
     * @param topicName the topic name
     *
     * @return the Topic Source
     * @throws IllegalStateException if the entity is in an invalid state, for example multiple
     *         TopicReaders for a topic name and communication infrastructure
     * @throws IllegalArgumentException if invalid parameters are present
     * @throws UnsupportedOperationException if the operation is not supported.
     */
    public TopicSource getTopicSource(Topic.CommInfrastructure commType, String topicName);

    /**
     * get the UEB Topic Source for the given topic name
     *
     * @param topicName the topic name
     *
     * @return the UEB Topic Source
     * @throws IllegalStateException if the entity is in an invalid state, for example multiple
     *         TopicReaders for a topic name and communication infrastructure
     * @throws IllegalArgumentException if invalid parameters are present
     */
    public UebTopicSource getUebTopicSource(String topicName);

    /**
     * get the DMAAP Topic Source for the given topic name
     *
     * @param topicName the topic name
     *
     * @return the DMAAP Topic Source
     * @throws IllegalStateException if the entity is in an invalid state, for example multiple
     *         TopicReaders for a topic name and communication infrastructure
     * @throws IllegalArgumentException if invalid parameters are present
     */
    public DmaapTopicSource getDmaapTopicSource(String topicName);

    /**
     * get the Topic Sinks for the given topic name
     *
     * @param topicNames the topic names
     * @return the Topic Sink List
     * @throws IllegalStateException
     * @throws IllegalArgumentException
     */
    public List<TopicSink> getTopicSinks(List<String> topicNames);

    /**
     * get the Topic Sinks for the given topic name and underlying communication infrastructure type
     *
     * @param topicName the topic name
     * @param commType communication infrastructure type
     *
     * @return the Topic Sink List
     * @throws IllegalStateException if the entity is in an invalid state, for example multiple
     *         TopicWriters for a topic name and communication infrastructure
     * @throws IllegalArgumentException if invalid parameters are present
     */
    public TopicSink getTopicSink(Topic.CommInfrastructure commType, String topicName);

    /**
     * get the Topic Sinks for the given topic name and all the underlying communication
     * infrastructure type
     *
     * @param topicName the topic name
     *
     * @return the Topic Sink List
     * @throws IllegalStateException if the entity is in an invalid state, for example multiple
     *         TopicWriters for a topic name and communication infrastructure
     * @throws IllegalArgumentException if invalid parameters are present
     */
    public List<TopicSink> getTopicSinks(String topicName);

    /**
     * get the UEB Topic Source for the given topic name
     *
     * @param topicName the topic name
     *
     * @return the Topic Source
     * @throws IllegalStateException if the entity is in an invalid state, for example multiple
     *         TopicReaders for a topic name and communication infrastructure
     * @throws IllegalArgumentException if invalid parameters are present
     */
    public UebTopicSink getUebTopicSink(String topicName);

    /**
     * get the no-op Topic Sink for the given topic name
     *
     * @param topicName the topic name
     *
     * @return the Topic Source
     * @throws IllegalStateException if the entity is in an invalid state, for example multiple
     *         TopicReaders for a topic name and communication infrastructure
     * @throws IllegalArgumentException if invalid parameters are present
     */
    public NoopTopicSink getNoopTopicSink(String topicName);

    /**
     * get the DMAAP Topic Source for the given topic name
     *
     * @param topicName the topic name
     *
     * @return the Topic Source
     * @throws IllegalStateException if the entity is in an invalid state, for example multiple
     *         TopicReaders for a topic name and communication infrastructure
     * @throws IllegalArgumentException if invalid parameters are present
     */
    public DmaapTopicSink getDmaapTopicSink(String topicName);

    /**
     * gets only the UEB Topic Sources
     *
     * @return the UEB Topic Source List
     */
    public List<UebTopicSource> getUebTopicSources();

    /**
     * gets only the DMAAP Topic Sources
     *
     * @return the DMAAP Topic Source List
     */
    public List<DmaapTopicSource> getDmaapTopicSources();

    /**
     * gets all Topic Sinks
     *
     * @return the Topic Sink List
     */
    public List<TopicSink> getTopicSinks();

    /**
     * gets only the UEB Topic Sinks
     *
     * @return the UEB Topic Sink List
     */
    public List<UebTopicSink> getUebTopicSinks();

    /**
     * gets only the DMAAP Topic Sinks
     *
     * @return the DMAAP Topic Sink List
     */
    public List<DmaapTopicSink> getDmaapTopicSinks();

    /**
     * gets only the NOOP Topic Sinks
     *
     * @return the NOOP Topic Sinks List
     */
    public List<NoopTopicSink> getNoopTopicSinks();
}


/*
 * ----------------- implementation -------------------
 */

/**
 * This implementation of the Topic Endpoint Manager, proxies operations to appropriate
 * implementations according to the communication infrastructure that are supported
 */
class ProxyTopicEndpointManager implements TopicEndpoint {
    /**
     * Logger
     */
    private static Logger logger = LoggerFactory.getLogger(ProxyTopicEndpointManager.class);
    /**
     * Is this element locked?
     */
    protected volatile boolean locked = false;

    /**
     * Is this element alive?
     */
    protected volatile boolean alive = false;

    @Override
    public List<TopicSource> addTopicSources(Properties properties) {

        // 1. Create UEB Sources
        // 2. Create DMAAP Sources

        final List<TopicSource> sources = new ArrayList<>();

        sources.addAll(UebTopicSource.factory.build(properties));
        sources.addAll(DmaapTopicSource.factory.build(properties));

        if (this.isLocked()) {
            for (final TopicSource source : sources) {
                source.lock();
            }
        }

        return sources;
    }

    @Override
    public List<TopicSink> addTopicSinks(Properties properties) {
        // 1. Create UEB Sinks
        // 2. Create DMAAP Sinks

        final List<TopicSink> sinks = new ArrayList<>();

        sinks.addAll(UebTopicSink.factory.build(properties));
        sinks.addAll(DmaapTopicSink.factory.build(properties));
        sinks.addAll(NoopTopicSink.factory.build(properties));

        if (this.isLocked()) {
            for (final TopicSink sink : sinks) {
                sink.lock();
            }
        }

        return sinks;
    }

    @Override
    public List<TopicSource> getTopicSources() {

        final List<TopicSource> sources = new ArrayList<>();

        sources.addAll(UebTopicSource.factory.inventory());
        sources.addAll(DmaapTopicSource.factory.inventory());

        return sources;
    }

    @Override
    public List<TopicSink> getTopicSinks() {

        final List<TopicSink> sinks = new ArrayList<>();

        sinks.addAll(UebTopicSink.factory.inventory());
        sinks.addAll(DmaapTopicSink.factory.inventory());
        sinks.addAll(NoopTopicSink.factory.inventory());

        return sinks;
    }

    @JsonIgnore
    @Override
    public List<UebTopicSource> getUebTopicSources() {
        return UebTopicSource.factory.inventory();
    }

    @JsonIgnore
    @Override
    public List<DmaapTopicSource> getDmaapTopicSources() {
        return DmaapTopicSource.factory.inventory();
    }

    @JsonIgnore
    @Override
    public List<UebTopicSink> getUebTopicSinks() {
        return UebTopicSink.factory.inventory();
    }

    @JsonIgnore
    @Override
    public List<DmaapTopicSink> getDmaapTopicSinks() {
        return DmaapTopicSink.factory.inventory();
    }

    @JsonIgnore
    @Override
    public List<NoopTopicSink> getNoopTopicSinks() {
        return NoopTopicSink.factory.inventory();
    }

    @Override
    public boolean start() {

        synchronized (this) {
            if (this.locked) {
                throw new IllegalStateException(this + " is locked");
            }

            if (this.alive) {
                return true;
            }

            this.alive = true;
        }

        final List<Startable> endpoints = this.getEndpoints();

        boolean success = true;
        for (final Startable endpoint : endpoints) {
            try {
                success = endpoint.start() && success;
            } catch (final Exception e) {
                success = false;
                logger.error("Problem starting endpoint: {}", endpoint, e);
            }
        }

        return success;
    }


    @Override
    public boolean stop() {

        /*
         * stop regardless if it is locked, in other words, stop operation has precedence over
         * locks.
         */
        synchronized (this) {
            this.alive = false;
        }

        final List<Startable> endpoints = this.getEndpoints();

        boolean success = true;
        for (final Startable endpoint : endpoints) {
            try {
                success = endpoint.stop() && success;
            } catch (final Exception e) {
                success = false;
                logger.error("Problem stopping endpoint: {}", endpoint, e);
            }
        }

        return success;
    }

    /**
     *
     * @return list of managed endpoints
     */
    @JsonIgnore
    protected List<Startable> getEndpoints() {
        final List<Startable> endpoints = new ArrayList<>();

        endpoints.addAll(this.getTopicSources());
        endpoints.addAll(this.getTopicSinks());

        return endpoints;
    }

    @Override
    public void shutdown() {
        UebTopicSource.factory.destroy();
        UebTopicSink.factory.destroy();
        NoopTopicSink.factory.destroy();

        DmaapTopicSource.factory.destroy();
        DmaapTopicSink.factory.destroy();
    }

    @Override
    public boolean isAlive() {
        return this.alive;
    }

    @Override
    public boolean lock() {

        synchronized (this) {
            if (this.locked) {
                return true;
            }

            this.locked = true;
        }

        for (final TopicSource source : this.getTopicSources()) {
            source.lock();
        }

        for (final TopicSink sink : this.getTopicSinks()) {
            sink.lock();
        }

        return true;
    }

    @Override
    public boolean unlock() {
        synchronized (this) {
            if (!this.locked) {
                return true;
            }

            this.locked = false;
        }

        for (final TopicSource source : this.getTopicSources()) {
            source.unlock();
        }

        for (final TopicSink sink : this.getTopicSinks()) {
            sink.unlock();
        }

        return true;
    }

    @Override
    public boolean isLocked() {
        return this.locked;
    }

    @Override
    public List<TopicSource> getTopicSources(List<String> topicNames) {

        if (topicNames == null) {
            throw new IllegalArgumentException("must provide a list of topics");
        }

        final List<TopicSource> sources = new ArrayList<>();
        for (final String topic : topicNames) {
            try {
                final TopicSource uebSource = this.getUebTopicSource(topic);
                if (uebSource != null) {
                    sources.add(uebSource);
                }
            } catch (final Exception e) {
                logger.debug("No UEB source for topic: {}", topic, e);
            }

            try {
                final TopicSource dmaapSource = this.getDmaapTopicSource(topic);
                if (dmaapSource != null) {
                    sources.add(dmaapSource);
                }
            } catch (final Exception e) {
                logger.debug("No DMAAP source for topic: {}", topic, e);
            }
        }
        return sources;
    }

    @Override
    public List<TopicSink> getTopicSinks(List<String> topicNames) {

        if (topicNames == null) {
            throw new IllegalArgumentException("must provide a list of topics");
        }

        final List<TopicSink> sinks = new ArrayList<>();
        for (final String topic : topicNames) {
            try {
                final TopicSink uebSink = this.getUebTopicSink(topic);
                if (uebSink != null) {
                    sinks.add(uebSink);
                }
            } catch (final Exception e) {
                logger.debug("No UEB sink for topic: {}", topic, e);
            }

            try {
                final TopicSink dmaapSink = this.getDmaapTopicSink(topic);
                if (dmaapSink != null) {
                    sinks.add(dmaapSink);
                }
            } catch (final Exception e) {
                logger.debug("No DMAAP sink for topic: {}", topic, e);
            }

            try {
                final TopicSink noopSink = this.getNoopTopicSink(topic);
                if (noopSink != null) {
                    sinks.add(noopSink);
                }
            } catch (final Exception e) {
                logger.debug("No NOOP sink for topic: {}", topic, e);
            }
        }
        return sinks;
    }

    @Override
    public TopicSource getTopicSource(Topic.CommInfrastructure commType, String topicName) {

        if (commType == null) {
            throw parmException(topicName);
        }

        if (topicName == null) {
            throw parmException(topicName);
        }

        switch (commType) {
            case UEB:
                return this.getUebTopicSource(topicName);
            case DMAAP:
                return this.getDmaapTopicSource(topicName);
            default:
                throw new UnsupportedOperationException("Unsupported " + commType.name());
        }
    }

    private IllegalArgumentException parmException(String topicName) {
        return new IllegalArgumentException(
                "Invalid parameter: a communication infrastructure required to fetch " + topicName);
    }

    @Override
    public TopicSink getTopicSink(Topic.CommInfrastructure commType, String topicName) {
        if (commType == null) {
            throw parmException(topicName);
        }

        if (topicName == null) {
            throw parmException(topicName);
        }

        switch (commType) {
            case UEB:
                return this.getUebTopicSink(topicName);
            case DMAAP:
                return this.getDmaapTopicSink(topicName);
            case NOOP:
                return this.getNoopTopicSink(topicName);
            default:
                throw new UnsupportedOperationException("Unsupported " + commType.name());
        }
    }

    @Override
    public List<TopicSink> getTopicSinks(String topicName) {
        if (topicName == null) {
            throw parmException(topicName);
        }

        final List<TopicSink> sinks = new ArrayList<>();

        try {
            sinks.add(this.getUebTopicSink(topicName));
        } catch (final Exception e) {
            logNoSink(topicName, e);
        }

        try {
            sinks.add(this.getDmaapTopicSink(topicName));
        } catch (final Exception e) {
            logNoSink(topicName, e);
        }

        try {
            sinks.add(this.getNoopTopicSink(topicName));
        } catch (final Exception e) {
            logNoSink(topicName, e);
        }

        return sinks;
    }

    private void logNoSink(String topicName, Exception ex) {
        logger.debug("No sink for topic: {}", topicName, ex);
    }

    @Override
    public UebTopicSource getUebTopicSource(String topicName) {
        return UebTopicSource.factory.get(topicName);
    }

    @Override
    public UebTopicSink getUebTopicSink(String topicName) {
        return UebTopicSink.factory.get(topicName);
    }

    @Override
    public DmaapTopicSource getDmaapTopicSource(String topicName) {
        return DmaapTopicSource.factory.get(topicName);
    }

    @Override
    public DmaapTopicSink getDmaapTopicSink(String topicName) {
        return DmaapTopicSink.factory.get(topicName);
    }

    @Override
    public NoopTopicSink getNoopTopicSink(String topicName) {
        return NoopTopicSink.factory.get(topicName);
    }

}