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

com.ibm.cloud.objectstorage.thirdparty.ion.system.IonSystemBuilder Maven / Gradle / Ivy

Go to download

A single bundled dependency that includes all service and dependent JARs with third-party libraries relocated to different namespaces.

There is a newer version: 2.13.4
Show newest version
/*
 * Copyright 2011-2016 Amazon.com, Inc. or its affiliates. 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.
 * A copy of the License is located at:
 *
 *     http://aws.amazon.com/apache2.0/
 *
 * or in the "license" file accompanying this file. This file 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 software.amazon.ion.system;

import static software.amazon.ion.impl.lite.PrivateLiteDomTrampoline.newLiteSystem;

import software.amazon.ion.IonCatalog;
import software.amazon.ion.IonReader;
import software.amazon.ion.IonSystem;
import software.amazon.ion.IonWriter;
import software.amazon.ion.SymbolTable;
import software.amazon.ion.impl.PrivateIonBinaryWriterBuilder;
import software.amazon.ion.impl.PrivateUtils;

/**
 * The builder for creating {@link IonSystem}s.
 * Most applications will only have one or two system instances;
 * see {@link IonSystem} for important constraints.
 * 

* Builders may be configured once and reused to construct multiple * objects. They can be {@link #copy() copied} to create a mutable * copy of a prototype (presumably for altering some property). *

* Instances of this class are not safe for use by multiple threads unless * they are {@linkplain #immutable() immutable}. *

* The easiest way to get going is to use the {@link #standard()} builder: *

 *    IonSystem ion = IonSystemBuilder.standard().build();
 *
*

* However, most long-lived applications will want to provide a custom * {@link IonCatalog} implementation rather than using the default * {@link SimpleCatalog}. For example: *

 *    IonCatalog catalog = newCustomCatalog();
 *    IonSystemBuilder b = IonSystemBuilder.standard().copy();
 *    b.setCatalog(catalog);
 *    IonSystem ion = b.build();
 *
*

* Configuration properties follow the standard JavaBeans idiom in order to be * friendly to dependency injection systems. They also provide alternative * mutation methods that enable a more fluid style: *

 *    IonCatalog catalog = newCustomCatalog();
 *    IonSystem ion = IonSystemBuilder.standard()
 *                                    .withCatalog(catalog)
 *                                    .build();
 *
* *

Configuration Properties

*

* This builder provides the following configurable properties: *

    *
  • * catalog: The {@link IonCatalog} used as a default when reading Ion * data. If null, each system will be built with a new * {@link SimpleCatalog}. *
  • *
  • * streamCopyOptimized: When true, this enables optimizations when * copying data between two Ion streams. For example, in some cases raw * binary-encoded Ion can be copied directly from the input to the output. * This can have significant performance benefits when the appropriate * conditions are met. This feature is experimental! Please test * thoroughly and report any issues. *
  • *
*/ public class IonSystemBuilder { private static final IonSystemBuilder STANDARD = new IonSystemBuilder(); /** * The standard builder of {@link IonSystem}s. * See the class documentation for the standard configuration. *

* The returned instance is immutable. */ public static IonSystemBuilder standard() { return STANDARD; } //========================================================================= IonCatalog myCatalog; boolean myStreamCopyOptimized = false; /** You no touchy. */ private IonSystemBuilder() {} private IonSystemBuilder(IonSystemBuilder that) { this.myCatalog = that.myCatalog; this.myStreamCopyOptimized = that.myStreamCopyOptimized; } //========================================================================= /** * Creates a mutable copy of this builder. * @return a new builder with the same configuration as {@code this}. */ public final IonSystemBuilder copy() { return new Mutable(this); } /** * Returns an immutable builder configured exactly like this one. * * @return this instance, if immutable; * otherwise an immutable copy of this instance. */ public IonSystemBuilder immutable() { return this; } /** * Returns a mutable builder configured exactly like this one. * * @return this instance, if mutable; * otherwise a mutable copy of this instance. */ public IonSystemBuilder mutable() { return copy(); } void mutationCheck() { throw new UnsupportedOperationException("This builder is immutable"); } //========================================================================= // Properties /** * Gets the catalog to use when building an {@link IonSystem}. * By default, this property is null. * * @see #setCatalog(IonCatalog) * @see #withCatalog(IonCatalog) * @see IonSystem#getCatalog() */ public final IonCatalog getCatalog() { return myCatalog; } /** * Sets the catalog to use when building an {@link IonSystem}. * * @param catalog the catalog to use in built systems. * If null, each system will be built with a new {@link SimpleCatalog}. * * @see #getCatalog() * @see #withCatalog(IonCatalog) * @see IonSystem#getCatalog() * * @throws UnsupportedOperationException if this is immutable. */ public final void setCatalog(IonCatalog catalog) { mutationCheck(); myCatalog = catalog; } /** * Declares the catalog to use when building an {@link IonSystem}, * returning a new mutable builder if this is immutable. * * @param catalog the catalog to use in built systems. * If null, each system will be built with a new {@link SimpleCatalog}. * * @see #getCatalog() * @see #setCatalog(IonCatalog) * @see IonSystem#getCatalog() */ public final IonSystemBuilder withCatalog(IonCatalog catalog) { IonSystemBuilder b = mutable(); b.setCatalog(catalog); return b; } //========================================================================= /** * Indicates whether built systems may attempt to optimize * {@link IonWriter#writeValue(IonReader)} by copying raw source data. * By default, this property is false. * * @see #setStreamCopyOptimized(boolean) * @see #withStreamCopyOptimized(boolean) */ public final boolean isStreamCopyOptimized() { return myStreamCopyOptimized; } /** * Declares whether built systems may attempt to optimize * {@link IonWriter#writeValue(IonReader)} by copying raw source data. * By default, this property is false. *

* This feature is experimental! Please test thoroughly and report any * issues. * * @throws UnsupportedOperationException if this is immutable. * * @see #isStreamCopyOptimized() * @see #withStreamCopyOptimized(boolean) */ public final void setStreamCopyOptimized(boolean optimized) { mutationCheck(); myStreamCopyOptimized = optimized; } /** * Declares whether built systems may attempt to optimize * {@link IonWriter#writeValue(IonReader)} by copying raw source data, * returning a new mutable builder if this is immutable. *

* This feature is experimental! Please test thoroughly and report any * issues. * * @see #isStreamCopyOptimized() * @see #setStreamCopyOptimized(boolean) */ public final IonSystemBuilder withStreamCopyOptimized(boolean optimized) { IonSystemBuilder b = mutable(); b.setStreamCopyOptimized(optimized); return b; } //========================================================================= /** * Builds a new {@link IonSystem} instance based on this builder's * configuration properties. */ public final IonSystem build() { IonCatalog catalog = (myCatalog != null ? myCatalog : new SimpleCatalog()); IonTextWriterBuilder twb = IonTextWriterBuilder.standard().withCharsetAscii(); twb.setCatalog(catalog); PrivateIonBinaryWriterBuilder bwb = PrivateIonBinaryWriterBuilder.standard(); bwb.setCatalog(catalog); bwb.setStreamCopyOptimized(myStreamCopyOptimized); // TODO Would be nice to remove this since it's implied by the BWB. // However that currently causes problems in the IonSystem // constructors (which get a null initialSymtab). SymbolTable systemSymtab = PrivateUtils.systemSymtab(1); bwb.setInitialSymbolTable(systemSymtab); // This is what we need, more or less. // bwb = bwb.fillDefaults(); IonReaderBuilder rb = IonReaderBuilder.standard().withCatalog(catalog); return newLiteSystem(twb, bwb, rb); } //========================================================================= private static final class Mutable extends IonSystemBuilder { private Mutable(IonSystemBuilder that) { super(that); } @Override public IonSystemBuilder immutable() { return new IonSystemBuilder(this); } @Override public IonSystemBuilder mutable() { return this; } @Override void mutationCheck() { } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy