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

com.google.cloud.datastore.KeyFactory Maven / Gradle / Ivy

There is a newer version: 2.24.2
Show newest version
/*
 * Copyright 2015 Google 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 com.google.cloud.datastore;

import com.google.common.collect.ImmutableList;

/**
 * A helper for creating keys for a specific {@link Datastore}, using its associated projectId and
 * namespace.
 */
public final class KeyFactory extends BaseKey.Builder {

  private final String initialProjectId;
  private final String initialNamespace;
  private final String initialDatabaseId;

  public KeyFactory(String projectId) {
    this(projectId, "");
  }

  public KeyFactory(String projectId, String namespace) {
    this(projectId, namespace, "");
  }

  public KeyFactory(String projectId, String namespace, String databaseId) {
    super(projectId);
    setNamespace(namespace);
    setDatabaseId(databaseId);
    this.initialProjectId = projectId;
    this.initialNamespace = namespace;
    this.initialDatabaseId = databaseId;
  }

  public IncompleteKey newKey() {
    ImmutableList path =
        ImmutableList.builder().addAll(ancestors).add(PathElement.of(kind)).build();
    return new IncompleteKey(projectId, namespace, databaseId, path);
  }

  public Key newKey(String name) {
    ImmutableList path =
        ImmutableList.builder()
            .addAll(ancestors)
            .add(PathElement.of(kind, name))
            .build();
    return new Key(projectId, namespace, databaseId, path);
  }

  public Key newKey(long id) {
    ImmutableList path =
        ImmutableList.builder()
            .addAll(ancestors)
            .add(PathElement.of(kind, id))
            .build();
    return new Key(projectId, namespace, databaseId, path);
  }

  /**
   * Resets the KeyFactory to its initial state.
   *
   * @return {@code this} for chaining
   */
  public KeyFactory reset() {
    setProjectId(initialProjectId);
    setNamespace(initialNamespace);
    setDatabaseId(initialDatabaseId);
    kind = null;
    ancestors.clear();
    return this;
  }

  @Override
  protected IncompleteKey build() {
    return newKey();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy