Class FS_POSIX
- Since:
- 3.0
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.eclipse.jgit.util.FS
FS.Attributes, FS.ExecutionResult, FS.FileStoreAttributes, FS.FSFactory, FS.LockToken
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final String
private static final int
private static final org.slf4j.Logger
private FS_POSIX.AtomicFileCreation
private int
Fields inherited from class org.eclipse.jgit.util.FS
DETECTED, NO_ENTRIES
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate static void
apply
(Set<PosixFilePermission> set, int umask, PosixFilePermission perm, int test) boolean
canExecute
(File f) Determine if the file is executable (or not).boolean
createNewFile
(File lock) Deprecated.createNewFileAtomic
(File file) Create a new file.protected File
Discover the path to the Git executable.getAttributes
(File path) Get the file attributes we care for.boolean
Is this file system case sensitiveCreate a new instance of the same type of FS.Normalize the unicode path to composed form.Normalize the unicode path to composed form.private static int
boolean
Does this file system have problems with atomic renames?runHookIfPresent
(Repository repository, String hookName, String[] args, OutputStream outRedirect, OutputStream errRedirect, String stdinArgs) Checks whether the given hook is defined for the given repository, then runs it with the given arguments.runInShell
(String cmd, String[] args) Initialize a ProcessBuilder to run a command using the system shell.boolean
setExecute
(File f, boolean canExecute) Set a file to be executable by the user.void
Set the hidden attribute for file whose name starts with a period.void
setUmask
(int umask) Set the umask, overriding any value observed from the shell.(package private) String
shellQuote
(String cmd) Quote a string (such as a file system path obtained from a JavaFile
orPath
object) such that it can be passed as first argument toFS.runInShell(String, String[])
.boolean
Does this file system support atomic file creation via java.io.File#createNewFile()? In certain environments (e.g.boolean
Does this operating system and JRE support the execute flag on files?private static FS.LockToken
private int
umask()
private static String
uniqueLinkPath
(File file) Methods inherited from class org.eclipse.jgit.util.FS
createSymLink, delete, detect, detect, discoverGitSystemConfig, execute, exists, fileAttributes, findHook, getFileStoreAttributes, getGitSystemConfig, internalRunHookIfPresent, isDirectory, isFile, isHidden, isSymLink, lastModified, lastModifiedInstant, lastModifiedInstant, length, list, readPipe, readPipe, readSymLink, relativize, resolve, resolveGrandparentFile, runHookIfPresent, runProcess, runProcess, searchPath, setAsyncFileStoreAttributes, setGitSystemConfig, setLastModified, setLastModified, setUserHome, supportsSymlinks, userHome, userHomeImpl
-
Field Details
-
LOG
private static final org.slf4j.Logger LOG -
DEFAULT_GIT_LOCATION
- See Also:
-
DEFAULT_UMASK
private static final int DEFAULT_UMASK- See Also:
-
umask
private volatile int umask -
CAN_HARD_LINK
-
supportsAtomicFileCreation
-
-
Constructor Details
-
FS_POSIX
protected FS_POSIX()Default constructor. -
FS_POSIX
Constructor- Parameters:
src
- FS to copy some settings from
-
-
Method Details
-
newInstance
Create a new instance of the same type of FS.- Specified by:
newInstance
in classFS
- Returns:
- a new instance of the same type of FS.
-
setUmask
public void setUmask(int umask) Set the umask, overriding any value observed from the shell.- Parameters:
umask
- mask to apply when creating files.- Since:
- 4.0
-
umask
private int umask() -
readUmask
private static int readUmask()- Returns:
- mask returned from running
umask
command in shell.
-
discoverGitExe
Discover the path to the Git executable.- Specified by:
discoverGitExe
in classFS
- Returns:
- the path to the Git executable or
null
if it cannot be determined.
-
isCaseSensitive
public boolean isCaseSensitive()Is this file system case sensitive- Specified by:
isCaseSensitive
in classFS
- Returns:
- true if this implementation is case sensitive
-
supportsExecute
public boolean supportsExecute()Does this operating system and JRE support the execute flag on files?- Specified by:
supportsExecute
in classFS
- Returns:
- true if this implementation can provide reasonably accurate executable bit information; false otherwise.
-
canExecute
Determine if the file is executable (or not).Not all platforms and JREs support executable flags on files. If the feature is unsupported this method will always return false.
If the platform supports symbolic links and
f
is a symbolic link this method returns false, rather than the state of the executable flags on the target file.- Specified by:
canExecute
in classFS
- Parameters:
f
- abstract path to test.- Returns:
- true if the file is believed to be executable by the user.
-
setExecute
Set a file to be executable by the user.Not all platforms and JREs support executable flags on files. If the feature is unsupported this method will always return false and no changes will be made to the file specified.
- Specified by:
setExecute
in classFS
- Parameters:
f
- path to modify the executable status of.canExecute
- true to enable execution; false to disable it.- Returns:
- true if the change succeeded; false otherwise.
-
apply
private static void apply(Set<PosixFilePermission> set, int umask, PosixFilePermission perm, int test) -
runInShell
Initialize a ProcessBuilder to run a command using the system shell.- Specified by:
runInShell
in classFS
- Parameters:
cmd
- command to execute. This string should originate from the end-user, and thus is platform specific.args
- arguments to pass to command. These should be protected from shell evaluation.- Returns:
- a partially completed process builder. Caller should finish populating directory, environment, and then start the process.
-
shellQuote
Description copied from class:FS
Quote a string (such as a file system path obtained from a JavaFile
orPath
object) such that it can be passed as first argument toFS.runInShell(String, String[])
.This default implementation returns the string unchanged.
- Overrides:
shellQuote
in classFS
- Parameters:
cmd
- the String to quote- Returns:
- the quoted string
-
runHookIfPresent
public ProcessResult runHookIfPresent(Repository repository, String hookName, String[] args, OutputStream outRedirect, OutputStream errRedirect, String stdinArgs) throws JGitInternalException Checks whether the given hook is defined for the given repository, then runs it with the given arguments.- Overrides:
runHookIfPresent
in classFS
- Parameters:
repository
- The repository for which a hook should be run.hookName
- The name of the hook to be executed.args
- Arguments to pass to this hook. Cannot benull
, but can be an empty array.outRedirect
- A print stream on which to redirect the hook's stdout. Can benull
, in which case the hook's standard output will be lost.errRedirect
- A print stream on which to redirect the hook's stderr. Can benull
, in which case the hook's standard error will be lost.stdinArgs
- A string to pass on to the standard input of the hook. May benull
.- Returns:
- The ProcessResult describing this hook's execution.
- Throws:
JGitInternalException
- if we fail to run the hook somehow. Causes may include an interrupted process or I/O errors.
-
retryFailedLockFileCommit
public boolean retryFailedLockFileCommit()Does this file system have problems with atomic renames?- Specified by:
retryFailedLockFileCommit
in classFS
- Returns:
- true if the caller should retry a failed rename of a lock file.
-
setHidden
Set the hidden attribute for file whose name starts with a period.- Overrides:
setHidden
in classFS
- Parameters:
path
- aFile
object.hidden
- whether to set the file hidden- Throws:
IOException
-
getAttributes
Get the file attributes we care for.- Overrides:
getAttributes
in classFS
- Parameters:
path
- aFile
object.- Returns:
- the file attributes we care for.
-
normalize
Normalize the unicode path to composed form. -
normalize
Normalize the unicode path to composed form. -
supportsAtomicCreateNewFile
public boolean supportsAtomicCreateNewFile()Does this file system support atomic file creation via java.io.File#createNewFile()? In certain environments (e.g. on NFS) it is not guaranteed that when two file system clients run createNewFile() in parallel only one will succeed. In such cases both clients may think they created a new file.- Overrides:
supportsAtomicCreateNewFile
in classFS
- Returns:
- true if this implementation support atomic creation of new Files
by
File.createNewFile()
-
createNewFile
Deprecated.Description copied from class:FS
Create a new file. SeeFile.createNewFile()
. Subclasses of this class may take care to provide a safe implementation for this even ifFS.supportsAtomicCreateNewFile()
isfalse
- Overrides:
createNewFile
in classFS
- Parameters:
lock
- the file to be created- Returns:
true
if the file was created,false
if the file already existed- Throws:
IOException
-
createNewFileAtomic
Create a new file. SeeFile.createNewFile()
. Subclasses of this class may take care to provide a safe implementation for this even ifFS.supportsAtomicCreateNewFile()
isfalse
An implementation of the File#createNewFile() semantics which can create a unique file atomically also on NFS. If the config option
core.supportsAtomicCreateNewFile = true
(which is the default) then simply Files#createFile() is called. But ifcore.supportsAtomicCreateNewFile = false
then after successful creation of the lock file a hard link to that lock file is created and the attribute nlink of the lock file is checked to be 2. If multiple clients manage to create the same lock file nlink would be greater than 2 showing the error. The hard link needs to be retained until the corresponding file is no longer needed in order to prevent that another process can create the same file concurrently using another NFS client which might not yet see the file due to caching.- Overrides:
createNewFileAtomic
in classFS
- Parameters:
file
- the unique file to be created atomically- Returns:
- LockToken this lock token must be held until the file is no longer needed
- Throws:
IOException
- Since:
- 5.0
- See Also:
-
- "https://www.time-travellers.org/shane/papers/NFS_considered_harmful.html"
-
token
-
uniqueLinkPath
-