/src/main/java/org/jongo/Command.java

http://github.com/bguerout/jongo · Java · 96 lines · 63 code · 18 blank · 15 comment · 4 complexity · 7d2445864610e3ad104718fae522e902 MD5 · raw file

  1. /*
  2. * Copyright (C) 2011 Benoît GUÉROUT <bguerout at gmail dot com> and Yves AMSELLEM <amsellem dot yves at gmail dot com>
  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 org.jongo;
  17. import com.mongodb.CommandResult;
  18. import com.mongodb.DB;
  19. import com.mongodb.DBObject;
  20. import org.jongo.marshall.Unmarshaller;
  21. import org.jongo.query.Query;
  22. import org.jongo.query.QueryFactory;
  23. import java.util.ArrayList;
  24. import java.util.List;
  25. import static org.jongo.ResultHandlerFactory.newResultHandler;
  26. public class Command {
  27. private final DB db;
  28. private final Unmarshaller unmarshaller;
  29. private Query query;
  30. private boolean throwOnError;
  31. public Command(DB db, Unmarshaller unmarshaller, QueryFactory queryFactory, String query, Object... parameters) {
  32. this.db = db;
  33. this.unmarshaller = unmarshaller;
  34. this.query = queryFactory.createQuery(query, parameters);
  35. }
  36. public Command throwOnError() {
  37. throwOnError = true;
  38. return this;
  39. }
  40. public ResultCommand field(String fieldName) {
  41. return new ResultCommand(fieldName);
  42. }
  43. public <T> T as(final Class<T> clazz) {
  44. return map(newResultHandler(clazz, unmarshaller));
  45. }
  46. public <T> T map(ResultHandler<T> resultHandler) {
  47. CommandResult commandResult = executeCommand();
  48. return resultHandler.map(commandResult);
  49. }
  50. private CommandResult executeCommand() {
  51. CommandResult commandResult = db.command(query.toDBObject());
  52. if (throwOnError) {
  53. commandResult.throwOnError();
  54. }
  55. return commandResult;
  56. }
  57. public class ResultCommand {
  58. private String fieldName;
  59. public ResultCommand(String fieldName) {
  60. this.fieldName = fieldName;
  61. }
  62. public <T> List<T> as(final Class<T> clazz) {
  63. return map(newResultHandler(clazz, unmarshaller));
  64. }
  65. public <T> List<T> map(ResultHandler<T> resultHandler) {
  66. CommandResult commandResult = executeCommand();
  67. List<DBObject> results = (List<DBObject>) commandResult.get(fieldName);
  68. if (results == null) {
  69. return new ArrayList<T>();
  70. }
  71. List<T> mappedResult = new ArrayList<T>(results.size());
  72. for (DBObject dbObject : results) {
  73. mappedResult.add(resultHandler.map(dbObject));
  74. }
  75. return mappedResult;
  76. }
  77. }
  78. }