Merge "Address sonar issues in policy-management"
[policy/drools-pdp.git] / policy-management / src / main / java / org / onap / policy / drools / controller / internal / MavenDroolsController.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
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.onap.policy.drools.controller.internal;
22
23 import com.fasterxml.jackson.annotation.JsonIgnore;
24 import com.fasterxml.jackson.annotation.JsonProperty;
25 import java.util.ArrayList;
26 import java.util.Collection;
27 import java.util.HashMap;
28 import java.util.List;
29 import java.util.Map;
30 import java.util.Objects;
31 import java.util.stream.Collectors;
32 import org.apache.commons.collections4.queue.CircularFifoQueue;
33 import org.checkerframework.checker.nullness.qual.NonNull;
34 import org.drools.core.ClassObjectFilter;
35 import org.kie.api.definition.KiePackage;
36 import org.kie.api.definition.rule.Query;
37 import org.kie.api.runtime.KieSession;
38 import org.kie.api.runtime.rule.FactHandle;
39 import org.kie.api.runtime.rule.QueryResults;
40 import org.kie.api.runtime.rule.QueryResultsRow;
41 import org.onap.policy.common.endpoints.event.comm.TopicSink;
42 import org.onap.policy.common.gson.annotation.GsonJsonIgnore;
43 import org.onap.policy.common.gson.annotation.GsonJsonProperty;
44 import org.onap.policy.common.utils.services.FeatureApiUtils;
45 import org.onap.policy.common.utils.services.OrderedServiceImpl;
46 import org.onap.policy.drools.controller.DroolsController;
47 import org.onap.policy.drools.controller.DroolsControllerConstants;
48 import org.onap.policy.drools.core.PolicyContainer;
49 import org.onap.policy.drools.core.PolicySession;
50 import org.onap.policy.drools.core.jmx.PdpJmx;
51 import org.onap.policy.drools.features.DroolsControllerFeatureApi;
52 import org.onap.policy.drools.features.DroolsControllerFeatureApiConstants;
53 import org.onap.policy.drools.protocol.coders.EventProtocolCoder;
54 import org.onap.policy.drools.protocol.coders.EventProtocolCoderConstants;
55 import org.onap.policy.drools.protocol.coders.EventProtocolParams;
56 import org.onap.policy.drools.protocol.coders.JsonProtocolFilter;
57 import org.onap.policy.drools.protocol.coders.TopicCoderFilterConfiguration;
58 import org.onap.policy.drools.protocol.coders.TopicCoderFilterConfiguration.CustomGsonCoder;
59 import org.onap.policy.drools.protocol.coders.TopicCoderFilterConfiguration.PotentialCoderFilter;
60 import org.onap.policy.drools.utils.ReflectionUtil;
61 import org.slf4j.Logger;
62 import org.slf4j.LoggerFactory;
63
64 /**
65  * Maven-based Drools Controller that interacts with the
66  * policy-core PolicyContainer and PolicySession to manage
67  * Drools containers instantiated using Maven.
68  */
69 public class MavenDroolsController implements DroolsController {
70
71     private static final String FACT_RETRIEVE_ERROR = "Object cannot be retrieved from fact {}";
72
73     /**
74      * logger.
75      */
76     private static Logger  logger = LoggerFactory.getLogger(MavenDroolsController.class);
77
78     /**
79      * Policy Container, the access object to the policy-core layer.
80      */
81     @JsonIgnore
82     @GsonJsonIgnore
83     protected final PolicyContainer policyContainer;
84
85     /**
86      * alive status of this drools controller,
87      * reflects invocation of start()/stop() only.
88      */
89     protected volatile boolean alive = false;
90
91     /**
92      * locked status of this drools controller,
93      * reflects if i/o drools related operations are permitted,
94      * more specifically: offer() and deliver().
95      * It does not affect the ability to start and stop
96      * underlying drools infrastructure
97      */
98     protected volatile boolean locked = false;
99
100     /**
101      * list of topics, each with associated decoder classes, each
102      * with a list of associated filters.
103      */
104     protected List<TopicCoderFilterConfiguration> decoderConfigurations;
105
106     /**
107      * list of topics, each with associated encoder classes, each
108      * with a list of associated filters.
109      */
110     protected List<TopicCoderFilterConfiguration> encoderConfigurations;
111
112     /**
113      * recent source events processed.
114      */
115     protected final CircularFifoQueue<Object> recentSourceEvents = new CircularFifoQueue<>(10);
116
117     /**
118      * recent sink events processed.
119      */
120     protected final CircularFifoQueue<String> recentSinkEvents = new CircularFifoQueue<>(10);
121
122     /**
123      * original Drools Model/Rules classloader hash.
124      */
125     protected int modelClassLoaderHash;
126
127     /**
128      * Expanded version of the constructor.
129      *
130      * @param groupId maven group id
131      * @param artifactId maven artifact id
132      * @param version maven version
133      * @param decoderConfigurations list of topic -> decoders -> filters mapping
134      * @param encoderConfigurations list of topic -> encoders -> filters mapping
135      *
136      * @throws IllegalArgumentException invalid arguments passed in
137      */
138     public MavenDroolsController(String groupId,
139             String artifactId,
140             String version,
141             List<TopicCoderFilterConfiguration> decoderConfigurations,
142             List<TopicCoderFilterConfiguration> encoderConfigurations) {
143
144         logger.info("drools-controller instantiation [{}:{}:{}]", groupId, artifactId, version);
145
146         if (groupId == null || groupId.isEmpty()) {
147             throw new IllegalArgumentException("Missing maven group-id coordinate");
148         }
149
150         if (artifactId == null || artifactId.isEmpty()) {
151             throw new IllegalArgumentException("Missing maven artifact-id coordinate");
152         }
153
154         if (version == null || version.isEmpty()) {
155             throw new IllegalArgumentException("Missing maven version coordinate");
156         }
157
158         this.policyContainer = makePolicyContainer(groupId, artifactId, version);
159         this.init(decoderConfigurations, encoderConfigurations);
160
161         logger.debug("{}: instantiation completed ", this);
162     }
163
164     /**
165      * init encoding/decoding configuration.
166      *
167      * @param decoderConfigurations list of topic -> decoders -> filters mapping
168      * @param encoderConfigurations list of topic -> encoders -> filters mapping
169      */
170     protected void init(List<TopicCoderFilterConfiguration> decoderConfigurations,
171             List<TopicCoderFilterConfiguration> encoderConfigurations) {
172
173         this.decoderConfigurations = decoderConfigurations;
174         this.encoderConfigurations = encoderConfigurations;
175
176         this.initCoders(decoderConfigurations, true);
177         this.initCoders(encoderConfigurations, false);
178
179         this.modelClassLoaderHash = this.policyContainer.getClassLoader().hashCode();
180     }
181
182     @Override
183     public void updateToVersion(String newGroupId, String newArtifactId, String newVersion,
184             List<TopicCoderFilterConfiguration> decoderConfigurations,
185             List<TopicCoderFilterConfiguration> encoderConfigurations)
186                     throws LinkageError {
187
188         logger.info("updating version -> [{}:{}:{}]", newGroupId, newArtifactId, newVersion);
189
190         validateText(newGroupId, "Missing maven group-id coordinate");
191         validateText(newArtifactId, "Missing maven artifact-id coordinate");
192         validateText(newVersion, "Missing maven version coordinate");
193
194         validateHasBrain(newGroupId, newArtifactId, newVersion);
195
196         if (newGroupId.equalsIgnoreCase(this.getGroupId())
197                 && newArtifactId.equalsIgnoreCase(this.getArtifactId())
198                         && newVersion.equalsIgnoreCase(this.getVersion())) {
199             logger.warn("All in the right version: {}:{}:{} vs. {}", newGroupId, newArtifactId, newVersion, this);
200             return;
201         }
202
203         validateNewVersion(newGroupId, newArtifactId, newVersion);
204
205         /* upgrade */
206         String messages = this.policyContainer.updateToVersion(newVersion);
207         logger.warn("{} UPGRADE results: {}", this, messages);
208
209         /*
210          * If all sucessful (can load new container), now we can remove all coders from previous sessions
211          */
212         this.removeCoders();
213
214         /*
215          * add the new coders
216          */
217         this.init(decoderConfigurations, encoderConfigurations);
218
219         logger.info("UPDATE-TO-VERSION: completed {}", this);
220     }
221
222     private void validateText(String text, String errorMessage) {
223         if (text == null || text.isEmpty()) {
224             throw new IllegalArgumentException(errorMessage);
225         }
226     }
227
228     private void validateHasBrain(String newGroupId, String newArtifactId, String newVersion) {
229         if (newGroupId.equalsIgnoreCase(DroolsControllerConstants.NO_GROUP_ID)
230                 || newArtifactId.equalsIgnoreCase(DroolsControllerConstants.NO_ARTIFACT_ID)
231                 || newVersion.equalsIgnoreCase(DroolsControllerConstants.NO_VERSION)) {
232             throw new IllegalArgumentException("BRAINLESS maven coordinates provided: "
233                     + newGroupId + ":" + newArtifactId + ":"
234                     + newVersion);
235         }
236     }
237
238     private void validateNewVersion(String newGroupId, String newArtifactId, String newVersion) {
239         if (!newGroupId.equalsIgnoreCase(this.getGroupId())
240                 || !newArtifactId.equalsIgnoreCase(this.getArtifactId())) {
241             throw new IllegalArgumentException(
242                     "Group ID and Artifact ID maven coordinates must be identical for the upgrade: "
243                     + newGroupId + ":" + newArtifactId + ":"
244                     + newVersion + " vs. " + this);
245         }
246     }
247
248     /**
249      * initialize decoders for all the topics supported by this controller
250      * Note this is critical to be done after the Policy Container is
251      * instantiated to be able to fetch the corresponding classes.
252      *
253      * @param coderConfigurations list of topic -> decoders -> filters mapping
254      */
255     protected void initCoders(List<TopicCoderFilterConfiguration> coderConfigurations,
256             boolean decoder) {
257
258         logger.info("INIT-CODERS: {}", this);
259
260         if (coderConfigurations == null) {
261             return;
262         }
263
264
265         for (TopicCoderFilterConfiguration coderConfig: coderConfigurations) {
266             String topic = coderConfig.getTopic();
267
268             CustomGsonCoder customGsonCoder = getCustomCoder(coderConfig);
269
270             List<PotentialCoderFilter> coderFilters = coderConfig.getCoderFilters();
271             if (coderFilters == null || coderFilters.isEmpty()) {
272                 continue;
273             }
274
275             for (PotentialCoderFilter coderFilter : coderFilters) {
276                 String potentialCodedClass = coderFilter.getCodedClass();
277                 JsonProtocolFilter protocolFilter = coderFilter.getFilter();
278
279                 if (!isClass(potentialCodedClass)) {
280                     throw makeRetrieveEx(potentialCodedClass);
281                 } else {
282                     logClassFetched(potentialCodedClass);
283                 }
284
285                 if (decoder) {
286                     getCoderManager().addDecoder(EventProtocolParams.builder()
287                             .groupId(this.getGroupId())
288                             .artifactId(this.getArtifactId())
289                             .topic(topic)
290                             .eventClass(potentialCodedClass)
291                             .protocolFilter(protocolFilter)
292                             .customGsonCoder(customGsonCoder)
293                             .modelClassLoaderHash(this.policyContainer.getClassLoader().hashCode()));
294                 } else {
295                     getCoderManager().addEncoder(
296                             EventProtocolParams.builder().groupId(this.getGroupId())
297                                     .artifactId(this.getArtifactId()).topic(topic)
298                                     .eventClass(potentialCodedClass).protocolFilter(protocolFilter)
299                                     .customGsonCoder(customGsonCoder)
300                                     .modelClassLoaderHash(this.policyContainer.getClassLoader().hashCode()));
301                 }
302             }
303         }
304     }
305
306     private CustomGsonCoder getCustomCoder(TopicCoderFilterConfiguration coderConfig) {
307         CustomGsonCoder customGsonCoder = coderConfig.getCustomGsonCoder();
308         if (customGsonCoder != null
309                 && customGsonCoder.getClassContainer() != null
310                 && !customGsonCoder.getClassContainer().isEmpty()) {
311
312             String customGsonCoderClass = customGsonCoder.getClassContainer();
313             if (!isClass(customGsonCoderClass)) {
314                 throw makeRetrieveEx(customGsonCoderClass);
315             } else {
316                 logClassFetched(customGsonCoderClass);
317             }
318         }
319         return customGsonCoder;
320     }
321
322     /**
323      * Logs an error and makes an exception for an item that cannot be retrieved.
324      * @param itemName the item to retrieve
325      * @return a new exception
326      */
327     private IllegalArgumentException makeRetrieveEx(String itemName) {
328         logger.error("{} cannot be retrieved", itemName);
329         return new IllegalArgumentException(itemName + " cannot be retrieved");
330     }
331
332     /**
333      * Logs the name of the class that was fetched.
334      * @param className class name fetched
335      */
336     private void logClassFetched(String className) {
337         logger.info("CLASS FETCHED {}", className);
338     }
339
340
341     /**
342      * remove decoders.
343      */
344     protected void removeDecoders() {
345         logger.info("REMOVE-DECODERS: {}", this);
346
347         if (this.decoderConfigurations == null) {
348             return;
349         }
350
351
352         for (TopicCoderFilterConfiguration coderConfig: decoderConfigurations) {
353             String topic = coderConfig.getTopic();
354             getCoderManager().removeDecoders(this.getGroupId(), this.getArtifactId(), topic);
355         }
356     }
357
358     /**
359      * remove decoders.
360      */
361     protected void removeEncoders() {
362
363         logger.info("REMOVE-ENCODERS: {}", this);
364
365         if (this.encoderConfigurations == null) {
366             return;
367         }
368
369         for (TopicCoderFilterConfiguration coderConfig: encoderConfigurations) {
370             String topic = coderConfig.getTopic();
371             getCoderManager().removeEncoders(this.getGroupId(), this.getArtifactId(), topic);
372         }
373     }
374
375
376     @Override
377     public boolean ownsCoder(Class<?> coderClass, int modelHash) {
378         if (!isClass(coderClass.getName())) {
379             logger.error("{}{} cannot be retrieved. ", this, coderClass.getName());
380             return false;
381         }
382
383         if (modelHash == this.modelClassLoaderHash) {
384             logger.info("{}{} class loader matches original drools controller rules classloader {}",
385                             coderClass.getName(), this, coderClass.getClassLoader());
386             return true;
387         } else {
388             logger.warn("{}{} class loaders don't match {} vs {}", this, coderClass.getName(),
389                             coderClass.getClassLoader(), this.policyContainer.getClassLoader());
390             return false;
391         }
392     }
393
394     @Override
395     public boolean start() {
396
397         logger.info("START: {}", this);
398
399         synchronized (this) {
400             if (this.alive) {
401                 return true;
402             }
403             this.alive = true;
404         }
405
406         return this.policyContainer.start();
407     }
408
409     @Override
410     public boolean stop() {
411
412         logger.info("STOP: {}", this);
413
414         synchronized (this) {
415             if (!this.alive) {
416                 return true;
417             }
418             this.alive = false;
419         }
420
421         return this.policyContainer.stop();
422     }
423
424     @Override
425     public void shutdown() {
426         logger.info("{}: SHUTDOWN", this);
427
428         try {
429             this.stop();
430             this.removeCoders();
431         } catch (Exception e) {
432             logger.error("{} SHUTDOWN FAILED because of {}", this, e.getMessage(), e);
433         } finally {
434             this.policyContainer.shutdown();
435         }
436
437     }
438
439     @Override
440     public void halt() {
441         logger.info("{}: HALT", this);
442
443         try {
444             this.stop();
445             this.removeCoders();
446         } catch (Exception e) {
447             logger.error("{} HALT FAILED because of {}", this, e.getMessage(), e);
448         } finally {
449             this.policyContainer.destroy();
450         }
451     }
452
453     /**
454      * removes this drools controllers and encoders and decoders from operation.
455      */
456     protected void removeCoders() {
457         logger.info("{}: REMOVE-CODERS", this);
458
459         try {
460             this.removeDecoders();
461         } catch (IllegalArgumentException e) {
462             logger.error("{} REMOVE-DECODERS FAILED because of {}", this, e.getMessage(), e);
463         }
464
465         try {
466             this.removeEncoders();
467         } catch (IllegalArgumentException e) {
468             logger.error("{} REMOVE-ENCODERS FAILED because of {}", this, e.getMessage(), e);
469         }
470     }
471
472     @Override
473     public boolean isAlive() {
474         return this.alive;
475     }
476
477     @Override
478     public boolean offer(String topic, String event) {
479         logger.debug("{}: OFFER raw event from {}", this, topic);
480
481         if (this.locked || !this.alive || this.policyContainer.getPolicySessions().isEmpty()) {
482             return true;
483         }
484
485         // 1. Now, check if this topic has a decoder:
486
487         if (!getCoderManager().isDecodingSupported(this.getGroupId(),
488                 this.getArtifactId(),
489                 topic)) {
490
491             logger.warn("{}: DECODING-UNSUPPORTED {}:{}:{}", this,
492                     topic, this.getGroupId(), this.getArtifactId());
493             return true;
494         }
495
496         // 2. Decode
497
498         Object anEvent;
499         try {
500             anEvent = getCoderManager().decode(this.getGroupId(),
501                     this.getArtifactId(),
502                     topic,
503                     event);
504         } catch (UnsupportedOperationException uoe) {
505             logger.debug("{}: DECODE FAILED: {} <- {} because of {}", this, topic,
506                     event, uoe.getMessage(), uoe);
507             return true;
508         } catch (Exception e) {
509             logger.warn("{}: DECODE FAILED: {} <- {} because of {}", this, topic,
510                     event, e.getMessage(), e);
511             return true;
512         }
513
514         return offer(anEvent);
515
516     }
517
518     /*
519      * This method always returns "true", which causes a sonar complaint. However,
520      * refactoring or restructuring it would unnecessarily complicate it, thus we'll just
521      * disable the sonar complaint.
522      */
523     @Override
524     public <T> boolean offer(T event) {     // NOSONAR
525         logger.debug("{}: OFFER event", this);
526
527         if (this.locked || !this.alive || this.policyContainer.getPolicySessions().isEmpty()) {
528             return true;
529         }
530
531         synchronized (this.recentSourceEvents) {
532             this.recentSourceEvents.add(event);
533         }
534
535         PdpJmx.getInstance().updateOccured();
536
537         // Broadcast
538
539         if (FeatureApiUtils.apply(getDroolsProviders().getList(),
540             feature -> feature.beforeInsert(this, event),
541             (feature, ex) -> logger.error("{}: feature {} before-insert failure because of {}", this,
542                             feature.getClass().getName(), ex.getMessage(), ex))) {
543             return true;
544         }
545
546         boolean successInject = this.policyContainer.insertAll(event);
547         if (!successInject) {
548             logger.warn("{} Failed to inject into PolicyContainer {}", this, this.getSessionNames());
549         }
550
551         FeatureApiUtils.apply(getDroolsProviders().getList(),
552             feature -> feature.afterInsert(this, event, successInject),
553             (feature, ex) -> logger.error("{}: feature {} after-insert failure because of {}", this,
554                             feature.getClass().getName(), ex.getMessage(), ex));
555
556         return true;
557
558     }
559
560     @Override
561     public boolean deliver(TopicSink sink, Object event) {
562
563         logger.info("{}DELIVER: {} FROM {} TO {}", this, event, this, sink);
564
565         for (DroolsControllerFeatureApi feature : getDroolsProviders().getList()) {
566             try {
567                 if (feature.beforeDeliver(this, sink, event)) {
568                     return true;
569                 }
570             }
571             catch (Exception e) {
572                 logger.error("{}: feature {} before-deliver failure because of {}", this, feature.getClass().getName(),
573                         e.getMessage(), e);
574             }
575         }
576
577         if (sink == null) {
578             throw new IllegalArgumentException(this +  " invalid sink");
579         }
580
581         if (event == null) {
582             throw new IllegalArgumentException(this +  " invalid event");
583         }
584
585         if (this.locked) {
586             throw new IllegalStateException(this +  " is locked");
587         }
588
589         if (!this.alive) {
590             throw new IllegalStateException(this +  " is stopped");
591         }
592
593         String json =
594                 getCoderManager().encode(sink.getTopic(), event, this);
595
596         synchronized (this.recentSinkEvents) {
597             this.recentSinkEvents.add(json);
598         }
599
600         boolean success = sink.send(json);
601
602         for (DroolsControllerFeatureApi feature : getDroolsProviders().getList()) {
603             try {
604                 if (feature.afterDeliver(this, sink, event, json, success)) {
605                     return true;
606                 }
607             }
608             catch (Exception e) {
609                 logger.error("{}: feature {} after-deliver failure because of {}", this, feature.getClass().getName(),
610                         e.getMessage(), e);
611             }
612         }
613
614         return success;
615
616     }
617
618     @Override
619     public String getVersion() {
620         return this.policyContainer.getVersion();
621     }
622
623     @Override
624     public String getArtifactId() {
625         return this.policyContainer.getArtifactId();
626     }
627
628     @Override
629     public String getGroupId() {
630         return this.policyContainer.getGroupId();
631     }
632
633     /**
634      * Get model class loader hash.
635      *
636      * @return the modelClassLoaderHash
637      */
638     public int getModelClassLoaderHash() {
639         return modelClassLoaderHash;
640     }
641
642     @Override
643     public synchronized boolean lock() {
644         logger.info("LOCK: {}",  this);
645
646         this.locked = true;
647         return true;
648     }
649
650     @Override
651     public synchronized boolean unlock() {
652         logger.info("UNLOCK: {}",  this);
653
654         this.locked = false;
655         return true;
656     }
657
658     @Override
659     public boolean isLocked() {
660         return this.locked;
661     }
662
663     @JsonIgnore
664     @GsonJsonIgnore
665     @Override
666     public PolicyContainer getContainer() {
667         return this.policyContainer;
668     }
669
670     @JsonProperty("sessions")
671     @GsonJsonProperty("sessions")
672     @Override
673     public List<String> getSessionNames() {
674         return getSessionNames(true);
675     }
676
677     /**
678      * get session names.
679      *
680      * @param abbreviated true for the short form, otherwise the long form
681      * @return session names
682      */
683     protected List<String> getSessionNames(boolean abbreviated) {
684         List<String> sessionNames = new ArrayList<>();
685         try {
686             for (PolicySession session: this.policyContainer.getPolicySessions()) {
687                 if (abbreviated) {
688                     sessionNames.add(session.getName());
689                 } else {
690                     sessionNames.add(session.getFullName());
691                 }
692             }
693         } catch (Exception e) {
694             logger.warn("Can't retrieve CORE sessions", e);
695             sessionNames.add(e.getMessage());
696         }
697         return sessionNames;
698     }
699
700     @JsonProperty("sessionCoordinates")
701     @GsonJsonProperty("sessionCoordinates")
702     @Override
703     public List<String> getCanonicalSessionNames() {
704         return getSessionNames(false);
705     }
706
707     @Override
708     public List<String> getBaseDomainNames() {
709         return new ArrayList<>(this.policyContainer.getKieContainer().getKieBaseNames());
710     }
711
712     /**
713      * provides the underlying core layer container sessions.
714      *
715      * @return the attached Policy Container
716      */
717     protected List<PolicySession> getSessions() {
718         List<PolicySession> sessions = new ArrayList<>();
719         sessions.addAll(this.policyContainer.getPolicySessions());
720         return sessions;
721     }
722
723     /**
724      * provides the underlying core layer container session with name sessionName.
725      *
726      * @param sessionName session name
727      * @return the attached Policy Container
728      * @throws IllegalArgumentException when an invalid session name is provided
729      * @throws IllegalStateException when the drools controller is in an invalid state
730      */
731     protected PolicySession getSession(String sessionName) {
732         if (sessionName == null || sessionName.isEmpty()) {
733             throw new IllegalArgumentException("A Session Name must be provided");
734         }
735
736         List<PolicySession> sessions = this.getSessions();
737         for (PolicySession session : sessions) {
738             if (sessionName.equals(session.getName()) || sessionName.equals(session.getFullName())) {
739                 return session;
740             }
741         }
742
743         throw invalidSessNameEx(sessionName);
744     }
745
746     private IllegalArgumentException invalidSessNameEx(String sessionName) {
747         return new IllegalArgumentException("Invalid Session Name: " + sessionName);
748     }
749
750     @Override
751     public Map<String,Integer> factClassNames(String sessionName) {
752         validateSessionName(sessionName);
753
754         Map<String,Integer> classNames = new HashMap<>();
755
756         PolicySession session = getSession(sessionName);
757         KieSession kieSession = session.getKieSession();
758
759         Collection<FactHandle> facts = kieSession.getFactHandles();
760         for (FactHandle fact : facts) {
761             try {
762                 String className = kieSession.getObject(fact).getClass().getName();
763                 if (classNames.containsKey(className)) {
764                     classNames.put(className, classNames.get(className) + 1);
765                 } else {
766                     classNames.put(className, 1);
767                 }
768             } catch (Exception e) {
769                 logger.warn(FACT_RETRIEVE_ERROR, fact, e);
770             }
771         }
772
773         return classNames;
774     }
775
776     private void validateSessionName(String sessionName) {
777         if (sessionName == null || sessionName.isEmpty()) {
778             throw invalidSessNameEx(sessionName);
779         }
780     }
781
782     @Override
783     public long factCount(String sessionName) {
784         validateSessionName(sessionName);
785
786         PolicySession session = getSession(sessionName);
787         return session.getKieSession().getFactCount();
788     }
789
790     @Override
791     public List<Object> facts(String sessionName, String className, boolean delete) {
792         validateSessionName(sessionName);
793
794         if (className == null || className.isEmpty()) {
795             throw new IllegalArgumentException("Invalid Class Name: " + className);
796         }
797
798         Class<?> factClass =
799                 ReflectionUtil.fetchClass(this.policyContainer.getClassLoader(), className);
800         if (factClass == null) {
801             throw new IllegalArgumentException("Class cannot be fetched in model's classloader: " + className);
802         }
803
804         PolicySession session = getSession(sessionName);
805         KieSession kieSession = session.getKieSession();
806
807         List<Object> factObjects = new ArrayList<>();
808
809         Collection<FactHandle> factHandles = kieSession.getFactHandles(new ClassObjectFilter(factClass));
810         for (FactHandle factHandle : factHandles) {
811             try {
812                 factObjects.add(kieSession.getObject(factHandle));
813                 if (delete) {
814                     kieSession.delete(factHandle);
815                 }
816             } catch (Exception e) {
817                 logger.warn(FACT_RETRIEVE_ERROR, factHandle, e);
818             }
819         }
820
821         return factObjects;
822     }
823
824     @Override
825     public <T> List<T> facts(@NonNull String sessionName, @NonNull Class<T> clazz) {
826         return facts(sessionName, clazz.getName(), false)
827             .stream()
828             .filter(clazz::isInstance)
829             .map(clazz::cast)
830             .collect(Collectors.toList());
831     }
832
833     @Override
834     public List<Object> factQuery(String sessionName, String queryName, String queriedEntity,
835             boolean delete, Object... queryParams) {
836         validateSessionName(sessionName);
837
838         if (queryName == null || queryName.isEmpty()) {
839             throw new IllegalArgumentException("Invalid Query Name: " + queryName);
840         }
841
842         if (queriedEntity == null || queriedEntity.isEmpty()) {
843             throw new IllegalArgumentException("Invalid Queried Entity: " + queriedEntity);
844         }
845
846         PolicySession session = getSession(sessionName);
847         KieSession kieSession = session.getKieSession();
848
849         validateQueryName(kieSession, queryName);
850
851         List<Object> factObjects = new ArrayList<>();
852
853         QueryResults queryResults = kieSession.getQueryResults(queryName, queryParams);
854         for (QueryResultsRow row : queryResults) {
855             try {
856                 factObjects.add(row.get(queriedEntity));
857                 if (delete) {
858                     kieSession.delete(row.getFactHandle(queriedEntity));
859                 }
860             } catch (Exception e) {
861                 logger.warn("Object cannot be retrieved from row: {}", row, e);
862             }
863         }
864
865         return factObjects;
866     }
867
868     private void validateQueryName(KieSession kieSession, String queryName) {
869         for (KiePackage kiePackage : kieSession.getKieBase().getKiePackages()) {
870             for (Query q : kiePackage.getQueries()) {
871                 if (q.getName() != null && q.getName().equals(queryName)) {
872                     return;
873                 }
874             }
875         }
876
877         throw new IllegalArgumentException("Invalid Query Name: " + queryName);
878     }
879
880     @Override
881     public <T> boolean delete(@NonNull String sessionName, @NonNull T fact) {
882         String factClassName = fact.getClass().getName();
883
884         PolicySession session = getSession(sessionName);
885         KieSession kieSession = session.getKieSession();
886
887         Collection<FactHandle> factHandles = kieSession.getFactHandles(new ClassObjectFilter(fact.getClass()));
888         for (FactHandle factHandle : factHandles) {
889             try {
890                 if (Objects.equals(fact, kieSession.getObject(factHandle))) {
891                     logger.info("Deleting {} from {}", factClassName, sessionName);
892                     kieSession.delete(factHandle);
893                     return true;
894                 }
895             } catch (Exception e) {
896                 logger.warn(FACT_RETRIEVE_ERROR, factHandle, e);
897             }
898         }
899         return false;
900     }
901
902     @Override
903     public <T> boolean delete(@NonNull T fact) {
904         return this.getSessionNames().stream().map(ss -> delete(ss, fact)).reduce(false, Boolean::logicalOr);
905     }
906
907     @Override
908     public <T> boolean delete(@NonNull String sessionName, @NonNull Class<T> fact) {
909         PolicySession session = getSession(sessionName);
910         KieSession kieSession = session.getKieSession();
911
912         boolean success = true;
913         Collection<FactHandle> factHandles = kieSession.getFactHandles(new ClassObjectFilter(fact));
914         for (FactHandle factHandle : factHandles) {
915             try {
916                 kieSession.delete(factHandle);
917             } catch (Exception e) {
918                 logger.warn(FACT_RETRIEVE_ERROR, factHandle, e);
919                 success = false;
920             }
921         }
922         return success;
923     }
924
925     @Override
926     public <T> boolean delete(@NonNull Class<T> fact) {
927         return this.getSessionNames().stream().map(ss -> delete(ss, fact)).reduce(false, Boolean::logicalOr);
928     }
929
930
931     @Override
932     public Class<?> fetchModelClass(String className) {
933         return ReflectionUtil.fetchClass(this.policyContainer.getClassLoader(), className);
934     }
935
936     /**
937      * Get recent source events.
938      *
939      * @return the recentSourceEvents
940      */
941     @Override
942     public Object[] getRecentSourceEvents() {
943         synchronized (this.recentSourceEvents) {
944             Object[] events = new Object[recentSourceEvents.size()];
945             return recentSourceEvents.toArray(events);
946         }
947     }
948
949     /**
950      * Get recent sink events.
951      *
952      * @return the recentSinkEvents
953      */
954     @Override
955     public String[] getRecentSinkEvents() {
956         synchronized (this.recentSinkEvents) {
957             String[] events = new String[recentSinkEvents.size()];
958             return recentSinkEvents.toArray(events);
959         }
960     }
961
962     @Override
963     public boolean isBrained() {
964         return true;
965     }
966
967
968     @Override
969     public String toString() {
970         StringBuilder builder = new StringBuilder();
971         builder
972             .append("MavenDroolsController [policyContainer=")
973             .append(policyContainer.getName())
974             .append(":")
975             .append(", alive=")
976             .append(alive)
977             .append(", locked=")
978             .append(", modelClassLoaderHash=")
979             .append(modelClassLoaderHash)
980             .append("]");
981         return builder.toString();
982     }
983
984     // these may be overridden by junit tests
985
986     protected EventProtocolCoder getCoderManager() {
987         return EventProtocolCoderConstants.getManager();
988     }
989
990     protected OrderedServiceImpl<DroolsControllerFeatureApi> getDroolsProviders() {
991         return DroolsControllerFeatureApiConstants.getProviders();
992     }
993
994     protected PolicyContainer makePolicyContainer(String groupId, String artifactId, String version) {
995         return new PolicyContainer(groupId, artifactId, version);
996     }
997
998     protected boolean isClass(String className) {
999         return ReflectionUtil.isClass(this.policyContainer.getClassLoader(), className);
1000     }
1001 }