|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.aragost.javahg.Repository
public abstract class Repository
A Mercurial repository.
Constructor Summary | |
---|---|
protected |
Repository(RepositoryConfiguration.CachePolicy cachePolicy)
|
Method Summary | |
---|---|
void |
addToCommandLine(List<String> commandLine)
Add repository specific arguments to the hg command line for command execution |
protected Changeset |
basicChangeset(String node)
|
Changeset |
changeset(String node)
Return a Changeset object for the specified node id. |
Changeset |
changeSet(String node)
Deprecated. Use changeset instead. |
static BaseRepository |
clone(File directory,
String otherRepoUrl)
Clone an existing Mercurial repository. |
static BaseRepository |
clone(RepositoryConfiguration conf,
File directory,
String otherRepoUrl)
Clone an existing Mercurial repository. |
void |
close()
Close the repository. |
static BaseRepository |
create(File directory)
Create a new Mercurial repository. |
static BaseRepository |
create(RepositoryConfiguration conf,
File directory)
Create a new Mercurial repository and open a javahg Repository on it. |
File |
file(String name)
Return a File object for the file name specified in this repository. |
abstract BaseRepository |
getBaseRepository()
|
com.google.common.cache.CacheStats |
getCacheStats()
|
protected com.google.common.cache.LoadingCache<String,Changeset> |
getChangesetCache()
|
protected Changeset |
getChangesetIfInCache(String node)
|
abstract File |
getDirectory()
|
HgVersion |
getHgVersion()
|
abstract ServerPool |
getServerPool()
|
List<Changeset> |
heads()
|
void |
lock()
|
abstract CharsetDecoder |
newDecoder()
|
static BaseRepository |
open(File mercurialRepository)
Open an existing Mercurial repository. |
static BaseRepository |
open(RepositoryConfiguration conf,
File mercurialRepository)
Open an existing Mercurial repository. |
Map<Changeset,Phase> |
phases(String... revs)
Return the phases of the specified revisions |
Map<Changeset,Phase> |
readPhases(String... revs)
Deprecated. use phases instead |
File |
relativeFile(File file)
Convert the specified file object to a file object that is relative to the root of this repository. |
Changeset |
tip()
|
String |
toString()
|
void |
unlock()
|
WorkingCopy |
workingCopy()
Create a new WorkingCopy object for this repository. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
protected Repository(RepositoryConfiguration.CachePolicy cachePolicy)
Method Detail |
---|
public static BaseRepository open(RepositoryConfiguration conf, File mercurialRepository)
mercurialRepository
- path to the local repository.
public static BaseRepository create(RepositoryConfiguration conf, File directory)
directory
- the local destination path of the clone
public static BaseRepository clone(RepositoryConfiguration conf, File directory, String otherRepoUrl)
directory
- the local destination path of the cloneotherRepoUrl
- the (possible remote) repository to clone.
public static BaseRepository open(File mercurialRepository)
RepositoryConfiguration.DEFAULT
.
mercurialRepository
- the local path to the repository.
public static BaseRepository create(File directory)
RepositoryConfiguration.DEFAULT
.
directory
- the local destination path of the clone
public static BaseRepository clone(File directory, String otherRepoUrl)
RepositoryConfiguration.DEFAULT
.
directory
- the local destination path of the cloneotherRepoUrl
- the (possible remote) repository to clone.
@Deprecated public final Changeset changeSet(String node)
node
- a changeset ID, must be 40 hexadecimal characters.
public final Changeset changeset(String node)
Changeset
object for the specified node id.
The changeset is not actually loaded, but will be loaded on demand when a getter is called.
null
is used to represent the null changeset.
node
- a changeset ID, must be 40 hexadecimal characters.
protected Changeset basicChangeset(String node) throws ExecutionException
node
- a changeset node id, that is assume not to be the
null id
ExecutionException
public abstract ServerPool getServerPool()
public abstract CharsetDecoder newDecoder()
public void close()
public abstract File getDirectory()
public abstract BaseRepository getBaseRepository()
public String toString()
toString
in class Object
public void addToCommandLine(List<String> commandLine)
commandLine
- public HgVersion getHgVersion()
public WorkingCopy workingCopy()
public List<Changeset> heads()
@Deprecated public Map<Changeset,Phase> readPhases(String... revs)
revs
-
public Map<Changeset,Phase> phases(String... revs)
revs
-
Changeset
to a Phase
public Changeset tip()
public File relativeFile(File file)
If the file argument is not absolute it is returned as it is.
file
-
public File file(String name)
name
-
public void lock()
public void unlock()
protected com.google.common.cache.LoadingCache<String,Changeset> getChangesetCache()
protected Changeset getChangesetIfInCache(String node)
public com.google.common.cache.CacheStats getCacheStats()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |