/src/test/java/org/jongo/bench/DecoderBench.java

http://github.com/bguerout/jongo · Java · 79 lines · 52 code · 12 blank · 15 comment · 2 complexity · 6e055a24c3b842461c6a43b4bad0a295 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.bench;
  17. import com.google.caliper.Runner;
  18. import com.google.caliper.SimpleBenchmark;
  19. import com.mongodb.*;
  20. import org.jongo.bson.Bson;
  21. import org.jongo.bson.BsonDBDecoder;
  22. import org.jongo.bson.BsonDocument;
  23. import org.jongo.marshall.jackson.JacksonEngine;
  24. import org.jongo.marshall.jackson.configuration.Mapping;
  25. import org.jongo.model.Coordinate;
  26. import org.jongo.model.Friend;
  27. public class DecoderBench extends SimpleBenchmark {
  28. private final JacksonEngine engine = new JacksonEngine(Mapping.defaultMapping());
  29. public void timeDecodeWithDriver(int reps) {
  30. for (int i = 0; i < reps; i++) {
  31. DBObject dbo = decode(DefaultDBDecoder.FACTORY);
  32. DBObject coord = (DBObject) dbo.get("coordinate");
  33. Coordinate coordinate = new Coordinate((Integer) coord.get("lat"), (Integer) coord.get("lng"));
  34. Friend f = new Friend((String) dbo.get("name"), (String) dbo.get("address"), coordinate);
  35. }
  36. }
  37. public void timeDecodeWithBsonJongo(int reps) {
  38. for (int docIndex = 0; docIndex < reps; docIndex++) {
  39. DBObject dbo = decode(BsonDBDecoder.FACTORY);
  40. BsonDocument document = Bson.createDocument(dbo);
  41. Friend f = engine.unmarshall(document, Friend.class);
  42. }
  43. }
  44. private DBObject decode(DBDecoderFactory factory) {
  45. DBDecoder decoder = factory.create();
  46. return decoder.decode(FRIEND_AS_BYTE, (DBCollection) null);
  47. }
  48. public static void main(String[] args) {
  49. Runner.main(DecoderBench.class, new String[]{});
  50. }
  51. private static final byte[] FRIEND_AS_BYTE = new byte[]{-75, 1, 0, 0, 7, 95, 105, 100, 0, 80, 116, -128, -1, 48, 4,
  52. -104, 62, 31, -27, -19, 85, 2, 110, 97, 109, 101, 0, 6, 0, 0, 0, 74, 111, 104, 110, 48, 0, 2, 97, 100, 100,
  53. 114, 101, 115, 115, 0, 9, 0, 0, 0, 65, 100, 100, 114, 101, 115, 115, 48, 0, 3, 99, 111, 111, 114, 100, 105,
  54. 110, 97, 116, 101, 0, 23, 0, 0, 0, 16, 108, 97, 116, 0, 1, 0, 0, 0, 16, 108, 110, 103, 0, 0, 0, 0, 0, 0, 4,
  55. 98, 117, 100, 100, 105, 101, 115, 0, 77, 1, 0, 0, 3, 48, 0, 79, 0, 0, 0, 2, 110, 97, 109, 101, 0, 7, 0, 0, 0,
  56. 74, 111, 104, 110, 48, 49, 0, 2, 97, 100, 100, 114, 101, 115, 115, 0, 9, 0, 0, 0, 65, 100, 100, 114, 101, 115,
  57. 115, 48, 0, 3, 99, 111, 111, 114, 100, 105, 110, 97, 116, 101, 0, 23, 0, 0, 0, 16, 108, 97, 116, 0, 1, 0, 0, 0,
  58. 16, 108, 110, 103, 0, 0, 0, 0, 0, 0, 0, 3, 49, 0, 79, 0, 0, 0, 2, 110, 97, 109, 101, 0, 7, 0, 0, 0, 74, 111, 104,
  59. 110, 48, 50, 0, 2, 97, 100, 100, 114, 101, 115, 115, 0, 9, 0, 0, 0, 65, 100, 100, 114, 101, 115, 115, 48, 0, 3, 99,
  60. 111, 111, 114, 100, 105, 110, 97, 116, 101, 0, 23, 0, 0, 0, 16, 108, 97, 116, 0, 1, 0, 0, 0, 16, 108, 110, 103, 0, 0,
  61. 0, 0, 0, 0, 0, 3, 50, 0, 79, 0, 0, 0, 2, 110, 97, 109, 101, 0, 7, 0, 0, 0, 74, 111, 104, 110, 48, 51, 0, 2, 97, 100,
  62. 100, 114, 101, 115, 115, 0, 9, 0, 0, 0, 65, 100, 100, 114, 101, 115, 115, 48, 0, 3, 99, 111, 111, 114, 100, 105, 110,
  63. 97, 116, 101, 0, 23, 0, 0, 0, 16, 108, 97, 116, 0, 1, 0, 0, 0, 16, 108, 110, 103, 0, 0, 0, 0, 0, 0, 0, 3, 51, 0, 79,
  64. 0, 0, 0, 2, 110, 97, 109, 101, 0, 7, 0, 0, 0, 74, 111, 104, 110, 48, 52, 0, 2, 97, 100, 100, 114, 101, 115, 115, 0, 9,
  65. 0, 0, 0, 65, 100, 100, 114, 101, 115, 115, 48, 0, 3, 99, 111, 111, 114, 100, 105, 110, 97, 116, 101, 0, 23, 0, 0, 0, 16,
  66. 108, 97, 116, 0, 1, 0, 0, 0, 16, 108, 110, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0};
  67. }