2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017-2021 AT&T Intellectual Property. All rights reserved.
6 * Modifications Copyright (C) 2023-2024 Nordix Foundation.
7 * ================================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.drools.controller.internal;
24 import java.util.ArrayList;
25 import java.util.Collection;
26 import java.util.HashMap;
27 import java.util.List;
29 import java.util.Objects;
30 import java.util.stream.Collectors;
32 import lombok.NonNull;
33 import org.apache.commons.collections4.queue.CircularFifoQueue;
34 import org.apache.commons.lang3.StringUtils;
35 import org.drools.core.ClassObjectFilter;
36 import org.kie.api.definition.KiePackage;
37 import org.kie.api.definition.rule.Query;
38 import org.kie.api.runtime.KieSession;
39 import org.kie.api.runtime.rule.FactHandle;
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;
65 * Maven-based Drools Controller that interacts with the
66 * policy-core PolicyContainer and PolicySession to manage
67 * Drools containers instantiated using Maven.
69 public class MavenDroolsController implements DroolsController {
71 private static final String FACT_RETRIEVE_ERROR = "Object cannot be retrieved from fact {}";
76 private static final Logger logger = LoggerFactory.getLogger(MavenDroolsController.class);
79 * Policy Container, the access object to the policy-core layer.
82 protected final PolicyContainer policyContainer;
85 * alive status of this drools controller,
86 * reflects invocation of start()/stop() only.
88 protected volatile boolean alive = false;
91 * locked status of this drools controller,
92 * reflects if i/o drools related operations are permitted,
93 * more specifically: offer() and deliver().
94 * It does not affect the ability to start and stop
95 * underlying drools infrastructure
97 protected volatile boolean locked = false;
100 * list of topics, each with associated decoder classes, each
101 * with a list of associated filters.
103 protected List<TopicCoderFilterConfiguration> decoderConfigurations;
106 * list of topics, each with associated encoder classes, each
107 * with a list of associated filters.
109 protected List<TopicCoderFilterConfiguration> encoderConfigurations;
112 * recent source events processed.
114 protected final CircularFifoQueue<Object> recentSourceEvents = new CircularFifoQueue<>(10);
117 * recent sink events processed.
119 protected final CircularFifoQueue<String> recentSinkEvents = new CircularFifoQueue<>(10);
122 * original Drools Model/Rules classloader hash.
125 protected int modelClassLoaderHash;
128 * Expanded version of the constructor.
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
136 * @throws IllegalArgumentException invalid arguments passed in
138 public MavenDroolsController(String groupId,
141 List<TopicCoderFilterConfiguration> decoderConfigurations,
142 List<TopicCoderFilterConfiguration> encoderConfigurations) {
144 logger.info("drools-controller instantiation [{}:{}:{}]", groupId, artifactId, version);
146 if (groupId == null || groupId.isEmpty()) {
147 throw new IllegalArgumentException("Missing maven group-id coordinate");
150 if (artifactId == null || artifactId.isEmpty()) {
151 throw new IllegalArgumentException("Missing maven artifact-id coordinate");
154 if (version == null || version.isEmpty()) {
155 throw new IllegalArgumentException("Missing maven version coordinate");
158 this.policyContainer = makePolicyContainer(groupId, artifactId, version);
159 this.init(decoderConfigurations, encoderConfigurations);
161 logger.debug("{}: instantiation completed ", this);
165 * init encoding/decoding configuration.
167 * @param decoderConfigurations list of topic -> decoders -> filters mapping
168 * @param encoderConfigurations list of topic -> encoders -> filters mapping
170 protected void init(List<TopicCoderFilterConfiguration> decoderConfigurations,
171 List<TopicCoderFilterConfiguration> encoderConfigurations) {
173 this.decoderConfigurations = decoderConfigurations;
174 this.encoderConfigurations = encoderConfigurations;
176 this.initCoders(decoderConfigurations, true);
177 this.initCoders(encoderConfigurations, false);
179 this.modelClassLoaderHash = this.policyContainer.getClassLoader().hashCode();
183 public void updateToVersion(String newGroupId, String newArtifactId, String newVersion,
184 List<TopicCoderFilterConfiguration> decoderConfigurations,
185 List<TopicCoderFilterConfiguration> encoderConfigurations)
186 throws LinkageError {
188 logger.info("updating version -> [{}:{}:{}]", newGroupId, newArtifactId, newVersion);
190 validateText(newGroupId, "Missing maven group-id coordinate");
191 validateText(newArtifactId, "Missing maven artifact-id coordinate");
192 validateText(newVersion, "Missing maven version coordinate");
194 validateHasBrain(newGroupId, newArtifactId, newVersion);
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);
203 validateNewVersion(newGroupId, newArtifactId, newVersion);
206 String messages = this.policyContainer.updateToVersion(newVersion);
207 logger.warn("{} UPGRADE results: {}", this, messages);
210 * If all successful (can load new container), now we can remove all coders from previous sessions
217 this.init(decoderConfigurations, encoderConfigurations);
219 logger.info("UPDATE-TO-VERSION: completed {}", this);
222 private void validateText(String text, String errorMessage) {
223 if (StringUtils.isBlank(text)) {
224 throw new IllegalArgumentException(errorMessage);
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 + ":"
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);
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.
253 * @param coderConfigurations list of topic -> decoders -> filters mapping
255 protected void initCoders(List<TopicCoderFilterConfiguration> coderConfigurations,
258 logger.info("INIT-CODERS: {}", this);
260 if (coderConfigurations == null) {
265 for (TopicCoderFilterConfiguration coderConfig: coderConfigurations) {
266 String topic = coderConfig.getTopic();
268 var customGsonCoder = getCustomCoder(coderConfig);
270 List<PotentialCoderFilter> coderFilters = coderConfig.getCoderFilters();
271 if (coderFilters == null || coderFilters.isEmpty()) {
275 for (PotentialCoderFilter coderFilter : coderFilters) {
276 String potentialCodedClass = coderFilter.getCodedClass();
277 JsonProtocolFilter protocolFilter = coderFilter.getFilter();
279 if (isNotAClass(potentialCodedClass)) {
280 throw makeRetrieveEx(potentialCodedClass);
282 logClassFetched(potentialCodedClass);
286 getCoderManager().addDecoder(EventProtocolParams.builder()
287 .groupId(this.getGroupId())
288 .artifactId(this.getArtifactId())
290 .eventClass(potentialCodedClass)
291 .protocolFilter(protocolFilter)
292 .customGsonCoder(customGsonCoder)
293 .modelClassLoaderHash(this.policyContainer.getClassLoader().hashCode()).build());
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()).build());
306 private CustomGsonCoder getCustomCoder(TopicCoderFilterConfiguration coderConfig) {
307 var customGsonCoder = coderConfig.getCustomGsonCoder();
308 if (customGsonCoder != null
309 && customGsonCoder.getClassContainer() != null
310 && !customGsonCoder.getClassContainer().isEmpty()) {
312 String customGsonCoderClass = customGsonCoder.getClassContainer();
313 if (isNotAClass(customGsonCoderClass)) {
314 throw makeRetrieveEx(customGsonCoderClass);
316 logClassFetched(customGsonCoderClass);
319 return customGsonCoder;
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
327 private IllegalArgumentException makeRetrieveEx(String itemName) {
328 logger.error("{} cannot be retrieved", itemName);
329 return new IllegalArgumentException(itemName + " cannot be retrieved");
333 * Logs the name of the class that was fetched.
334 * @param className class name fetched
336 private void logClassFetched(String className) {
337 logger.info("CLASS FETCHED {}", className);
344 protected void removeDecoders() {
345 logger.info("REMOVE-DECODERS: {}", this);
347 if (this.decoderConfigurations == null) {
352 for (TopicCoderFilterConfiguration coderConfig: decoderConfigurations) {
353 String topic = coderConfig.getTopic();
354 getCoderManager().removeDecoders(this.getGroupId(), this.getArtifactId(), topic);
361 protected void removeEncoders() {
363 logger.info("REMOVE-ENCODERS: {}", this);
365 if (this.encoderConfigurations == null) {
369 for (TopicCoderFilterConfiguration coderConfig: encoderConfigurations) {
370 String topic = coderConfig.getTopic();
371 getCoderManager().removeEncoders(this.getGroupId(), this.getArtifactId(), topic);
377 public boolean ownsCoder(Class<?> coderClass, int modelHash) {
378 if (isNotAClass(coderClass.getName())) {
379 logger.error("{}{} cannot be retrieved. ", this, coderClass.getName());
383 if (modelHash == this.modelClassLoaderHash) {
384 logger.info("{}{} class loader matches original drools controller rules classloader {}",
385 coderClass.getName(), this, coderClass.getClassLoader());
388 logger.warn("{}{} class loaders don't match {} vs {}", this, coderClass.getName(),
389 coderClass.getClassLoader(), this.policyContainer.getClassLoader());
395 public boolean start() {
397 logger.info("START: {}", this);
399 synchronized (this) {
406 return this.policyContainer.start();
410 public boolean stop() {
412 logger.info("STOP: {}", this);
414 synchronized (this) {
421 return this.policyContainer.stop();
425 public void shutdown() {
426 logger.info("{}: SHUTDOWN", this);
431 } catch (Exception e) {
432 logger.error("{} SHUTDOWN FAILED because of {}", this, e.getMessage(), e);
434 this.policyContainer.shutdown();
441 logger.info("{}: HALT", this);
446 } catch (Exception e) {
447 logger.error("{} HALT FAILED because of {}", this, e.getMessage(), e);
449 this.policyContainer.destroy();
454 * removes this drools controllers and encoders and decoders from operation.
456 protected void removeCoders() {
457 logger.info("{}: REMOVE-CODERS", this);
460 this.removeDecoders();
461 } catch (IllegalArgumentException e) {
462 logger.error("{} REMOVE-DECODERS FAILED because of {}", this, e.getMessage(), e);
466 this.removeEncoders();
467 } catch (IllegalArgumentException e) {
468 logger.error("{} REMOVE-ENCODERS FAILED because of {}", this, e.getMessage(), e);
473 public boolean isAlive() {
478 public boolean offer(String topic, String event) {
479 logger.debug("{}: OFFER raw event from {}", this, topic);
481 if (this.locked || !this.alive || this.policyContainer.getPolicySessions().isEmpty()) {
485 // 1. Now, check if this topic has a decoder:
487 if (!getCoderManager().isDecodingSupported(this.getGroupId(),
488 this.getArtifactId(),
491 logger.warn("{}: DECODING-UNSUPPORTED {}:{}:{}", this, // NOSONAR
492 topic, this.getGroupId(), this.getArtifactId());
500 anEvent = getCoderManager().decode(this.getGroupId(),
501 this.getArtifactId(),
504 } catch (UnsupportedOperationException uoe) {
505 logger.debug("{}: DECODE FAILED: {} <- {} because of {}", this, topic,
506 event, uoe.getMessage(), uoe);
508 } catch (Exception e) {
509 logger.warn("{}: DECODE FAILED: {} <- {} because of {}", this, topic,
510 event, e.getMessage(), e);
514 return offer(anEvent);
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.
524 public <T> boolean offer(T event) { // NOSONAR
525 logger.debug("{}: OFFER event", this);
527 if (this.locked || !this.alive || this.policyContainer.getPolicySessions().isEmpty()) {
531 synchronized (this.recentSourceEvents) {
532 this.recentSourceEvents.add(event);
535 PdpJmx.getInstance().updateOccurred();
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))) {
546 boolean successInject = this.policyContainer.insertAll(event);
547 if (!successInject) {
548 logger.warn("{} Failed to inject into PolicyContainer {}", this, this.getSessionNames());
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));
561 public boolean deliver(TopicSink sink, Object event) {
563 logger.info("{}DELIVER: {} FROM {} TO {}", this, event, this, sink);
565 for (DroolsControllerFeatureApi feature : getDroolsProviders().getList()) {
567 if (feature.beforeDeliver(this, sink, event)) {
570 } catch (Exception e) {
571 logger.error("{}: feature {} before-deliver failure because of {}", this, feature.getClass().getName(),
577 throw new IllegalArgumentException(this + " invalid sink");
581 throw new IllegalArgumentException(this + " invalid event");
585 throw new IllegalStateException(this + " is locked");
589 throw new IllegalStateException(this + " is stopped");
593 getCoderManager().encode(sink.getTopic(), event, this);
595 synchronized (this.recentSinkEvents) {
596 this.recentSinkEvents.add(json);
599 boolean success = sink.send(json);
601 for (DroolsControllerFeatureApi feature : getDroolsProviders().getList()) {
603 if (feature.afterDeliver(this, sink, event, json, success)) {
606 } catch (Exception e) {
607 logger.error("{}: feature {} after-deliver failure because of {}", this, feature.getClass().getName(),
617 public String getVersion() {
618 return this.policyContainer.getVersion();
622 public String getArtifactId() {
623 return this.policyContainer.getArtifactId();
627 public String getGroupId() {
628 return this.policyContainer.getGroupId();
632 public synchronized boolean lock() {
633 logger.info("LOCK: {}", this);
640 public synchronized boolean unlock() {
641 logger.info("UNLOCK: {}", this);
648 public boolean isLocked() {
654 public PolicyContainer getContainer() {
655 return this.policyContainer;
658 @GsonJsonProperty("sessions")
660 public List<String> getSessionNames() {
661 return getSessionNames(true);
667 * @param abbreviated true for the short form, otherwise the long form
668 * @return session names
670 protected List<String> getSessionNames(boolean abbreviated) {
671 List<String> sessionNames = new ArrayList<>();
673 for (PolicySession session: this.policyContainer.getPolicySessions()) {
675 sessionNames.add(session.getName());
677 sessionNames.add(session.getFullName());
680 } catch (Exception e) {
681 logger.warn("Can't retrieve CORE sessions", e);
682 sessionNames.add(e.getMessage());
687 @GsonJsonProperty("sessionCoordinates")
689 public List<String> getCanonicalSessionNames() {
690 return getSessionNames(false);
694 public List<String> getBaseDomainNames() {
695 return new ArrayList<>(this.policyContainer.getKieContainer().getKieBaseNames());
699 * provides the underlying core layer container sessions.
701 * @return the attached Policy Container
703 protected List<PolicySession> getSessions() {
704 return new ArrayList<>(this.policyContainer.getPolicySessions());
708 * provides the underlying core layer container session with name sessionName.
710 * @param sessionName session name
711 * @return the attached Policy Container
712 * @throws IllegalArgumentException when an invalid session name is provided
713 * @throws IllegalStateException when the drools controller is in an invalid state
715 protected PolicySession getSession(String sessionName) {
716 if (sessionName == null || sessionName.isEmpty()) {
717 throw new IllegalArgumentException("A Session Name must be provided");
720 List<PolicySession> sessions = this.getSessions();
721 for (PolicySession session : sessions) {
722 if (sessionName.equals(session.getName()) || sessionName.equals(session.getFullName())) {
727 throw invalidSessNameEx(sessionName);
730 private IllegalArgumentException invalidSessNameEx(String sessionName) {
731 return new IllegalArgumentException("Invalid Session Name: " + sessionName);
735 public Map<String, Integer> factClassNames(String sessionName) {
736 validateSessionName(sessionName);
738 Map<String, Integer> classNames = new HashMap<>();
740 var session = getSession(sessionName);
741 var kieSession = session.getKieSession();
743 Collection<FactHandle> facts = kieSession.getFactHandles();
744 for (FactHandle fact : facts) {
746 String className = kieSession.getObject(fact).getClass().getName();
747 if (classNames.containsKey(className)) {
748 classNames.put(className, classNames.get(className) + 1);
750 classNames.put(className, 1);
752 } catch (Exception e) {
753 logger.warn(FACT_RETRIEVE_ERROR, fact, e);
760 private void validateSessionName(String sessionName) {
761 if (sessionName == null || sessionName.isEmpty()) {
762 throw invalidSessNameEx(sessionName);
767 public long factCount(String sessionName) {
768 validateSessionName(sessionName);
770 return getSession(sessionName).getKieSession().getFactCount();
774 public List<Object> facts(String sessionName, String className, boolean delete) {
775 validateSessionName(sessionName);
777 if (className == null || className.isEmpty()) {
778 throw new IllegalArgumentException("Invalid Class Name: " + className);
782 ReflectionUtil.fetchClass(this.policyContainer.getClassLoader(), className);
783 if (factClass == null) {
784 throw new IllegalArgumentException("Class cannot be fetched in model's classloader: " + className);
787 var session = getSession(sessionName);
788 var kieSession = session.getKieSession();
790 List<Object> factObjects = new ArrayList<>();
792 Collection<FactHandle> factHandles = kieSession.getFactHandles(new ClassObjectFilter(factClass));
793 for (FactHandle factHandle : factHandles) {
795 factObjects.add(kieSession.getObject(factHandle));
797 kieSession.delete(factHandle);
799 } catch (Exception e) {
800 logger.warn(FACT_RETRIEVE_ERROR, factHandle, e);
808 public <T> List<T> facts(@NonNull String sessionName, @NonNull Class<T> clazz) {
809 return facts(sessionName, clazz.getName(), false)
811 .filter(clazz::isInstance)
813 .collect(Collectors.toList());
817 public List<Object> factQuery(String sessionName, String queryName, String queriedEntity,
818 boolean delete, Object... queryParams) {
819 validateSessionName(sessionName);
821 if (queryName == null || queryName.isEmpty()) {
822 throw new IllegalArgumentException("Invalid Query Name: " + queryName);
825 if (queriedEntity == null || queriedEntity.isEmpty()) {
826 throw new IllegalArgumentException("Invalid Queried Entity: " + queriedEntity);
829 var session = getSession(sessionName);
830 var kieSession = session.getKieSession();
832 validateQueryName(kieSession, queryName);
834 List<Object> factObjects = new ArrayList<>();
836 var queryResults = kieSession.getQueryResults(queryName, queryParams);
837 for (QueryResultsRow row : queryResults) {
839 factObjects.add(row.get(queriedEntity));
841 kieSession.delete(row.getFactHandle(queriedEntity));
843 } catch (Exception e) {
844 logger.warn("Object cannot be retrieved from row: {}", row, e);
851 private void validateQueryName(KieSession kieSession, String queryName) {
852 for (KiePackage kiePackage : kieSession.getKieBase().getKiePackages()) {
853 for (Query q : kiePackage.getQueries()) {
854 if (q.getName() != null && q.getName().equals(queryName)) {
860 throw new IllegalArgumentException("Invalid Query Name: " + queryName);
864 public <T> boolean delete(@NonNull String sessionName, @NonNull T objFact) {
865 var kieSession = getSession(sessionName).getKieSession();
867 // try first to get the object to delete first by reference
869 var quickFact = kieSession.getFactHandle(objFact);
870 if (quickFact != null) {
871 logger.info("Fast delete of {} from {}", objFact, sessionName);
872 kieSession.delete(quickFact);
876 // otherwise, try to the delete the fact associated with the object by scanning all
877 // facts from the same type and performing object equality. The set of facts
878 // is restricted to those of the same type
880 Collection<FactHandle> factHandles = kieSession.getFactHandles(new ClassObjectFilter(objFact.getClass()));
881 for (FactHandle factHandle : factHandles) {
882 if (Objects.equals(objFact, kieSession.getObject(factHandle))) {
883 logger.info("Slow delete of {} of type {} from {}",
884 objFact, objFact.getClass().getName(), sessionName);
885 kieSession.delete(factHandle);
894 public <T> boolean delete(@NonNull T fact) {
895 return this.getSessionNames().stream().map(ss -> delete(ss, fact)).reduce(false, Boolean::logicalOr);
899 public <T> boolean delete(@NonNull String sessionName, @NonNull Class<T> fact) {
900 var session = getSession(sessionName);
901 var kieSession = session.getKieSession();
904 Collection<FactHandle> factHandles = kieSession.getFactHandles(new ClassObjectFilter(fact));
905 for (FactHandle factHandle : factHandles) {
907 kieSession.delete(factHandle);
908 } catch (Exception e) {
909 logger.warn(FACT_RETRIEVE_ERROR, factHandle, e);
917 public <T> boolean delete(@NonNull Class<T> fact) {
918 return this.getSessionNames().stream().map(ss -> delete(ss, fact)).reduce(false, Boolean::logicalOr);
922 public <T> boolean exists(@NonNull String sessionName, @NonNull T objFact) {
923 var kieSession = getSession(sessionName).getKieSession();
924 if (kieSession.getFactHandle(objFact) != null) {
928 // try to find the object by equality comparison instead if it could not be
929 // found by reference
931 Collection<FactHandle> factHandles = kieSession.getFactHandles(new ClassObjectFilter(objFact.getClass()));
932 for (FactHandle factHandle : factHandles) {
933 if (Objects.equals(objFact, kieSession.getObject(factHandle))) {
942 public <T> boolean exists(@NonNull T fact) {
943 return this.getSessionNames().stream().anyMatch(ss -> exists(ss, fact));
947 public Class<?> fetchModelClass(String className) {
948 return ReflectionUtil.fetchClass(this.policyContainer.getClassLoader(), className);
952 * Get recent source events.
954 * @return the recentSourceEvents
957 public Object[] getRecentSourceEvents() {
958 synchronized (this.recentSourceEvents) {
959 var events = new Object[recentSourceEvents.size()];
960 return recentSourceEvents.toArray(events);
965 * Get recent sink events.
967 * @return the recentSinkEvents
970 public String[] getRecentSinkEvents() {
971 synchronized (this.recentSinkEvents) {
972 var events = new String[recentSinkEvents.size()];
973 return recentSinkEvents.toArray(events);
978 public boolean isBrained() {
984 public String toString() {
985 return "MavenDroolsController [policyContainer=" + policyContainer.getName() + ":" + ", alive=" + alive
986 + ", locked=" + ", modelClassLoaderHash=" + modelClassLoaderHash + "]";
989 // these may be overridden by junit tests
991 protected EventProtocolCoder getCoderManager() {
992 return EventProtocolCoderConstants.getManager();
995 protected OrderedServiceImpl<DroolsControllerFeatureApi> getDroolsProviders() {
996 return DroolsControllerFeatureApiConstants.getProviders();
999 protected PolicyContainer makePolicyContainer(String groupId, String artifactId, String version) {
1000 return new PolicyContainer(groupId, artifactId, version);
1003 protected boolean isNotAClass(String className) {
1004 return !ReflectionUtil.isClass(this.policyContainer.getClassLoader(), className);