Search in sources :

Example 1 with CreateAtomCommandSuccessEvent

use of won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandSuccessEvent in project webofneeds by researchstudio-sat.

the class InitFactoryAction method doRun.

@Override
protected void doRun(Event event, EventListener executingListener) throws Exception {
    if (!(event instanceof InitializeEvent) || !(getEventListenerContext().getBotContextWrapper() instanceof FactoryBotContextWrapper)) {
        logger.error("InitFactoryAction can only handle InitializeEvent with FactoryBotContextWrapper");
        return;
    }
    EventListenerContext ctx = getEventListenerContext();
    EventBus bus = ctx.getEventBus();
    FactoryBotContextWrapper botContextWrapper = (FactoryBotContextWrapper) ctx.getBotContextWrapper();
    // create a targeted counter that will publish an event when the target is
    // reached
    // in this case, 0 unfinished atom creations means that all atoms were created
    final TargetCounterDecorator creationUnfinishedCounter = new TargetCounterDecorator(ctx, new CounterImpl("creationUnfinished"), 0);
    BotTrigger createFactoryAtomTrigger = new BotTrigger(ctx, Duration.ofMillis(FACTORYATOMCREATION_DURATION_INMILLIS));
    createFactoryAtomTrigger.activate();
    bus.subscribe(StartFactoryAtomCreationEvent.class, new ActionOnFirstEventListener(ctx, new PublishEventAction(ctx, new StartBotTriggerCommandEvent(createFactoryAtomTrigger))));
    bus.subscribe(BotTriggerEvent.class, new ActionOnTriggerEventListener(ctx, createFactoryAtomTrigger, new BaseEventBotAction(ctx) {

        @Override
        protected void doRun(Event event, EventListener executingListener) throws Exception {
            if (isTooManyMessagesInFlight(messagesInFlightCounter)) {
                return;
            }
            adjustTriggerInterval(createFactoryAtomTrigger, messagesInFlightCounter);
            // defined via spring
            AtomProducer atomProducer = ctx.getAtomProducer();
            Dataset dataset = atomProducer.create();
            if (dataset == null && atomProducer.isExhausted()) {
                bus.publish(new AtomProducerExhaustedEvent());
                bus.unsubscribe(executingListener);
                return;
            }
            URI atomUriFromProducer = null;
            Resource atomResource = WonRdfUtils.AtomUtils.getAtomResource(dataset);
            if (atomResource.isURIResource()) {
                atomUriFromProducer = URI.create(atomResource.getURI());
            }
            if (atomUriFromProducer != null) {
                URI atomURI = botContextWrapper.getURIFromInternal(atomUriFromProducer);
                if (atomURI != null) {
                    bus.publish(new FactoryAtomCreationSkippedEvent());
                } else {
                    bus.publish(new CreateAtomCommandEvent(dataset, botContextWrapper.getFactoryListName()));
                }
            }
        }
    }));
    bus.subscribe(CreateAtomCommandSuccessEvent.class, // decrease the
    new DecrementCounterAction(ctx, creationUnfinishedCounter), // count a successful atom
    new IncrementCounterAction(ctx, atomCreationSuccessfulCounter), // creation
    new BaseEventBotAction(ctx) {

        @Override
        protected void doRun(Event event, EventListener executingListener) throws Exception {
            if (event instanceof CreateAtomCommandSuccessEvent) {
                CreateAtomCommandSuccessEvent atomCreatedEvent = (CreateAtomCommandSuccessEvent) event;
                botContextWrapper.addInternalIdToUriReference(atomCreatedEvent.getAtomUriBeforeCreation(), atomCreatedEvent.getAtomURI());
            }
        }
    });
    bus.subscribe(CreateAtomCommandEvent.class, // execute the atom creation for the atom in the event
    new ExecuteCreateAtomCommandAction(ctx), // increase the
    new IncrementCounterAction(ctx, atomCreationStartedCounter), // increase the
    new IncrementCounterAction(ctx, creationUnfinishedCounter));
    // if an atom is already created we skip the recreation of it and increase the
    // atomCreationSkippedCounter
    bus.subscribe(FactoryAtomCreationSkippedEvent.class, new IncrementCounterAction(ctx, atomCreationSkippedCounter));
    // if a creation failed, we don't want to keep us from keeping the correct count
    bus.subscribe(CreateAtomCommandFailureEvent.class, // decrease the
    new DecrementCounterAction(ctx, creationUnfinishedCounter), // count an unsuccessful atom
    new IncrementCounterAction(ctx, atomCreationFailedCounter));
    // when the atomproducer is exhausted, we stop the creator (trigger) and we have
    // to wait until all unfinished atom creations finish
    // when they do, the InitFactoryFinishedEvent is published
    bus.subscribe(AtomProducerExhaustedEvent.class, new ActionOnFirstEventListener(ctx, new MultipleActions(ctx, new PublishEventAction(ctx, new StopBotTriggerCommandEvent(createFactoryAtomTrigger)), new BaseEventBotAction(ctx) {

        @Override
        protected void doRun(Event event, EventListener executingListener) throws Exception {
            // when we're called, there probably are atom creations
            // unfinished, but there may not be
            // a)
            // first, prepare for the case when there are unfinished
            // atom creations:
            // we register a listener, waiting for the unfinished
            // counter to reach 0
            EventListener waitForUnfinishedAtomsListener = bus.subscribe(TargetCountReachedEvent.class, new ActionOnFirstEventListener(ctx, new TargetCounterFilter(creationUnfinishedCounter), new PublishEventAction(ctx, new InitFactoryFinishedEvent())));
            // now, we can check if we've already reached the target
            if (creationUnfinishedCounter.getCount() <= 0) {
                // ok, turned out we didn't need that listener
                bus.unsubscribe(waitForUnfinishedAtomsListener);
                bus.publish(new InitFactoryFinishedEvent());
            }
        }
    })));
    bus.subscribe(InitFactoryFinishedEvent.class, new ActionOnFirstEventListener(ctx, "factoryCreateStatsLogger", new BaseEventBotAction(ctx) {

        @Override
        protected void doRun(Event event, EventListener executingListener) throws Exception {
            logger.info("FactoryAtomCreation finished: total:{}, successful: {}, failed: {}, skipped: {}", new Object[] { atomCreationStartedCounter.getCount(), atomCreationSuccessfulCounter.getCount(), atomCreationFailedCounter.getCount(), atomCreationSkippedCounter.getCount() });
        }
    }));
    // MessageInFlight counter handling *************************
    bus.subscribe(MessageCommandEvent.class, new IncrementCounterAction(ctx, messagesInFlightCounter));
    bus.subscribe(MessageCommandResultEvent.class, new DecrementCounterAction(ctx, messagesInFlightCounter));
    // if we receive a
    bus.subscribe(MessageCommandFailureEvent.class, new LogMessageCommandFailureAction(ctx));
    // message command
    // failure, log it
    // Start the atom creation stuff
    bus.publish(new StartFactoryAtomCreationEvent());
}
Also used : InitializeEvent(won.bot.framework.eventbot.event.impl.lifecycle.InitializeEvent) EventListenerContext(won.bot.framework.eventbot.EventListenerContext) PublishEventAction(won.bot.framework.eventbot.action.impl.PublishEventAction) StartFactoryAtomCreationEvent(won.bot.framework.eventbot.event.impl.factory.StartFactoryAtomCreationEvent) EventBus(won.bot.framework.eventbot.bus.EventBus) CounterImpl(won.bot.framework.eventbot.action.impl.counter.CounterImpl) StopBotTriggerCommandEvent(won.bot.framework.eventbot.action.impl.trigger.StopBotTriggerCommandEvent) URI(java.net.URI) LogMessageCommandFailureAction(won.bot.framework.eventbot.action.impl.wonmessage.execCommand.LogMessageCommandFailureAction) ExecuteCreateAtomCommandAction(won.bot.framework.eventbot.action.impl.wonmessage.execCommand.ExecuteCreateAtomCommandAction) MultipleActions(won.bot.framework.eventbot.action.impl.MultipleActions) CreateAtomCommandSuccessEvent(won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandSuccessEvent) ActionOnFirstEventListener(won.bot.framework.eventbot.listener.impl.ActionOnFirstEventListener) ActionOnTriggerEventListener(won.bot.framework.eventbot.action.impl.trigger.ActionOnTriggerEventListener) EventListener(won.bot.framework.eventbot.listener.EventListener) IncrementCounterAction(won.bot.framework.eventbot.action.impl.counter.IncrementCounterAction) AtomProducer(won.bot.framework.component.atomproducer.AtomProducer) InitFactoryFinishedEvent(won.bot.framework.eventbot.event.impl.factory.InitFactoryFinishedEvent) AtomProducerExhaustedEvent(won.bot.framework.eventbot.event.impl.atomlifecycle.AtomProducerExhaustedEvent) TargetCounterFilter(won.bot.framework.eventbot.filter.impl.TargetCounterFilter) Dataset(org.apache.jena.query.Dataset) FactoryAtomCreationSkippedEvent(won.bot.framework.eventbot.event.impl.factory.FactoryAtomCreationSkippedEvent) Resource(org.apache.jena.rdf.model.Resource) TargetCountReachedEvent(won.bot.framework.eventbot.action.impl.counter.TargetCountReachedEvent) FactoryBotContextWrapper(won.bot.framework.bot.context.FactoryBotContextWrapper) StartBotTriggerCommandEvent(won.bot.framework.eventbot.action.impl.trigger.StartBotTriggerCommandEvent) ActionOnTriggerEventListener(won.bot.framework.eventbot.action.impl.trigger.ActionOnTriggerEventListener) BaseEventBotAction(won.bot.framework.eventbot.action.BaseEventBotAction) MessageCommandEvent(won.bot.framework.eventbot.event.impl.command.MessageCommandEvent) CreateAtomCommandSuccessEvent(won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandSuccessEvent) InitializeEvent(won.bot.framework.eventbot.event.impl.lifecycle.InitializeEvent) StartBotTriggerCommandEvent(won.bot.framework.eventbot.action.impl.trigger.StartBotTriggerCommandEvent) StartFactoryAtomCreationEvent(won.bot.framework.eventbot.event.impl.factory.StartFactoryAtomCreationEvent) CreateAtomCommandFailureEvent(won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandFailureEvent) StopBotTriggerCommandEvent(won.bot.framework.eventbot.action.impl.trigger.StopBotTriggerCommandEvent) AtomProducerExhaustedEvent(won.bot.framework.eventbot.event.impl.atomlifecycle.AtomProducerExhaustedEvent) BotTriggerEvent(won.bot.framework.eventbot.action.impl.trigger.BotTriggerEvent) MessageCommandResultEvent(won.bot.framework.eventbot.event.impl.command.MessageCommandResultEvent) MessageCommandFailureEvent(won.bot.framework.eventbot.event.impl.command.MessageCommandFailureEvent) FactoryAtomCreationSkippedEvent(won.bot.framework.eventbot.event.impl.factory.FactoryAtomCreationSkippedEvent) InitFactoryFinishedEvent(won.bot.framework.eventbot.event.impl.factory.InitFactoryFinishedEvent) Event(won.bot.framework.eventbot.event.Event) CreateAtomCommandEvent(won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandEvent) TargetCountReachedEvent(won.bot.framework.eventbot.action.impl.counter.TargetCountReachedEvent) CreateAtomCommandEvent(won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandEvent) ActionOnFirstEventListener(won.bot.framework.eventbot.listener.impl.ActionOnFirstEventListener) DecrementCounterAction(won.bot.framework.eventbot.action.impl.counter.DecrementCounterAction) BotTrigger(won.bot.framework.eventbot.action.impl.trigger.BotTrigger) TargetCounterDecorator(won.bot.framework.eventbot.action.impl.counter.TargetCounterDecorator)

