LocationCommandListener.java

  1. /*
  2.  * Copyright 2005-2025 the original author or authors.
  3.  *
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  *
  8.  * http://www.apache.org/licenses/LICENSE-2.0
  9.  *
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16. package org.openwms.common.location.commands;

  17. import jakarta.validation.Validator;
  18. import org.ameba.annotation.Measured;
  19. import org.ameba.app.SpringProfiles;
  20. import org.openwms.common.location.LocationService;
  21. import org.openwms.common.location.api.ErrorCodeVO;
  22. import org.openwms.common.location.api.ValidationGroups;
  23. import org.openwms.common.location.api.commands.LocationCommand;
  24. import org.slf4j.Logger;
  25. import org.slf4j.LoggerFactory;
  26. import org.springframework.amqp.AmqpRejectAndDontRequeueException;
  27. import org.springframework.amqp.rabbit.annotation.RabbitListener;
  28. import org.springframework.context.annotation.Profile;
  29. import org.springframework.messaging.handler.annotation.Payload;
  30. import org.springframework.stereotype.Component;

  31. import static org.ameba.system.ValidationUtil.validate;
  32. import static org.openwms.common.location.api.LocationApiConstants.LOCATION_EMPTY;

  33. /**
  34.  * A LocationCommandListener.
  35.  *
  36.  * @author Heiko Scherrer
  37.  */
  38. @Profile(SpringProfiles.ASYNCHRONOUS_PROFILE)
  39. @Component
  40. class LocationCommandListener {

  41.     private static final Logger LOGGER = LoggerFactory.getLogger(LocationCommandListener.class);
  42.     private final Validator validator;
  43.     private final LocationService locationService;

  44.     LocationCommandListener(Validator validator, LocationService locationService) {
  45.         this.validator = validator;
  46.         this.locationService = locationService;
  47.     }

  48.     @Measured
  49.     @RabbitListener(queues = "${owms.commands.common.loc.queue-name}")
  50.     public void onCommand(@Payload LocationCommand command) {
  51.         try {
  52.             if (LocationCommand.Type.SET_LOCATION_EMPTY == command.getType()) {
  53.                 validate(validator, command, ValidationGroups.SetLocationEmpty.class);
  54.                 if (LOGGER.isDebugEnabled() && command.getLocation() != null) {
  55.                     LOGGER.debug("Got command to set a Location [{}] empty", command.getLocation().pKey());
  56.                 }
  57.                 var errorCode = ErrorCodeVO.LOCK_STATE_IN_AND_OUT;
  58.                 errorCode.setPlcState(LOCATION_EMPTY);
  59.                 locationService.changeState(command.getLocation().pKey(), errorCode);
  60.             }
  61.         } catch (Exception e) {
  62.             LOGGER.error("Processing command rejected [{}]", command);
  63.             throw new AmqpRejectAndDontRequeueException(e.getMessage(), e);
  64.         }
  65.     }
  66. }