aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java
diff options
context:
space:
mode:
authorGit Development Community <git@vger.kernel.org>2009-09-29 16:47:03 -0700
committerShawn O. Pearce <spearce@spearce.org>2009-09-29 16:47:03 -0700
commit1a6964c8274c50f0253db75f010d78ef0e739343 (patch)
treeca833cc7cf6fc8c7b9850dee258f3a356c790ffc /org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java
downloadjgit-1a6964c8274c50f0253db75f010d78ef0e739343.tar.gz
jgit-1a6964c8274c50f0253db75f010d78ef0e739343.zip
Initial JGit contribution to eclipse.org
Per CQ 3448 this is the initial contribution of the JGit project to eclipse.org. It is derived from the historical JGit repository at commit 3a2dd9921c8a08740a9e02c421469e5b1a9e47cb. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java254
1 files changed, 254 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java
new file mode 100644
index 0000000000..4c3fb6b597
--- /dev/null
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/FileMode.java
@@ -0,0 +1,254 @@
+/*
+ * Copyright (C) 2007, Robin Rosenberg <robin.rosenberg@dewire.com>
+ * Copyright (C) 2006-2008, Shawn O. Pearce <spearce@spearce.org>
+ * and other copyright owners as documented in the project's IP log.
+ *
+ * This program and the accompanying materials are made available
+ * under the terms of the Eclipse Distribution License v1.0 which
+ * accompanies this distribution, is reproduced below, and is
+ * available at http://www.eclipse.org/org/documents/edl-v10.php
+ *
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or
+ * without modification, are permitted provided that the following
+ * conditions are met:
+ *
+ * - Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *
+ * - Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided
+ * with the distribution.
+ *
+ * - Neither the name of the Eclipse Foundation, Inc. nor the
+ * names of its contributors may be used to endorse or promote
+ * products derived from this software without specific prior
+ * written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
+ * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+package org.eclipse.jgit.lib;
+
+import java.io.IOException;
+import java.io.OutputStream;
+
+/**
+ * Constants describing various file modes recognized by GIT.
+ * <p>
+ * GIT uses a subset of the available UNIX file permission bits. The
+ * <code>FileMode</code> class provides access to constants defining the modes
+ * actually used by GIT.
+ * </p>
+ */
+public abstract class FileMode {
+ /**
+ * Mask to apply to a file mode to obtain its type bits.
+ *
+ * @see #TYPE_TREE
+ * @see #TYPE_SYMLINK
+ * @see #TYPE_FILE
+ * @see #TYPE_GITLINK
+ * @see #TYPE_MISSING
+ */
+ public static final int TYPE_MASK = 0170000;
+
+ /** Bit pattern for {@link #TYPE_MASK} matching {@link #TREE}. */
+ public static final int TYPE_TREE = 0040000;
+
+ /** Bit pattern for {@link #TYPE_MASK} matching {@link #SYMLINK}. */
+ public static final int TYPE_SYMLINK = 0120000;
+
+ /** Bit pattern for {@link #TYPE_MASK} matching {@link #REGULAR_FILE}. */
+ public static final int TYPE_FILE = 0100000;
+
+ /** Bit pattern for {@link #TYPE_MASK} matching {@link #GITLINK}. */
+ public static final int TYPE_GITLINK = 0160000;
+
+ /** Bit pattern for {@link #TYPE_MASK} matching {@link #MISSING}. */
+ public static final int TYPE_MISSING = 0000000;
+
+ /** Mode indicating an entry is a {@link Tree}. */
+ @SuppressWarnings("synthetic-access")
+ public static final FileMode TREE = new FileMode(TYPE_TREE,
+ Constants.OBJ_TREE) {
+ public boolean equals(final int modeBits) {
+ return (modeBits & TYPE_MASK) == TYPE_TREE;
+ }
+ };
+
+ /** Mode indicating an entry is a {@link SymlinkTreeEntry}. */
+ @SuppressWarnings("synthetic-access")
+ public static final FileMode SYMLINK = new FileMode(TYPE_SYMLINK,
+ Constants.OBJ_BLOB) {
+ public boolean equals(final int modeBits) {
+ return (modeBits & TYPE_MASK) == TYPE_SYMLINK;
+ }
+ };
+
+ /** Mode indicating an entry is a non-executable {@link FileTreeEntry}. */
+ @SuppressWarnings("synthetic-access")
+ public static final FileMode REGULAR_FILE = new FileMode(0100644,
+ Constants.OBJ_BLOB) {
+ public boolean equals(final int modeBits) {
+ return (modeBits & TYPE_MASK) == TYPE_FILE && (modeBits & 0111) == 0;
+ }
+ };
+
+ /** Mode indicating an entry is an executable {@link FileTreeEntry}. */
+ @SuppressWarnings("synthetic-access")
+ public static final FileMode EXECUTABLE_FILE = new FileMode(0100755,
+ Constants.OBJ_BLOB) {
+ public boolean equals(final int modeBits) {
+ return (modeBits & TYPE_MASK) == TYPE_FILE && (modeBits & 0111) != 0;
+ }
+ };
+
+ /** Mode indicating an entry is a submodule commit in another repository. */
+ @SuppressWarnings("synthetic-access")
+ public static final FileMode GITLINK = new FileMode(TYPE_GITLINK,
+ Constants.OBJ_COMMIT) {
+ public boolean equals(final int modeBits) {
+ return (modeBits & TYPE_MASK) == TYPE_GITLINK;
+ }
+ };
+
+ /** Mode indicating an entry is missing during parallel walks. */
+ @SuppressWarnings("synthetic-access")
+ public static final FileMode MISSING = new FileMode(TYPE_MISSING,
+ Constants.OBJ_BAD) {
+ public boolean equals(final int modeBits) {
+ return modeBits == 0;
+ }
+ };
+
+ /**
+ * Convert a set of mode bits into a FileMode enumerated value.
+ *
+ * @param bits
+ * the mode bits the caller has somehow obtained.
+ * @return the FileMode instance that represents the given bits.
+ */
+ public static final FileMode fromBits(final int bits) {
+ switch (bits & TYPE_MASK) {
+ case TYPE_MISSING:
+ if (bits == 0)
+ return MISSING;
+ break;
+ case TYPE_TREE:
+ return TREE;
+ case TYPE_FILE:
+ if ((bits & 0111) != 0)
+ return EXECUTABLE_FILE;
+ return REGULAR_FILE;
+ case TYPE_SYMLINK:
+ return SYMLINK;
+ case TYPE_GITLINK:
+ return GITLINK;
+ }
+
+ return new FileMode(bits, Constants.OBJ_BAD) {
+ @Override
+ public boolean equals(final int a) {
+ return bits == a;
+ }
+ };
+ }
+
+ private final byte[] octalBytes;
+
+ private final int modeBits;
+
+ private final int objectType;
+
+ private FileMode(int mode, final int expType) {
+ modeBits = mode;
+ objectType = expType;
+ if (mode != 0) {
+ final byte[] tmp = new byte[10];
+ int p = tmp.length;
+
+ while (mode != 0) {
+ tmp[--p] = (byte) ('0' + (mode & 07));
+ mode >>= 3;
+ }
+
+ octalBytes = new byte[tmp.length - p];
+ for (int k = 0; k < octalBytes.length; k++) {
+ octalBytes[k] = tmp[p + k];
+ }
+ } else {
+ octalBytes = new byte[] { '0' };
+ }
+ }
+
+ /**
+ * Test a file mode for equality with this {@link FileMode} object.
+ *
+ * @param modebits
+ * @return true if the mode bits represent the same mode as this object
+ */
+ public abstract boolean equals(final int modebits);
+
+ /**
+ * Copy this mode as a sequence of octal US-ASCII bytes.
+ * <p>
+ * The mode is copied as a sequence of octal digits using the US-ASCII
+ * character encoding. The sequence does not use a leading '0' prefix to
+ * indicate octal notation. This method is suitable for generation of a mode
+ * string within a GIT tree object.
+ * </p>
+ *
+ * @param os
+ * stream to copy the mode to.
+ * @throws IOException
+ * the stream encountered an error during the copy.
+ */
+ public void copyTo(final OutputStream os) throws IOException {
+ os.write(octalBytes);
+ }
+
+ /**
+ * @return the number of bytes written by {@link #copyTo(OutputStream)}.
+ */
+ public int copyToLength() {
+ return octalBytes.length;
+ }
+
+ /**
+ * Get the object type that should appear for this type of mode.
+ * <p>
+ * See the object type constants in {@link Constants}.
+ *
+ * @return one of the well known object type constants.
+ */
+ public int getObjectType() {
+ return objectType;
+ }
+
+ /** Format this mode as an octal string (for debugging only). */
+ public String toString() {
+ return Integer.toOctalString(modeBits);
+ }
+
+ /**
+ * @return The mode bits as an integer.
+ */
+ public int getBits() {
+ return modeBits;
+ }
+}