com.arangodb.internal.ArangoCollectionImpl Maven / Gradle / Ivy
/*
* DISCLAIMER
*
* Copyright 2018 ArangoDB GmbH, Cologne, Germany
*
* 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.
*
* Copyright holder is ArangoDB GmbH, Cologne, Germany
*/
package com.arangodb.internal;
import java.util.Collection;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.arangodb.ArangoCollection;
import com.arangodb.ArangoDBException;
import com.arangodb.entity.CollectionEntity;
import com.arangodb.entity.CollectionPropertiesEntity;
import com.arangodb.entity.CollectionRevisionEntity;
import com.arangodb.entity.DocumentCreateEntity;
import com.arangodb.entity.DocumentDeleteEntity;
import com.arangodb.entity.DocumentImportEntity;
import com.arangodb.entity.DocumentUpdateEntity;
import com.arangodb.entity.IndexEntity;
import com.arangodb.entity.MultiDocumentEntity;
import com.arangodb.entity.Permissions;
import com.arangodb.internal.util.DocumentUtil;
import com.arangodb.model.CollectionCreateOptions;
import com.arangodb.model.CollectionPropertiesOptions;
import com.arangodb.model.DocumentCreateOptions;
import com.arangodb.model.DocumentDeleteOptions;
import com.arangodb.model.DocumentExistsOptions;
import com.arangodb.model.DocumentImportOptions;
import com.arangodb.model.DocumentReadOptions;
import com.arangodb.model.DocumentReplaceOptions;
import com.arangodb.model.DocumentUpdateOptions;
import com.arangodb.model.FulltextIndexOptions;
import com.arangodb.model.GeoIndexOptions;
import com.arangodb.model.HashIndexOptions;
import com.arangodb.model.PersistentIndexOptions;
import com.arangodb.model.SkiplistIndexOptions;
import com.arangodb.velocypack.VPackSlice;
/**
* @author Mark Vollmary
*
*/
public class ArangoCollectionImpl extends InternalArangoCollection
implements ArangoCollection {
private static final Logger LOGGER = LoggerFactory.getLogger(ArangoCollection.class);
protected ArangoCollectionImpl(final ArangoDatabaseImpl db, final String name) {
super(db, name);
}
@Override
public DocumentCreateEntity insertDocument(final T value) throws ArangoDBException {
final DocumentCreateOptions options = new DocumentCreateOptions();
return executor.execute(insertDocumentRequest(value, options),
insertDocumentResponseDeserializer(value, options));
}
@Override
public DocumentCreateEntity insertDocument(final T value, final DocumentCreateOptions options)
throws ArangoDBException {
return executor.execute(insertDocumentRequest(value, options),
insertDocumentResponseDeserializer(value, options));
}
@Override
public MultiDocumentEntity> insertDocuments(final Collection values)
throws ArangoDBException {
final DocumentCreateOptions params = new DocumentCreateOptions();
return executor.execute(insertDocumentsRequest(values, params),
insertDocumentsResponseDeserializer(values, params));
}
@Override
public MultiDocumentEntity> insertDocuments(
final Collection values,
final DocumentCreateOptions options) throws ArangoDBException {
final DocumentCreateOptions params = (options != null ? options : new DocumentCreateOptions());
return executor.execute(insertDocumentsRequest(values, params),
insertDocumentsResponseDeserializer(values, params));
}
@Override
public DocumentImportEntity importDocuments(final Collection> values) throws ArangoDBException {
return importDocuments(values, new DocumentImportOptions());
}
@Override
public DocumentImportEntity importDocuments(final Collection> values, final DocumentImportOptions options)
throws ArangoDBException {
return executor.execute(importDocumentsRequest(values, options), DocumentImportEntity.class);
}
@Override
public DocumentImportEntity importDocuments(final String values) throws ArangoDBException {
return executor.execute(importDocumentsRequest(values, new DocumentImportOptions()),
DocumentImportEntity.class);
}
@Override
public DocumentImportEntity importDocuments(final String values, final DocumentImportOptions options)
throws ArangoDBException {
return executor.execute(importDocumentsRequest(values, options), DocumentImportEntity.class);
}
@Override
public T getDocument(final String key, final Class type) throws ArangoDBException {
return getDocument(key, type, new DocumentReadOptions());
}
@Override
public T getDocument(final String key, final Class type, final DocumentReadOptions options)
throws ArangoDBException {
DocumentUtil.validateDocumentKey(key);
try {
return executor.execute(getDocumentRequest(key, options), type);
} catch (final ArangoDBException e) {
if (LOGGER.isDebugEnabled()) {
LOGGER.debug(e.getMessage(), e);
}
if ((e.getResponseCode() != null && (e.getResponseCode().intValue() == 404
|| e.getResponseCode().intValue() == 304 || e.getResponseCode().intValue() == 412))
&& (options == null || options.isCatchException())) {
return null;
}
throw e;
}
}
@Override
public MultiDocumentEntity getDocuments(final Collection keys, final Class type)
throws ArangoDBException {
return getDocuments(keys, type, new DocumentReadOptions());
}
@Override
public MultiDocumentEntity getDocuments(
final Collection keys,
final Class type,
final DocumentReadOptions options) throws ArangoDBException {
return executor.execute(getDocumentsRequest(keys, options), getDocumentsResponseDeserializer(type, options));
}
@Override
public DocumentUpdateEntity replaceDocument(final String key, final T value) throws ArangoDBException {
final DocumentReplaceOptions options = new DocumentReplaceOptions();
return executor.execute(replaceDocumentRequest(key, value, options),
replaceDocumentResponseDeserializer(value, options));
}
@Override
public DocumentUpdateEntity replaceDocument(
final String key,
final T value,
final DocumentReplaceOptions options) throws ArangoDBException {
return executor.execute(replaceDocumentRequest(key, value, options),
replaceDocumentResponseDeserializer(value, options));
}
@Override
public MultiDocumentEntity> replaceDocuments(final Collection values)
throws ArangoDBException {
final DocumentReplaceOptions params = new DocumentReplaceOptions();
return executor.execute(replaceDocumentsRequest(values, params),
replaceDocumentsResponseDeserializer(values, params));
}
@Override
public MultiDocumentEntity> replaceDocuments(
final Collection values,
final DocumentReplaceOptions options) throws ArangoDBException {
final DocumentReplaceOptions params = (options != null ? options : new DocumentReplaceOptions());
return executor.execute(replaceDocumentsRequest(values, params),
replaceDocumentsResponseDeserializer(values, params));
}
@Override
public DocumentUpdateEntity updateDocument(final String key, final T value) throws ArangoDBException {
final DocumentUpdateOptions options = new DocumentUpdateOptions();
return executor.execute(updateDocumentRequest(key, value, options),
updateDocumentResponseDeserializer(value, options));
}
@Override
public DocumentUpdateEntity updateDocument(
final String key,
final T value,
final DocumentUpdateOptions options) throws ArangoDBException {
return executor.execute(updateDocumentRequest(key, value, options),
updateDocumentResponseDeserializer(value, options));
}
@Override
public MultiDocumentEntity> updateDocuments(final Collection values)
throws ArangoDBException {
final DocumentUpdateOptions params = new DocumentUpdateOptions();
return executor.execute(updateDocumentsRequest(values, params),
updateDocumentsResponseDeserializer(values, params));
}
@Override
public MultiDocumentEntity> updateDocuments(
final Collection values,
final DocumentUpdateOptions options) throws ArangoDBException {
final DocumentUpdateOptions params = (options != null ? options : new DocumentUpdateOptions());
return executor.execute(updateDocumentsRequest(values, params),
updateDocumentsResponseDeserializer(values, params));
}
@Override
public DocumentDeleteEntity deleteDocument(final String key) throws ArangoDBException {
return executor.execute(deleteDocumentRequest(key, new DocumentDeleteOptions()),
deleteDocumentResponseDeserializer(Void.class));
}
@Override
public DocumentDeleteEntity deleteDocument(
final String key,
final Class type,
final DocumentDeleteOptions options) throws ArangoDBException {
return executor.execute(deleteDocumentRequest(key, options), deleteDocumentResponseDeserializer(type));
}
@Override
public MultiDocumentEntity> deleteDocuments(final Collection> values)
throws ArangoDBException {
return executor.execute(deleteDocumentsRequest(values, new DocumentDeleteOptions()),
deleteDocumentsResponseDeserializer(Void.class));
}
@Override
public MultiDocumentEntity> deleteDocuments(
final Collection> values,
final Class type,
final DocumentDeleteOptions options) throws ArangoDBException {
return executor.execute(deleteDocumentsRequest(values, options), deleteDocumentsResponseDeserializer(type));
}
@Override
public Boolean documentExists(final String key) {
return documentExists(key, new DocumentExistsOptions());
}
@Override
public Boolean documentExists(final String key, final DocumentExistsOptions options) throws ArangoDBException {
try {
executor.execute(documentExistsRequest(key, options), VPackSlice.class);
return true;
} catch (final ArangoDBException e) {
if ((e.getResponseCode() != null && (e.getResponseCode().intValue() == 404
|| e.getResponseCode().intValue() == 304 || e.getResponseCode().intValue() == 412))
&& (options == null || options.isCatchException())) {
return false;
}
throw e;
}
}
@Override
public IndexEntity getIndex(final String id) throws ArangoDBException {
return executor.execute(getIndexRequest(id), IndexEntity.class);
}
@Override
public String deleteIndex(final String id) throws ArangoDBException {
return executor.execute(deleteIndexRequest(id), deleteIndexResponseDeserializer());
}
@Override
public IndexEntity ensureHashIndex(final Iterable fields, final HashIndexOptions options)
throws ArangoDBException {
return executor.execute(createHashIndexRequest(fields, options), IndexEntity.class);
}
@Override
public IndexEntity ensureSkiplistIndex(final Iterable fields, final SkiplistIndexOptions options)
throws ArangoDBException {
return executor.execute(createSkiplistIndexRequest(fields, options), IndexEntity.class);
}
@Override
public IndexEntity ensurePersistentIndex(final Iterable fields, final PersistentIndexOptions options)
throws ArangoDBException {
return executor.execute(createPersistentIndexRequest(fields, options), IndexEntity.class);
}
@Override
public IndexEntity ensureGeoIndex(final Iterable fields, final GeoIndexOptions options)
throws ArangoDBException {
return executor.execute(createGeoIndexRequest(fields, options), IndexEntity.class);
}
@Override
public IndexEntity ensureFulltextIndex(final Iterable fields, final FulltextIndexOptions options)
throws ArangoDBException {
return executor.execute(createFulltextIndexRequest(fields, options), IndexEntity.class);
}
@Override
public Collection getIndexes() throws ArangoDBException {
return executor.execute(getIndexesRequest(), getIndexesResponseDeserializer());
}
@Override
public boolean exists() throws ArangoDBException {
try {
getInfo();
return true;
} catch (final ArangoDBException e) {
if (ArangoErrors.ERROR_ARANGO_DATA_SOURCE_NOT_FOUND.equals(e.getErrorNum())) {
return false;
}
throw e;
}
}
@Override
public CollectionEntity truncate() throws ArangoDBException {
return executor.execute(truncateRequest(), CollectionEntity.class);
}
@Override
public CollectionPropertiesEntity count() throws ArangoDBException {
return executor.execute(countRequest(), CollectionPropertiesEntity.class);
}
@Override
public CollectionEntity create() throws ArangoDBException {
return db().createCollection(name());
}
@Override
public CollectionEntity create(final CollectionCreateOptions options) throws ArangoDBException {
return db().createCollection(name(), options);
}
@Override
public void drop() throws ArangoDBException {
executor.execute(dropRequest(null), Void.class);
}
@Override
public void drop(final boolean isSystem) throws ArangoDBException {
executor.execute(dropRequest(isSystem), Void.class);
}
@Override
public CollectionEntity load() throws ArangoDBException {
return executor.execute(loadRequest(), CollectionEntity.class);
}
@Override
public CollectionEntity unload() throws ArangoDBException {
return executor.execute(unloadRequest(), CollectionEntity.class);
}
@Override
public CollectionEntity getInfo() throws ArangoDBException {
return executor.execute(getInfoRequest(), CollectionEntity.class);
}
@Override
public CollectionPropertiesEntity getProperties() throws ArangoDBException {
return executor.execute(getPropertiesRequest(), CollectionPropertiesEntity.class);
}
@Override
public CollectionPropertiesEntity changeProperties(final CollectionPropertiesOptions options)
throws ArangoDBException {
return executor.execute(changePropertiesRequest(options), CollectionPropertiesEntity.class);
}
@Override
public synchronized CollectionEntity rename(final String newName) throws ArangoDBException {
final CollectionEntity result = executor.execute(renameRequest(newName), CollectionEntity.class);
name = result.getName();
return result;
}
@Override
public CollectionRevisionEntity getRevision() throws ArangoDBException {
return executor.execute(getRevisionRequest(), CollectionRevisionEntity.class);
}
@Override
public void grantAccess(final String user, final Permissions permissions) throws ArangoDBException {
executor.execute(grantAccessRequest(user, permissions), Void.class);
}
@Override
public void revokeAccess(final String user) throws ArangoDBException {
executor.execute(grantAccessRequest(user, Permissions.NONE), Void.class);
}
@Override
public void resetAccess(final String user) throws ArangoDBException {
executor.execute(resetAccessRequest(user), Void.class);
}
@Override
public Permissions getPermissions(final String user) throws ArangoDBException {
return executor.execute(getPermissionsRequest(user), getPermissionsResponseDeserialzer());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy