Android Open Source - interdroid-vdb Entity Uri Builder






From Project

Back to project page interdroid-vdb.

License

The source code is released under:

Copyright (c) 2008-2012 Vrije Universiteit, The Netherlands All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the follo...

If you think the Android project interdroid-vdb listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (c) 2008-2012 Vrije Universiteit, The Netherlands All rights
 * reserved./*from  www  . j a va  2  s  .c  o  m*/
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * Neither the name of the Vrije Universiteit nor the names of its contributors
 * may be used to endorse or promote products derived from this software without
 * specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */
package interdroid.vdb.content;

import java.util.List;

import interdroid.vdb.Authority;
import interdroid.vdb.content.EntityUriMatcher.MatchType;

import android.net.Uri;

/**
 * A utility class for building VDB URIs.
 * <br/>
 * URIs come in with either a native authority used by the package
 * to expose data to all other applications or an internal authority
 * which VDB offers the equivalent data from.
 * <br/>
 * Internal URIs are of the form: <br/>
 * content://VDB_AUTHORITY/NATIVE_AUTHORITY/TYPE/ENTITY <br/>
 * Native URIs are of the form: <br/>
 * content://NATIVE_AUTHORITY/TYPE/ENTITY <br/>
 * <br/>
 * URI types can either be for the local master, a local branch, a
 * remote master, a remote branch or a commit. EntityUriMatcher.MatchType
 * for the strings for these different type specifiers. For local master
 * no type need be specified at all.
 *
 * @author nick &lt;palmer@cs.vu.nl&gt;
 * @see EntityUriMatcher.MatchType
 */
public final class EntityUriBuilder {

  /**
   * No construction of this utility class.
   */
  private EntityUriBuilder() { }

  /**
   * Returns a native URI for the given entity in the given authority.
   * @param authority the authority for the repository
   * @param entity the entity in the repository
   * @return a URI
   */
  public static Uri nativeUri(final String authority, final String entity) {
    return Uri.withAppendedPath(repositoryUri(authority, authority),
        MatchType.LOCAL_BRANCH.toString() + "/master/" + entity);
  }

  /**
   * Returns a URI for the given repository in the given authority.
   * @param authority the authority for the repository
   * @param repoName the repository
   * @return a URI
   */
  public static Uri repositoryUri(final String authority,
      final String repoName) {
    String uriStr;
    if (repoName.equals(authority)) {
      uriStr = "content://" + authority + "/";
    } else {
      uriStr = "content://" + authority + "/" + repoName;
    }
    return Uri.parse(uriStr);
  }

  /**
   * Returns a URI for a branch.
   * @param authority the authority for the repository
   * @param repoName the repository name
   * @param name the branch name
   * @return a URI
   */
  public static Uri branchUri(final String authority, final String repoName,
      final String name) {
    return Uri.withAppendedPath(repositoryUri(authority, repoName),
        MatchType.LOCAL_BRANCH.toString() + "/" + name);
  }

  /**
   * Returns a URI for a remote branch.
   * @param authority The authority for the repository
   * @param repoName the repository name
   * @param name the remote branch name
   * @return a URI
   */
  public static Uri remoteBranchUri(final String authority,
      final String repoName, final String name) {
    return Uri.withAppendedPath(repositoryUri(authority, repoName),
        MatchType.REMOTE_BRANCH.toString() + "/" + name);
  }

  /**
   * Returns a URI for a remote repository.
   * @param authority the authority for the repository
   * @param repoName the repository name
   * @param name the remote name
   * @return a URI
   */
  public static Uri remoteUri(final String authority, final String repoName,
      final String name) {
    return Uri.withAppendedPath(repositoryUri(authority, repoName),
        MatchType.REMOTE.toString() + "/" + name);
  }

  /**
   * Returns a URI for a commit.
   * @param authority the authority for the repository
   * @param repoName the repository name
   * @param sha1 the SHA1 of the commit
   * @return a URI
   */
  public static Uri commitUri(final String authority, final String repoName,
      final String sha1) {
    return Uri.withAppendedPath(repositoryUri(authority, repoName),
        MatchType.COMMIT.toString() + "/" + sha1);
  }

