You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BitmapIndex.java 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. /*
  2. * Copyright (C) 2012, Google Inc.
  3. * and other copyright owners as documented in the project's IP log.
  4. *
  5. * This program and the accompanying materials are made available
  6. * under the terms of the Eclipse Distribution License v1.0 which
  7. * accompanies this distribution, is reproduced below, and is
  8. * available at http://www.eclipse.org/org/documents/edl-v10.php
  9. *
  10. * All rights reserved.
  11. *
  12. * Redistribution and use in source and binary forms, with or
  13. * without modification, are permitted provided that the following
  14. * conditions are met:
  15. *
  16. * - Redistributions of source code must retain the above copyright
  17. * notice, this list of conditions and the following disclaimer.
  18. *
  19. * - Redistributions in binary form must reproduce the above
  20. * copyright notice, this list of conditions and the following
  21. * disclaimer in the documentation and/or other materials provided
  22. * with the distribution.
  23. *
  24. * - Neither the name of the Eclipse Foundation, Inc. nor the
  25. * names of its contributors may be used to endorse or promote
  26. * products derived from this software without specific prior
  27. * written permission.
  28. *
  29. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  30. * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  31. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  32. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  33. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  34. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  35. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  36. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  37. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  38. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  39. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  40. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  41. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  42. */
  43. package org.eclipse.jgit.lib;
  44. import java.util.Iterator;
  45. import org.eclipse.jgit.internal.storage.file.PackBitmapIndex;
  46. /**
  47. * A compressed bitmap representation of the entire object graph.
  48. *
  49. * @since 3.0
  50. */
  51. public interface BitmapIndex {
  52. /**
  53. * Get the bitmap for the id. The returned bitmap is immutable and the
  54. * bitwise operations return the result of the operation in a new Bitmap.
  55. *
  56. * @param objectId
  57. * the object ID
  58. * @return the Bitmap for the objectId or null, if one does not exist.
  59. */
  60. Bitmap getBitmap(AnyObjectId objectId);
  61. /**
  62. * Create a new {@code BitmapBuilder} based on the values in the index.
  63. *
  64. * @return a new {@code BitmapBuilder} based on the values in the index.
  65. */
  66. BitmapBuilder newBitmapBuilder();
  67. /**
  68. * A bitmap representation of ObjectIds that can be iterated to return the
  69. * underlying {@code ObjectId}s or operated on with other {@code Bitmap}s.
  70. */
  71. public interface Bitmap extends Iterable<BitmapObject> {
  72. /**
  73. * Bitwise-OR the current bitmap with the value from the other
  74. * bitmap.
  75. *
  76. * @param other
  77. * the other bitmap
  78. * @return a bitmap that is the bitwise-OR.
  79. */
  80. Bitmap or(Bitmap other);
  81. /**
  82. * Bitwise-AND-NOT the current bitmap with the value from the other
  83. * bitmap.
  84. *
  85. * @param other
  86. * the other bitmap
  87. * @return a bitmap that is the bitwise-AND-NOT.
  88. */
  89. Bitmap andNot(Bitmap other);
  90. /**
  91. * Bitwise-XOR the current bitmap with the value from the other
  92. * bitmap.
  93. *
  94. * @param other
  95. * the other bitmap
  96. * @return a bitmap that is the bitwise-XOR.
  97. */
  98. Bitmap xor(Bitmap other);
  99. /**
  100. * Returns an iterator over a set of elements of type BitmapObject. The
  101. * BitmapObject instance is reused across calls to
  102. * {@link Iterator#next()} for performance reasons.
  103. *
  104. * @return an Iterator.
  105. */
  106. @Override
  107. Iterator<BitmapObject> iterator();
  108. }
  109. /**
  110. * A builder for a bitmap. The bitwise operations update the builder and
  111. * return a reference to the current builder.
  112. */
  113. public interface BitmapBuilder extends Bitmap {
  114. /**
  115. * Whether the bitmap has the id set.
  116. *
  117. * @param objectId
  118. * the object ID
  119. * @return whether the bitmap currently contains the object ID
  120. */
  121. boolean contains(AnyObjectId objectId);
  122. /**
  123. * Adds the id to the bitmap.
  124. *
  125. * @param objectId
  126. * the object ID
  127. * @param type
  128. * the Git object type. See {@link Constants}.
  129. * @return the current builder.
  130. * @since 4.2
  131. */
  132. BitmapBuilder addObject(AnyObjectId objectId, int type);
  133. /**
  134. * Remove the id from the bitmap.
  135. *
  136. * @param objectId
  137. * the object ID
  138. */
  139. void remove(AnyObjectId objectId);
  140. /**
  141. * Bitwise-OR the current bitmap with the value from the other bitmap.
  142. *
  143. * @param other
  144. * the other bitmap
  145. * @return the current builder.
  146. */
  147. @Override
  148. BitmapBuilder or(Bitmap other);
  149. /**
  150. * Bitwise-AND-NOT the current bitmap with the value from the other
  151. * bitmap.
  152. *
  153. * @param other
  154. * the other bitmap
  155. * @return the current builder.
  156. */
  157. @Override
  158. BitmapBuilder andNot(Bitmap other);
  159. /**
  160. * Bitwise-XOR the current bitmap with the value from the other bitmap.
  161. *
  162. * @param other
  163. * the other bitmap
  164. * @return the current builder.
  165. */
  166. @Override
  167. BitmapBuilder xor(Bitmap other);
  168. /** @return the fully built immutable bitmap */
  169. Bitmap build();
  170. /**
  171. * Determines if the entire bitmap index is contained in the bitmap. If
  172. * it is, the matching bits are removed from the bitmap and true is
  173. * returned. If the bitmap index is null, false is returned.
  174. *
  175. * @param bitmapIndex
  176. * the bitmap index to check if it is completely contained
  177. * inside of the current bitmap.
  178. * @return {@code true} if the bitmap index was a complete match.
  179. */
  180. boolean removeAllOrNone(PackBitmapIndex bitmapIndex);
  181. /** @return the number of elements in the bitmap. */
  182. int cardinality();
  183. /**
  184. * Get the BitmapIndex for this BitmapBuilder.
  185. *
  186. * @return the BitmapIndex for this BitmapBuilder
  187. *
  188. * @since 4.2
  189. */
  190. BitmapIndex getBitmapIndex();
  191. }
  192. }