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.

FileObjectDatabase.java 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * Copyright (C) 2010, Google Inc. and others
  3. *
  4. * This program and the accompanying materials are made available under the
  5. * terms of the Eclipse Distribution License v. 1.0 which is available at
  6. * https://www.eclipse.org/org/documents/edl-v10.php.
  7. *
  8. * SPDX-License-Identifier: BSD-3-Clause
  9. */
  10. package org.eclipse.jgit.internal.storage.file;
  11. import java.io.File;
  12. import java.io.IOException;
  13. import java.util.Collection;
  14. import java.util.Set;
  15. import org.eclipse.jgit.internal.storage.pack.ObjectToPack;
  16. import org.eclipse.jgit.internal.storage.pack.PackWriter;
  17. import org.eclipse.jgit.lib.AbbreviatedObjectId;
  18. import org.eclipse.jgit.lib.AnyObjectId;
  19. import org.eclipse.jgit.lib.Config;
  20. import org.eclipse.jgit.lib.ObjectDatabase;
  21. import org.eclipse.jgit.lib.ObjectId;
  22. import org.eclipse.jgit.lib.ObjectLoader;
  23. import org.eclipse.jgit.lib.ObjectReader;
  24. import org.eclipse.jgit.util.FS;
  25. abstract class FileObjectDatabase extends ObjectDatabase {
  26. enum InsertLooseObjectResult {
  27. INSERTED, EXISTS_PACKED, EXISTS_LOOSE, FAILURE;
  28. }
  29. /** {@inheritDoc} */
  30. @Override
  31. public ObjectReader newReader() {
  32. return new WindowCursor(this);
  33. }
  34. /** {@inheritDoc} */
  35. @Override
  36. public ObjectDirectoryInserter newInserter() {
  37. return new ObjectDirectoryInserter(this, getConfig());
  38. }
  39. abstract void resolve(Set<ObjectId> matches, AbbreviatedObjectId id)
  40. throws IOException;
  41. abstract Config getConfig();
  42. abstract FS getFS();
  43. abstract Set<ObjectId> getShallowCommits() throws IOException;
  44. abstract void selectObjectRepresentation(PackWriter packer,
  45. ObjectToPack otp, WindowCursor curs) throws IOException;
  46. abstract File getDirectory();
  47. abstract File fileFor(AnyObjectId id);
  48. abstract ObjectLoader openObject(WindowCursor curs, AnyObjectId objectId)
  49. throws IOException;
  50. abstract long getObjectSize(WindowCursor curs, AnyObjectId objectId)
  51. throws IOException;
  52. abstract ObjectLoader openLooseObject(WindowCursor curs, AnyObjectId id)
  53. throws IOException;
  54. abstract InsertLooseObjectResult insertUnpackedObject(File tmp,
  55. ObjectId id, boolean createDuplicate) throws IOException;
  56. abstract Pack openPack(File pack) throws IOException;
  57. abstract Collection<Pack> getPacks();
  58. }