com.google.appengine.api.datastore.IndexTranslator Maven / Gradle / Ivy
/*
* Copyright 2021 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
*
* https://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.appengine.api.datastore;
import com.google.apphosting.api.AppEngineInternal;
import com.google.storage.onestore.v3.OnestoreEntity;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* Helper class to translate between {@link Index} to {@link
* com.google.storage.onestore.v3.OnestoreEntity.Index}.
*
*/
@AppEngineInternal
public class IndexTranslator {
// TODO: Support mode? and unspecified direction.
public static OnestoreEntity.Index convertToPb(Index index) {
OnestoreEntity.Index value = new OnestoreEntity.Index();
value.setEntityType(index.getKind());
value.setAncestor(index.isAncestor());
for (Index.Property property : index.getProperties()) {
value.mutablePropertys().add(convertToPb(property));
}
return value;
}
public static OnestoreEntity.Index.Property convertToPb(Index.Property property) {
OnestoreEntity.Index.Property value = new OnestoreEntity.Index.Property();
value.setName(property.getName());
Query.SortDirection dir = property.getDirection();
if (dir != null) {
value.setDirection(OnestoreEntity.Index.Property.Direction.valueOf(dir.name()));
}
return value;
}
public static Index convertFromPb(OnestoreEntity.CompositeIndex ci) {
OnestoreEntity.Index index = ci.getDefinition();
List properties = new ArrayList<>();
for (OnestoreEntity.Index.Property protoProperty : index.propertys()) {
properties.add(convertFromPb(protoProperty));
}
return new Index(
ci.getId(),
index.getEntityType(),
index.isAncestor(),
Collections.unmodifiableList(properties));
}
public static Index.Property convertFromPb(OnestoreEntity.Index.Property property) {
Query.SortDirection dir =
property.hasDirection()
? Query.SortDirection.valueOf(property.getDirectionEnum().name())
: null;
return new Index.Property(property.getName(), dir);
}
public static Index convertFromPb(OnestoreEntity.Index index) {
return convertFromPb(new OnestoreEntity.CompositeIndex().setId(0).setDefinition(index));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy