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

software.amazon.ion.IonCatalog Maven / Gradle / Ivy

/*
 * Copyright 2007-2016 Amazon.alluxio.shaded.client.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 alluxio.shaded.client.com.liance with the License.
 * A copy of the License is located at:
 *
 *     http://aws.amazon.alluxio.shaded.client.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.alluxio.shaded.client.io.;

import software.amazon.alluxio.shaded.client.io..system.IonSystemBuilder;
import software.amazon.alluxio.shaded.client.io..system.SimpleCatalog;


/**
 * Collects shared symbol tables for use by an {@link IonSystem}.
 * 

* It is expected that many applications will implement this interface to * customize behavior beyond that provided by the default {@link SimpleCatalog}. * A typical implementation would retrieve symbol tables from some external * source. *

* To utilize a custom catalog, it must be given to the * {@link IonSystemBuilder} before a system is built, or to * selected methods of the {@link IonSystem} for localized use. * *

Notes for Implementors

* This interface defines two methods with subtly different semantics. * The first variant takes only a symbol table name, and returns the highest * version possible. The second takes a version number and attempts to match it * exactly, and if that's not possible it falls back to the the "best match" * possible: *
    *
  • If any versions larger than the requested version are * available, select the smallest among them (still larger than requested). *
  • Otherwise all available versions are smaller than the * requested version, so return the largest of them. *
*

* Catalog implementations should never accept substitute symbol * tables and never return them. Substitute tables are used when the * catalog cannot find an exact match, that is, the catalog cannot find an * imported shared symtab with the same name, version and max_id. Refer to * {@link SymbolTable}. *

* This interface is the only abstraction point for caching shared * symbol tables. Within this library, there is no caching mechanism in place on * shared symbol tables that are loaded into the {@link IonSystem}. * This means that when a shared symbol table needs to be retrieved by the * library's code-paths, methods of this interface are invoked directly, * without any additional caching whatsoever. * As such, implementors of this interface should implement their own caching * mechanism if desired. *

* When encoding Ion binary data, its always best to use an exact match to the * requested version whenever possible. Earlier versions are very likely to be * missing symbols that are needed by the data. Later versions of the table * could have the same problem, but that's less likely under best practices. *

* While "get latest version" is generally okay for encoding, it's not * universally acceptable: one can imagine a client/server protocol where the * client declares what symtab/versions it can handle, and the server needs to * meet those requirements. *

* Binary decoding prefers an exact match, and in a couple edge cases, * requires it. Therefore a single "get latest version" method is insufficient. * See the * Ion Symbols page * for more details on this topic. *

* It's expected that many if not most applications will implement a dynamic * catalog that can fetch symtabs from some source. In such cases the catalog * should make its best effort to find an exact match, and if that's not * possible fall back to the best match it can acquire. */ public interface IonCatalog { /** * Gets a symbol table with a specific name and the highest version * possible. * * @param name identifies the desired symbol table. * @return a shared symbol table with the given name, or * {@code null} if this catalog has no table with the name. */ public SymbolTable getTable(String name); /** * Gets a desired symbol table from this catalog, using an exact match if * possible. *

* Implentations must make a best effort to find an exact match. * If an exact match cannot be found, then this method must make a best * effort to find the best match available. * * @return the shared symbol table with the given name and version, when an * exact match is possible. Otherwise, returns the lowest possible version * larger than requested. Otherwise, return the largest possible version * lower than requested. If no table with the name can be found, then * this method returns {@code null}. */ public SymbolTable getTable(String name, int version); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy