io.datakernel.codec.StructuredCodec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datakernel-codec Show documentation
Show all versions of datakernel-codec Show documentation
Tools for encoding/decoding of primitives and objects.
/*
* Copyright (C) 2015-2018 SoftIndex LLC.
*
* 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 io.datakernel.codec;
import io.datakernel.common.exception.UncheckedException;
import io.datakernel.common.parse.ParseException;
import io.datakernel.common.parse.ParserFunction;
import org.jetbrains.annotations.Nullable;
import java.util.List;
import java.util.function.Function;
import java.util.function.Supplier;
/**
* A structured codec is an object that describes how some type T
* can be written into {@link StructuredOutput} or read from {@link StructuredInput}.
* The actual representation is abstracted away, so the same codec can be used to write or read
* an object into/from various formats and protocols.
*/
public interface StructuredCodec extends StructuredEncoder, StructuredDecoder {
static StructuredCodec of(StructuredDecoder decoder, StructuredEncoder encoder) {
return new StructuredCodec() {
@Override
public void encode(StructuredOutput out, T item) {
encoder.encode(out, item);
}
@Override
public T decode(StructuredInput in) throws ParseException {
return decoder.decode(in);
}
};
}
static StructuredCodec ofObject(StructuredDecoder decoder, StructuredEncoder encoder) {
return of(StructuredDecoder.ofObject(decoder), StructuredEncoder.ofObject(encoder));
}
static StructuredCodec ofObject(Supplier supplier) {
return of(StructuredDecoder.ofObject(supplier), StructuredEncoder.ofObject());
}
static StructuredCodec ofTuple(StructuredDecoder decoder, StructuredEncoder encoder) {
return of(StructuredDecoder.ofTuple(decoder), StructuredEncoder.ofTuple(encoder));
}
default StructuredCodec<@Nullable T> nullable() {
return new StructuredCodec() {
@Nullable
@Override
public T decode(StructuredInput in) throws ParseException {
return in.readNullable(StructuredCodec.this);
}
@Override
public void encode(StructuredOutput out, T item) {
out.writeNullable(StructuredCodec.this, item);
}
};
}
default StructuredCodec> ofList() {
return StructuredCodecs.ofList(this);
}
default StructuredCodec transform(ParserFunction reader, Function writer) {
return new StructuredCodec() {
@Override
public void encode(StructuredOutput out, R value) {
T result = writer.apply(value);
StructuredCodec.this.encode(out, result);
}
@Override
public R decode(StructuredInput in) throws ParseException {
T result = StructuredCodec.this.decode(in);
try {
return reader.parse(result);
} catch (UncheckedException u) {
throw u.propagate(ParseException.class);
}
}
};
}
}