Example 2 with CreateAtomCommandSuccessEvent

use of won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandSuccessEvent in project webofneeds by researchstudio-sat.

the class ExecuteCreateAtomCommandAction method doRun.

@Override
protected void doRun(Event event, EventListener executingListener) throws Exception {
    if (!(event instanceof CreateAtomCommandEvent)) {
        return;
    }
    EventListenerContext ctx = getEventListenerContext();
    CreateAtomCommandEvent createAtomCommandEvent = (CreateAtomCommandEvent) event;
    Dataset atomDataset = createAtomCommandEvent.getAtomDataset();
    if (atomDataset == null) {
        logger.warn("CreateAtomCommandEvent did not contain an atom model, aborting atom creation");
        ctx.getEventBus().publish(new AtomCreationAbortedEvent(null, null, createAtomCommandEvent, "CreateAtomCommandEvent did not contain an atom model, aborting atom creation"));
        return;
    }
    URI atomUriFromProducer = null;
    Resource atomResource = WonRdfUtils.AtomUtils.getAtomResource(atomDataset);
    if (atomResource.isURIResource()) {
        atomUriFromProducer = URI.create(atomResource.getURI());
        RdfUtils.replaceBaseURI(atomDataset, atomResource.getURI(), true);
    } else {
        RdfUtils.replaceBaseResource(atomDataset, atomResource, true);
    }
    final URI atomUriBeforeCreation = atomUriFromProducer;
    AtomModelWrapper atomModelWrapper = new AtomModelWrapper(atomDataset);
    final Dataset atomDatasetWithSockets = atomModelWrapper.copyDatasetWithoutSysinfo();
    final URI wonNodeUri = ctx.getNodeURISource().getNodeURI();
    logger.debug("creating atom on won node {} with content {} ", wonNodeUri, StringUtils.abbreviate(RdfUtils.toString(atomDatasetWithSockets), 150));
    WonNodeInformationService wonNodeInformationService = ctx.getWonNodeInformationService();
    final URI atomURI = wonNodeInformationService.generateAtomURI(wonNodeUri);
    RdfUtils.renameResourceWithPrefix(atomDataset, atomResource.getURI(), atomURI.toString());
    WonMessage createAtomMessage = createWonMessage(atomURI, atomDatasetWithSockets);
    createAtomMessage = ctx.getWonMessageSender().prepareMessage(createAtomMessage);
    // remember the atom URI so we can react to success/failure responses
    ctx.getBotContextWrapper().rememberAtomUri(atomURI);
    EventListener successCallback = event12 -> {
        logger.debug("atom creation successful, new atom URI is {}", atomURI);
        ctx.getEventBus().publish(new CreateAtomCommandSuccessEvent(atomURI, atomUriBeforeCreation, createAtomCommandEvent));
    };
    EventListener failureCallback = event1 -> {
        String textMessage = WonRdfUtils.MessageUtils.getTextMessage(((FailureResponseEvent) event1).getFailureMessage());
        logger.debug("atom creation failed for atom URI {}, original message URI {}: {}", new Object[] { atomURI, ((FailureResponseEvent) event1).getOriginalMessageURI(), textMessage });
        ctx.getEventBus().publish(new CreateAtomCommandFailureEvent(atomURI, atomUriBeforeCreation, createAtomCommandEvent, textMessage));
        ctx.getBotContextWrapper().removeAtomUri(atomURI);
    };
    EventBotActionUtils.makeAndSubscribeResponseListener(createAtomMessage, successCallback, failureCallback, ctx);
    logger.debug("registered listeners for response to message URI {}", createAtomMessage.getMessageURI());
    ctx.getWonMessageSender().sendMessage(createAtomMessage);
    logger.debug("atom creation message sent with message URI {}", createAtomMessage.getMessageURI());
}
Also used : WonMessageBuilderException(won.protocol.exception.WonMessageBuilderException) LoggerFactory(org.slf4j.LoggerFactory) StringUtils(org.apache.commons.lang3.StringUtils) CreateAtomCommandSuccessEvent(won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandSuccessEvent) WonMessage(won.protocol.message.WonMessage) WonMessageBuilder(won.protocol.message.builder.WonMessageBuilder) Resource(org.apache.jena.rdf.model.Resource) URI(java.net.URI) Dataset(org.apache.jena.query.Dataset) EventListenerContext(won.bot.framework.eventbot.EventListenerContext) WonNodeInformationService(won.protocol.service.WonNodeInformationService) CreateAtomCommandFailureEvent(won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandFailureEvent) WONMATCH(won.protocol.vocabulary.WONMATCH) Logger(org.slf4j.Logger) AtomCreationAbortedEvent(won.bot.framework.eventbot.event.impl.command.create.AtomCreationAbortedEvent) MethodHandles(java.lang.invoke.MethodHandles) BaseEventBotAction(won.bot.framework.eventbot.action.BaseEventBotAction) EventBotActionUtils(won.bot.framework.eventbot.action.EventBotActionUtils) FailureResponseEvent(won.bot.framework.eventbot.event.impl.wonmessage.FailureResponseEvent) WonRdfUtils(won.protocol.util.WonRdfUtils) AtomModelWrapper(won.protocol.util.AtomModelWrapper) Event(won.bot.framework.eventbot.event.Event) RdfUtils(won.protocol.util.RdfUtils) CreateAtomCommandEvent(won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandEvent) EventListener(won.bot.framework.eventbot.listener.EventListener) EventListenerContext(won.bot.framework.eventbot.EventListenerContext) Dataset(org.apache.jena.query.Dataset) CreateAtomCommandFailureEvent(won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandFailureEvent) Resource(org.apache.jena.rdf.model.Resource) WonNodeInformationService(won.protocol.service.WonNodeInformationService) URI(java.net.URI) AtomCreationAbortedEvent(won.bot.framework.eventbot.event.impl.command.create.AtomCreationAbortedEvent) CreateAtomCommandSuccessEvent(won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandSuccessEvent) WonMessage(won.protocol.message.WonMessage) AtomModelWrapper(won.protocol.util.AtomModelWrapper) CreateAtomCommandEvent(won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandEvent) EventListener(won.bot.framework.eventbot.listener.EventListener) FailureResponseEvent(won.bot.framework.eventbot.event.impl.wonmessage.FailureResponseEvent)