  /**
   * Converts an internal URI for the given native URI.
   * @param uri the native URI to convert
   * @return a URI with internal authority
   */
  public static Uri toInternal(final Uri uri) {
    Uri.Builder builder = uri.buildUpon();
    StringBuffer pathString = new StringBuffer();
    pathString.append("/");
    pathString.append(uri.getAuthority());
    pathString.append(uri.getPath());
    builder.authority(Authority.VDB);
    builder.path(pathString.toString());

    return builder.build();
  }

  /**
   * Converts an internal URI to a native URI for the given repository.
   * @param uri the internal URI to convert
   * @return a URI with native authority
   */
  public static Uri toNative(final Uri uri) {
    Uri.Builder builder = uri.buildUpon();
    List<String> path = uri.getPathSegments();
    StringBuffer pathString = new StringBuffer();
    for (int i = 1; i < path.size(); i++) {
      pathString.append("/");
      pathString.append(path.get(i));
    }
    builder.authority(path.get(0));
    builder.path(pathString.toString());

    return builder.build();
  }
}




Java Source Code List

interdroid.util.CryptoUtil.java
interdroid.util.DbUtil.java
interdroid.util.FSUtil.java
interdroid.util.StrictUtil.java
interdroid.util.ToastOnUI.java
interdroid.vdb.Actions.java
interdroid.vdb.Authority.java
interdroid.vdb.content.ContentChangeHandler.java
interdroid.vdb.content.CrossProcessCursorWrapper.java
interdroid.vdb.content.DatabaseInitializer.java
interdroid.vdb.content.EntityUriBuilder.java
interdroid.vdb.content.EntityUriMatcher.java
interdroid.vdb.content.GenericContentProvider.java
interdroid.vdb.content.VdbConfig.java
interdroid.vdb.content.VdbMainContentProvider.java
interdroid.vdb.content.VdbProviderRegistry.java
interdroid.vdb.content.avro.AvroContentProviderProxy.java
interdroid.vdb.content.avro.AvroContentProvider.java
interdroid.vdb.content.avro.AvroEntityInfo.java
interdroid.vdb.content.avro.AvroFieldInfo.java
interdroid.vdb.content.avro.AvroMetadata.java
interdroid.vdb.content.avro.AvroProviderRegistry.java
interdroid.vdb.content.avro.AvroSchemaRegistrationHandler.java
interdroid.vdb.content.avro.SchemaEvolutionValidator.java
interdroid.vdb.content.avro.package-info.java
interdroid.vdb.content.metadata.DatabaseFieldType.java
interdroid.vdb.content.metadata.EntityInfo.java
interdroid.vdb.content.metadata.FieldInfo.java
interdroid.vdb.content.metadata.Metadata.java
interdroid.vdb.content.metadata.package-info.java
interdroid.vdb.content.orm.DbEntity.java
interdroid.vdb.content.orm.DbField.java
interdroid.vdb.content.orm.ORMEntityInfo.java
interdroid.vdb.content.orm.ORMFieldInfo.java
interdroid.vdb.content.orm.ORMGenericContentProvider.java
interdroid.vdb.content.orm.ORMMetadata.java
interdroid.vdb.content.orm.package-info.java
interdroid.vdb.content.package-info.java
interdroid.vdb.persistence.api.DirtyCheckoutException.java
interdroid.vdb.persistence.api.MergeInProgressException.java
interdroid.vdb.persistence.api.MergeInfo.java
interdroid.vdb.persistence.api.RemoteInfo.java
interdroid.vdb.persistence.api.VdbCheckout.java
interdroid.vdb.persistence.api.VdbInitializer.java
interdroid.vdb.persistence.api.VdbRepositoryRegistry.java
interdroid.vdb.persistence.api.VdbRepository.java
interdroid.vdb.persistence.api.package-info.java
interdroid.vdb.persistence.impl.MergeHelper.java
interdroid.vdb.persistence.impl.ThreeWayDiffCursor.java
interdroid.vdb.persistence.impl.VdbCheckoutImpl.java
interdroid.vdb.persistence.impl.VdbRepositoryImpl.java
interdroid.vdb.persistence.impl.package-info.java
interdroid.vdb.transport.SmartSocketsDaemonClient.java
interdroid.vdb.transport.SmartSocketsDaemon.java
interdroid.vdb.transport.SmartSocketsTransport.java
interdroid.vdb.transport.SmartsocketsDaemonService.java
interdroid.vdb.transport.VdbRepositoryResolver.java
interdroid.vdb.transport.package-info.java
interdroid.vdb.package-info.java