com.mongodb.operation.RenameCollectionOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongodb-driver-core Show documentation
Show all versions of mongodb-driver-core Show documentation
The Java operations layer for the MongoDB Java Driver. Third parties can ' +
'wrap this layer to provide custom higher-level APIs
/*
* Copyright 2008-present MongoDB, Inc.
*
* 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.mongodb.operation;
import com.mongodb.MongoNamespace;
import com.mongodb.WriteConcern;
import com.mongodb.async.SingleResultCallback;
import com.mongodb.binding.AsyncWriteBinding;
import com.mongodb.binding.WriteBinding;
import com.mongodb.connection.AsyncConnection;
import com.mongodb.connection.Connection;
import com.mongodb.connection.ConnectionDescription;
import org.bson.BsonBoolean;
import org.bson.BsonDocument;
import org.bson.BsonString;
import static com.mongodb.assertions.Assertions.notNull;
import static com.mongodb.internal.async.ErrorHandlingResultCallback.errorHandlingCallback;
import static com.mongodb.operation.CommandOperationHelper.executeWrappedCommandProtocol;
import static com.mongodb.operation.CommandOperationHelper.executeWrappedCommandProtocolAsync;
import static com.mongodb.operation.OperationHelper.LOGGER;
import static com.mongodb.operation.OperationHelper.releasingCallback;
import static com.mongodb.operation.OperationHelper.withConnection;
import static com.mongodb.internal.operation.WriteConcernHelper.appendWriteConcernToCommand;
import static com.mongodb.operation.CommandOperationHelper.writeConcernErrorTransformer;
/**
* An operation that renames the given collection to the new name.
*
* If the new name is the same as an existing collection and dropTarget is true, this existing collection will be dropped. If
* dropTarget is false and the newCollectionName is the same as an existing collection, a MongoServerException will be thrown.
*
* @mongodb.driver.manual reference/command/renameCollection renameCollection
* @since 3.0
*/
@Deprecated
public class RenameCollectionOperation implements AsyncWriteOperation, WriteOperation {
private final MongoNamespace originalNamespace;
private final MongoNamespace newNamespace;
private final WriteConcern writeConcern;
private boolean dropTarget;
/**
* @param originalNamespace the name of the collection to rename
* @param newNamespace the desired new name for the collection
* @deprecated Prefer {@link #RenameCollectionOperation(MongoNamespace, MongoNamespace, WriteConcern)}
*/
@Deprecated
public RenameCollectionOperation(final MongoNamespace originalNamespace, final MongoNamespace newNamespace) {
this(originalNamespace, newNamespace, null);
}
/**
* @param originalNamespace the name of the collection to rename
* @param newNamespace the desired new name for the collection
* @param writeConcern the writeConcern
*
* @since 3.4
*/
public RenameCollectionOperation(final MongoNamespace originalNamespace, final MongoNamespace newNamespace,
final WriteConcern writeConcern) {
this.originalNamespace = notNull("originalNamespace", originalNamespace);
this.newNamespace = notNull("newNamespace", newNamespace);
this.writeConcern = writeConcern;
}
/**
* Gets the write concern.
*
* @return the write concern, which may be null
*
* @since 3.4
*/
public WriteConcern getWriteConcern() {
return writeConcern;
}
/**
* Gets if mongod should drop the target of renameCollection prior to renaming the collection.
*
* @return true if mongod should drop the target of renameCollection prior to renaming the collection.
*/
public boolean isDropTarget() {
return dropTarget;
}
/**
* Sets if mongod should drop the target of renameCollection prior to renaming the collection.
*
* @param dropTarget true if mongod should drop the target of renameCollection prior to renaming the collection.
* @return this
*/
public RenameCollectionOperation dropTarget(final boolean dropTarget) {
this.dropTarget = dropTarget;
return this;
}
/**
* Rename the collection with {@code oldCollectionName} in database {@code databaseName} to the {@code newCollectionName}.
*
* @param binding the binding
* @return a void result
* @throws com.mongodb.MongoServerException if you provide a newCollectionName that is the name of an existing collection and dropTarget
* is false, or if the oldCollectionName is the name of a collection that doesn't exist
*/
@Override
public Void execute(final WriteBinding binding) {
return withConnection(binding, new OperationHelper.CallableWithConnection() {
@Override
public Void call(final Connection connection) {
return executeWrappedCommandProtocol(binding, "admin", getCommand(connection.getDescription()), connection,
writeConcernErrorTransformer());
}
});
}
@Override
public void executeAsync(final AsyncWriteBinding binding, final SingleResultCallback callback) {
withConnection(binding, new OperationHelper.AsyncCallableWithConnection() {
@Override
public void call(final AsyncConnection connection, final Throwable t) {
SingleResultCallback errHandlingCallback = errorHandlingCallback(callback, LOGGER);
if (t != null) {
errHandlingCallback.onResult(null, t);
} else {
executeWrappedCommandProtocolAsync(binding, "admin", getCommand(connection.getDescription()), connection,
writeConcernErrorTransformer(), releasingCallback(errHandlingCallback, connection));
}
}
});
}
private BsonDocument getCommand(final ConnectionDescription description) {
BsonDocument commandDocument = new BsonDocument("renameCollection", new BsonString(originalNamespace.getFullName()))
.append("to", new BsonString(newNamespace.getFullName()))
.append("dropTarget", BsonBoolean.valueOf(dropTarget));
appendWriteConcernToCommand(writeConcern, commandDocument, description);
return commandDocument;
}
}