Aggregations

URI (java.net.URI)2 Dataset (org.apache.jena.query.Dataset)2 Resource (org.apache.jena.rdf.model.Resource)2 EventListenerContext (won.bot.framework.eventbot.EventListenerContext)2 BaseEventBotAction (won.bot.framework.eventbot.action.BaseEventBotAction)2 Event (won.bot.framework.eventbot.event.Event)2 CreateAtomCommandEvent (won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandEvent)2 CreateAtomCommandFailureEvent (won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandFailureEvent)2 CreateAtomCommandSuccessEvent (won.bot.framework.eventbot.event.impl.command.create.CreateAtomCommandSuccessEvent)2 EventListener (won.bot.framework.eventbot.listener.EventListener)2 MethodHandles (java.lang.invoke.MethodHandles)1 StringUtils (org.apache.commons.lang3.StringUtils)1 Logger (org.slf4j.Logger)1 LoggerFactory (org.slf4j.LoggerFactory)1 FactoryBotContextWrapper (won.bot.framework.bot.context.FactoryBotContextWrapper)1 AtomProducer (won.bot.framework.component.atomproducer.AtomProducer)1 EventBotActionUtils (won.bot.framework.eventbot.action.EventBotActionUtils)1 MultipleActions (won.bot.framework.eventbot.action.impl.MultipleActions)1 PublishEventAction (won.bot.framework.eventbot.action.impl.PublishEventAction)1 CounterImpl (won.bot.framework.eventbot.action.impl.counter.CounterImpl)1