- java.lang.Object
-
- org.eclipse.jgit.util.FS
-
- org.eclipse.jgit.util.FS_POSIX
-
public class FS_POSIX extends FS
Base FS for POSIX based systems- Since:
- 3.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.eclipse.jgit.util.FS
FS.Attributes, FS.ExecutionResult, FS.FileStoreAttributes, FS.FSFactory, FS.LockToken
-
-
Field Summary
-
Fields inherited from class org.eclipse.jgit.util.FS
DETECTED, NO_ENTRIES
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleancanExecute(File f)Determine if the file is executable (or not).booleancreateNewFile(File lock)Deprecated.FS.LockTokencreateNewFileAtomic(File file)Create a new file.protected FilediscoverGitExe()Discover the path to the Git executable.FS.AttributesgetAttributes(File path)Get the file attributes we care for.booleanisCaseSensitive()Is this file system case sensitiveFSnewInstance()Create a new instance of the same type of FS.Filenormalize(File file)Normalize the unicode path to composed form.Stringnormalize(String name)Normalize the unicode path to composed form.booleanretryFailedLockFileCommit()Does this file system have problems with atomic renames?ProcessResultrunHookIfPresent(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.ProcessBuilderrunInShell(String cmd, String[] args)Initialize a ProcessBuilder to run a command using the system shell.booleansetExecute(File f, boolean canExecute)Set a file to be executable by the user.voidsetHidden(File path, boolean hidden)Set the hidden attribute for file whose name starts with a period.voidsetUmask(int umask)Set the umask, overriding any value observed from the shell.booleansupportsAtomicCreateNewFile()Does this file system support atomic file creation via java.io.File#createNewFile()? In certain environments (e.g.booleansupportsExecute()Does this operating system and JRE support the execute flag on files?-
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
-
-
-
-
Constructor Detail
-
FS_POSIX
protected FS_POSIX()
Default constructor.
-
FS_POSIX
protected FS_POSIX(FS src)
Constructor- Parameters:
src- FS to copy some settings from
-
-
Method Detail
-
newInstance
public FS newInstance()
Create a new instance of the same type of FS.- Specified by:
newInstancein 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
-
discoverGitExe
protected File discoverGitExe()
Discover the path to the Git executable.- Specified by:
discoverGitExein classFS- Returns:
- the path to the Git executable or
nullif it cannot be determined.
-
isCaseSensitive
public boolean isCaseSensitive()
Is this file system case sensitive- Specified by:
isCaseSensitivein 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:
supportsExecutein classFS- Returns:
- true if this implementation can provide reasonably accurate executable bit information; false otherwise.
-
canExecute
public boolean canExecute(File f)
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
fis a symbolic link this method returns false, rather than the state of the executable flags on the target file.- Specified by:
canExecutein classFS- Parameters:
f- abstract path to test.- Returns:
- true if the file is believed to be executable by the user.
-
setExecute
public boolean setExecute(File f, boolean canExecute)
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:
setExecutein 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.
-
runInShell
public ProcessBuilder runInShell(String cmd, String[] args)
Initialize a ProcessBuilder to run a command using the system shell.- Specified by:
runInShellin 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.
-
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:
runHookIfPresentin 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:
retryFailedLockFileCommitin classFS- Returns:
- true if the caller should retry a failed rename of a lock file.
-
setHidden
public void setHidden(File path, boolean hidden) throws IOException
Set the hidden attribute for file whose name starts with a period.- Overrides:
setHiddenin classFS- Parameters:
path- aFileobject.hidden- whether to set the file hidden- Throws:
IOException
-
getAttributes
public FS.Attributes getAttributes(File path)
Get the file attributes we care for.- Overrides:
getAttributesin classFS- Parameters:
path- aFileobject.- Returns:
- the file attributes we care for.
-
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:
supportsAtomicCreateNewFilein classFS- Returns:
- true if this implementation support atomic creation of new Files
by
File.createNewFile()
-
createNewFile
@Deprecated public boolean createNewFile(File lock) throws IOException
Deprecated.Description copied from class:FSCreate a new file. SeeFile.createNewFile(). Subclasses of this class may take care to provide a safe implementation for this even ifFS.supportsAtomicCreateNewFile()isfalse- Overrides:
createNewFilein classFS- Parameters:
lock- the file to be created- Returns:
trueif the file was created,falseif the file already existed- Throws:
IOException
-
createNewFileAtomic
public FS.LockToken createNewFileAtomic(File file) throws IOException
Create a new file. SeeFile.createNewFile(). Subclasses of this class may take care to provide a safe implementation for this even ifFS.supportsAtomicCreateNewFile()isfalseAn 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 = falsethen 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:
createNewFileAtomicin 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"
-
-