/driver/src/main/com/mongodb/CommandResult.java

http://github.com/mongodb/mongo-java-driver · Java · 97 lines · 45 code · 11 blank · 41 comment · 9 complexity · 3b3b17aa8b69dfad928b935ef4fcc781 MD5 · raw file

  1. /*
  2. * Copyright (c) 2008-2014 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;
  17. import org.bson.BsonDocument;
  18. import static com.mongodb.DBObjects.toDBObject;
  19. import static com.mongodb.assertions.Assertions.notNull;
  20. /**
  21. * A simple wrapper to hold the result of a command. All the fields from the response document have been added to this result.
  22. *
  23. * @mongodb.driver.manual reference/command/ Database Commands
  24. */
  25. public class CommandResult extends BasicDBObject {
  26. private static final long serialVersionUID = 5907909423864204060L;
  27. private final BsonDocument response;
  28. private final ServerAddress address;
  29. CommandResult(final BsonDocument response) {
  30. this(response, null);
  31. }
  32. CommandResult(final BsonDocument response, final ServerAddress address) {
  33. this.address = address;
  34. this.response = notNull("response", response);
  35. putAll(toDBObject(response));
  36. }
  37. /**
  38. * Gets the "ok" field, which is whether this command executed correctly or not.
  39. *
  40. * @return true if the command executed without error.
  41. */
  42. public boolean ok() {
  43. Object okValue = get("ok");
  44. if (okValue instanceof Boolean) {
  45. return (Boolean) okValue;
  46. } else if (okValue instanceof Number) {
  47. return ((Number) okValue).intValue() == 1;
  48. } else {
  49. return false;
  50. }
  51. }
  52. /**
  53. * Gets the error message associated with a failed command.
  54. *
  55. * @return The error message or null
  56. */
  57. public String getErrorMessage() {
  58. Object foo = get("errmsg");
  59. if (foo == null) {
  60. return null;
  61. }
  62. return foo.toString();
  63. }
  64. /**
  65. * Utility method to create an exception from a failed command.
  66. *
  67. * @return The mongo exception, or null if the command was successful.
  68. */
  69. public MongoException getException() {
  70. if (!ok()) {
  71. return new MongoCommandException(response, address);
  72. }
  73. return null;
  74. }
  75. /**
  76. * Throws a {@code CommandFailureException} if the command failed. Otherwise, returns normally.
  77. *
  78. * @throws MongoException with the exception from the failed command
  79. * @see #ok()
  80. */
  81. public void throwOnError() {
  82. if (!ok()) {
  83. throw getException();
  84. }
  85. }
  86. }