All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.expediagroup.beekeeper.scheduler.apiary.handler.MessageEventHandler Maven / Gradle / Ivy

There is a newer version: 3.5.700
Show newest version
/**
 * Copyright (C) ${license.git.copyrightYears} Expedia, Inc.
 *
 * 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.
 */
package com.expediagroup.beekeeper.scheduler.apiary.handler;

import java.util.Collections;
import java.util.List;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.expedia.apiary.extensions.receiver.common.event.ListenerEvent;
import com.expedia.apiary.extensions.receiver.common.messaging.MessageEvent;

import com.expediagroup.beekeeper.core.model.HousekeepingEntity;
import com.expediagroup.beekeeper.core.model.LifecycleEventType;
import com.expediagroup.beekeeper.scheduler.apiary.filter.ListenerEventFilter;
import com.expediagroup.beekeeper.scheduler.apiary.generator.HousekeepingEntityGenerator;

public class MessageEventHandler {

  private static final Logger log = LoggerFactory.getLogger(MessageEventHandler.class);
  private static final String CLIENT_ID = "apiary-metastore-event";
  private final LifecycleEventType lifecycleEventType;
  private final HousekeepingEntityGenerator generator;
  private final List filters;

  public MessageEventHandler(HousekeepingEntityGenerator generator, List filters) {
    this.generator = generator;
    this.filters = filters;
    this.lifecycleEventType = generator.getLifecycleEventType();
  }

  public List handleMessage(MessageEvent event) {
    ListenerEvent listenerEvent = event.getEvent();
    if (shouldFilterMessage(listenerEvent)) {
      return Collections.emptyList();
    }
    return generateHousekeepingEntities(listenerEvent);
  }

  private boolean shouldFilterMessage(ListenerEvent listenerEvent) {
    return filters.stream().anyMatch(filter -> filter.isFiltered(listenerEvent, lifecycleEventType));
  }

  private List generateHousekeepingEntities(ListenerEvent listenerEvent) {
    return generator.generate(listenerEvent, CLIENT_ID);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy