/* * Copyright (c) 2015-2016, Christoph Engelbert (aka noctarius) and * contributors. All rights reserved. * * 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.noctarius.tengi.core.serialization.marshaller; import com.noctarius.tengi.core.serialization.Identifiable; import com.noctarius.tengi.core.serialization.codec.Decoder; import com.noctarius.tengi.core.serialization.codec.Encoder; import com.noctarius.tengi.spi.serialization.Protocol; /** * <p>The <tt>Marshaller</tt> interface defines a type to be used * to create external serialization mechanisms based on an * acceptance criteria (e.g. a special super-type or an annotation).</p> * <p>All <tt>Marshaller</tt> implementations must be thread-safe and * stateless to support multi-threaded access patterns.</p> */ public interface Marshaller<O> extends MarshallerReader<O>, MarshallerWriter<O> { /** * This method is a convenience way to build a <tt>Marshaller</tt> instance from two * lambdas. It will wrapped the given two functions into a new <tt>Marshaller</tt> * instance. * * @param <O> the type of the object to read and write with the generated <tt>Marshaller</tt> * @param <I> the type of the marshaller id * @param marshallerId the protocol id of the marshaller * @param reader the marshall logic implementation (or function) * @param writer the un-marshall logic implementation (or function) * @return a wrapper Marshaller instance */ public static <O, I> Marshaller<O> marshaller(I marshallerId, // MarshallerReader<O> reader, MarshallerWriter<O> writer) { class JitMarshaller implements Marshaller<O>, Identifiable<I> { @Override public I identifier() { return marshallerId; } @Override public O unmarshall(Decoder decoder, Protocol protocol) throws Exception { return reader.unmarshall(decoder, protocol); } @Override public void marshall(O object, Encoder encoder, Protocol protocol) throws Exception { writer.marshall(object, encoder, protocol); } } return new JitMarshaller(); } }