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

org.omnifaces.util.copier.MultiStrategyCopier Maven / Gradle / Ivy

There is a newer version: 4.4.1
Show newest version
/*
 * Copyright 2020 OmniFaces
 *
 * 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
 *
 *     https://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.omnifaces.util.copier;

import static java.util.Arrays.asList;
import static java.util.logging.Level.FINEST;

import java.util.List;
import java.util.logging.Logger;

/**
 * Copier that copies an object trying a variety of strategies until one succeeds.
 * 

* The strategies that will be attempted in order are: *

    *
  1. Cloning *
  2. Serialization *
  3. Copy constructor *
  4. New instance *
* * * @since 2.0 * @author Arjan Tijms * */ public class MultiStrategyCopier implements Copier { private static final Logger logger = Logger.getLogger(MultiStrategyCopier.class.getName()); private static final List COPIERS = asList( // Note: copier instances used here must be thread-safe! new CloneCopier(), new SerializationCopier(), new CopyCtorCopier(), new NewInstanceCopier() ); @Override public Object copy(Object object) { for (Copier copier : COPIERS) { try { return copier.copy(object); } catch (Exception ignore) { logger.log(FINEST, "Ignoring thrown exception; next copier will be tried and there is a fallback to IllegalStateException.", ignore); } } throw new IllegalStateException("Can't copy object of type " + object.getClass() + ". No copier appeared to be capable of copying it."); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy