/driver-core/src/main/com/mongodb/internal/operation/CommandReadOperation.java

http://github.com/mongodb/mongo-java-driver · Java · 75 lines · 39 code · 8 blank · 28 comment · 0 complexity · 8262c85052a98f7146e1ade6c6c7364d MD5 · raw file

  1. /*
  2. * Copyright 2008-present MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mongodb.internal.operation;
  17. import com.mongodb.internal.async.SingleResultCallback;
  18. import com.mongodb.connection.ConnectionDescription;
  19. import com.mongodb.connection.ServerDescription;
  20. import com.mongodb.internal.binding.AsyncReadBinding;
  21. import com.mongodb.internal.binding.ReadBinding;
  22. import org.bson.BsonDocument;
  23. import org.bson.codecs.Decoder;
  24. import static com.mongodb.assertions.Assertions.notNull;
  25. import static com.mongodb.internal.operation.CommandOperationHelper.CommandCreator;
  26. import static com.mongodb.internal.operation.CommandOperationHelper.executeRetryableRead;
  27. import static com.mongodb.internal.operation.CommandOperationHelper.executeRetryableReadAsync;
  28. /**
  29. * An operation that executes an arbitrary command that reads from the server.
  30. *
  31. * @param <T> the operations result type.
  32. * @since 3.0
  33. */
  34. public class CommandReadOperation<T> implements AsyncReadOperation<T>, ReadOperation<T> {
  35. private final String databaseName;
  36. private final BsonDocument command;
  37. private final Decoder<T> decoder;
  38. /**
  39. * Construct a new instance.
  40. *
  41. * @param databaseName the name of the database for the operation.
  42. * @param command the command to execute.
  43. * @param decoder the decoder for the result documents.
  44. */
  45. public CommandReadOperation(final String databaseName, final BsonDocument command, final Decoder<T> decoder) {
  46. this.databaseName = notNull("databaseName", databaseName);
  47. this.command = notNull("command", command);
  48. this.decoder = notNull("decoder", decoder);
  49. }
  50. @Override
  51. public T execute(final ReadBinding binding) {
  52. return executeRetryableRead(binding, databaseName, getCommandCreator(), decoder, (result, source, connection) -> result, false);
  53. }
  54. @Override
  55. public void executeAsync(final AsyncReadBinding binding, final SingleResultCallback<T> callback) {
  56. executeRetryableReadAsync(binding, databaseName, getCommandCreator(), decoder, (result, source, connection) -> result,
  57. false, callback);
  58. }
  59. private CommandCreator getCommandCreator() {
  60. return new CommandCreator() {
  61. @Override
  62. public BsonDocument create(final ServerDescription serverDescription, final ConnectionDescription connectionDescription) {
  63. return command;
  64. }
  65. };
  66. }
  67. }