/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 org.apache.falcon.entity.parser; import org.apache.commons.io.IOUtils; import org.apache.falcon.FalconException; import org.apache.falcon.Pair; import org.apache.falcon.entity.store.ConfigurationStore; import org.apache.falcon.entity.v0.Entity; import org.apache.falcon.entity.v0.EntityType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.xml.bind.Unmarshaller; import java.io.ByteArrayInputStream; import java.io.InputStream; import java.util.List; /** * Generic Abstract Entity Parser, the concrete FEED, PROCESS and CLUSTER should extend this parser * to implement specific parsing. * * @param <T> of type Entity */ public abstract class EntityParser<T extends Entity> { private static final Logger LOG = LoggerFactory.getLogger(EntityParser.class); private final EntityType entityType; protected EntityParser(EntityType entityType) { this.entityType = entityType; } public EntityType getEntityType() { return this.entityType; } /** * Parses a sent XML and validates it using JAXB. * * @param xmlString - Entity XML * @return Entity - JAVA Object * @throws FalconException */ public Entity parseAndValidate(String xmlString) throws FalconException { InputStream inputStream = null; try { inputStream = new ByteArrayInputStream(xmlString.getBytes()); return parseAndValidate(inputStream); } finally { IOUtils.closeQuietly(inputStream); } } /** * Parses xml stream. * * @param xmlStream stream * @return entity * @throws FalconException */ public T parse(InputStream xmlStream) throws FalconException { try { // parse against schema Unmarshaller unmarshaller = entityType.getUnmarshaller(); T entity = (T) unmarshaller.unmarshal(xmlStream); LOG.info("Parsed Entity: {}", entity.getName()); return entity; } catch (Exception e) { throw new FalconException(e); } } public T parseAndValidate(InputStream xmlStream) throws FalconException { T entity = parse(xmlStream); validate(entity); return entity; } protected void validateEntityExists(EntityType type, String name) throws FalconException { if (ConfigurationStore.get().get(type, name) == null) { throw new ValidationException("Referenced " + type + " " + name + " is not registered"); } } protected void validateEntitiesExist(List<Pair<EntityType, String>> entities) throws FalconException { if (entities != null) { for (Pair<EntityType, String> entity : entities) { validateEntityExists(entity.first, entity.second); } } } public abstract void validate(T entity) throws FalconException; }