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

http://github.com/mongodb/mongo-java-driver · Java · 99 lines · 60 code · 21 blank · 18 comment · 0 complexity · 2f78e95501bd825ab639c12b47256f9b 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.connection.ConnectionDescription;
  18. /**
  19. * This class is NOT part of the public API. It may change at any time without notification.
  20. */
  21. public final class ServerVersionHelper {
  22. public static final int MIN_WIRE_VERSION = 0;
  23. public static final int THREE_DOT_ZERO_WIRE_VERSION = 3;
  24. public static final int THREE_DOT_TWO_WIRE_VERSION = 4;
  25. public static final int THREE_DOT_FOUR_WIRE_VERSION = 5;
  26. public static final int THREE_DOT_SIX_WIRE_VERSION = 6;
  27. public static final int FOUR_DOT_ZERO_WIRE_VERSION = 7;
  28. public static final int FOUR_DOT_TWO_WIRE_VERSION = 8;
  29. public static final int FOUR_DOT_FOUR_WIRE_VERSION = 9;
  30. public static final int FIVE_DOT_ZERO_WIRE_VERSION = 12;
  31. public static boolean serverIsAtLeastVersionThreeDotZero(final ConnectionDescription description) {
  32. return description.getMaxWireVersion() >= THREE_DOT_ZERO_WIRE_VERSION;
  33. }
  34. public static boolean serverIsAtLeastVersionThreeDotTwo(final ConnectionDescription description) {
  35. return description.getMaxWireVersion() >= THREE_DOT_TWO_WIRE_VERSION;
  36. }
  37. public static boolean serverIsAtLeastVersionThreeDotFour(final ConnectionDescription description) {
  38. return description.getMaxWireVersion() >= THREE_DOT_FOUR_WIRE_VERSION;
  39. }
  40. public static boolean serverIsAtLeastVersionThreeDotSix(final ConnectionDescription description) {
  41. return description.getMaxWireVersion() >= THREE_DOT_SIX_WIRE_VERSION;
  42. }
  43. public static boolean serverIsAtLeastVersionFourDotZero(final ConnectionDescription description) {
  44. return description.getMaxWireVersion() >= FOUR_DOT_ZERO_WIRE_VERSION;
  45. }
  46. public static boolean serverIsAtLeastVersionFourDotTwo(final ConnectionDescription description) {
  47. return description.getMaxWireVersion() >= FOUR_DOT_TWO_WIRE_VERSION;
  48. }
  49. public static boolean serverIsAtLeastVersionFourDotFour(final ConnectionDescription description) {
  50. return description.getMaxWireVersion() >= FOUR_DOT_FOUR_WIRE_VERSION;
  51. }
  52. public static boolean serverIsAtLeastVersionFiveDotZero(final ConnectionDescription description) {
  53. return description.getMaxWireVersion() >= FIVE_DOT_ZERO_WIRE_VERSION;
  54. }
  55. public static boolean serverIsLessThanVersionThreeDotZero(final ConnectionDescription description) {
  56. return description.getMaxWireVersion() < THREE_DOT_ZERO_WIRE_VERSION;
  57. }
  58. public static boolean serverIsLessThanVersionThreeDotTwo(final ConnectionDescription description) {
  59. return description.getMaxWireVersion() < THREE_DOT_TWO_WIRE_VERSION;
  60. }
  61. public static boolean serverIsLessThanVersionThreeDotFour(final ConnectionDescription description) {
  62. return description.getMaxWireVersion() < THREE_DOT_FOUR_WIRE_VERSION;
  63. }
  64. public static boolean serverIsLessThanVersionThreeDotSix(final ConnectionDescription description) {
  65. return description.getMaxWireVersion() < THREE_DOT_SIX_WIRE_VERSION;
  66. }
  67. public static boolean serverIsLessThanVersionFourDotZero(final ConnectionDescription description) {
  68. return description.getMaxWireVersion() < FOUR_DOT_ZERO_WIRE_VERSION;
  69. }
  70. public static boolean serverIsLessThanVersionFourDotTwo(final ConnectionDescription description) {
  71. return description.getMaxWireVersion() < FOUR_DOT_TWO_WIRE_VERSION;
  72. }
  73. public static boolean serverIsLessThanVersionFourDotFour(final ConnectionDescription description) {
  74. return description.getMaxWireVersion() < FOUR_DOT_FOUR_WIRE_VERSION;
  75. }
  76. private ServerVersionHelper() {
  77. }
  78. }