📄 svnclient.java
字号:
package org.tigris.subversion.javahl;
/**
* @copyright
* ====================================================================
* Copyright (c) 2003-2004 CollabNet. All rights reserved.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at http://subversion.tigris.org/license-1.html.
* If newer versions of this license are posted there, you may use a
* newer version instead, at your option.
*
* This software consists of voluntary contributions made by many
* individuals. For exact contribution history, see the revision
* history and logs, available at http://subversion.tigris.org/.
* ====================================================================
* @endcopyright
*/
/**
* This is the main interface class. All subversion commandline client svn &
* svnversion operation are implemented in this class. This class is not
* threadsafe. If you need threadsafe access, use SVNClientSynchronized
*/
public class SVNClient implements SVNClientInterface
{
/**
* load the needed native library
*/
static
{
/*
* first try to load the library by the new name.
* if that fails, try to load the library by the old name.
*/
try
{
System.loadLibrary("svnjavahl-1");
}
catch(UnsatisfiedLinkError ex)
{
try
{
System.loadLibrary("libsvnjavahl-1");
}
catch (UnsatisfiedLinkError e)
{
System.loadLibrary("svnjavahl");
}
}
}
/**
* Standard empty contructor, builds just the native peer.
*/
public SVNClient()
{
cppAddr = ctNative();
}
/**
* Build the native peer
* @return the adress of the peer
*/
private native long ctNative();
/**
* release the native peer (should not depend on finalize)
*/
public native void dispose();
/**
* release the native peer (should use dispose instead)
*/
protected native void finalize();
/**
* slot for the adress of the native peer. The JNI code is the only user
* of this member
*/
protected long cppAddr;
/**
* Returns the last destination path submitted.
* @deprecated
* @return path in Subversion format.
*/
public native String getLastPath();
/**
* List a directory or file of the working copy.
*
* @param path Path to explore.
* @param descend Recurse into subdirectories if existant.
* @param onServer Request status information from server.
* @param getAll get status for uninteristing files (unchanged).
* @return Array of Status entries.
*/
public Status[]status(String path, boolean descend, boolean onServer,
boolean getAll) throws ClientException
{
return status(path, descend, onServer, getAll, false);
}
/**
* List a directory or file of the working copy.
*
* @param path Path to explore.
* @param descend Recurse into subdirectories if existant.
* @param onServer Request status information from server.
* @param getAll get status for uninteristing files (unchanged).
* @param noIgnore get status for normaly ignored files and directories.
* @return Array of Status entries.
*/
public native Status[] status(String path, boolean descend,
boolean onServer, boolean getAll,
boolean noIgnore) throws ClientException;
/**
* Lists the directory entries of an url on the server.
* @param url the url to list
* @param revision the revision to list
* @param recurse recurse into subdirectories
* @return Array of DirEntry objects.
*/
public native DirEntry[]list(String url, Revision revision, boolean recurse)
throws ClientException;
/**
* Returns the status of a single file in the path.
*
* @param path File to gather status.
* @param onServer Request status information from the server.
* @return the subversion status of the file.
*/
public native Status singleStatus(String path, boolean onServer)
throws ClientException;
/**
* Sets the username used for authentification.
* @param username the username
*/
public native void username(String username);
/**
* Sets the password used for authification.
* @param password the password
*/
public native void password(String password);
/**
* Register callback interface to supply username and password on demand
* @param prompt the callback interface
*/
public native void setPrompt(PromptUserPassword prompt);
/**
* Retrieve the log messages for an item
* @param path path or url to get the log message for.
* @param revisionStart first revision to show
* @param revisionEnd last revision to show
* @return array of LogMessages
*/
public LogMessage[] logMessages(String path, Revision revisionStart,
Revision revisionEnd) throws ClientException
{
return logMessages(path, revisionStart, revisionEnd, true, false);
}
/**
* Retrieve the log messages for an item
* @param path path or url to get the log message for.
* @param revisionStart first revision to show
* @param revisionEnd last revision to show
* @param stopOnCopy do not continue on copy operations
* @return array of LogMessages
*/
public LogMessage[] logMessages(String path, Revision revisionStart,
Revision revisionEnd, boolean stopOnCopy)
throws ClientException
{
return logMessages(path, revisionStart, revisionEnd, stopOnCopy, false);
}
/**
* Retrieve the log messages for an item
* @param path path or url to get the log message for.
* @param revisionStart first revision to show
* @param revisionEnd last revision to show
* @param stopOnCopy do not continue on copy operations
* @param discoverPath
* @return array of LogMessages
*/
public native LogMessage[] logMessages(String path, Revision revisionStart,
Revision revisionEnd,
boolean stopOnCopy, boolean discoverPath)
throws ClientException;
/**
* Executes a revision checkout.
* @param moduleName name of the module to checkout.
* @param destPath destination directory for checkout.
* @param revision the revision to checkout.
* @param recurse whether you want it to checkout files recursively.
* @exception ClientException
*/
public native long checkout(String moduleName, String destPath,
Revision revision, boolean recurse)
throws ClientException;
/**
* Sets the notification callback used to send processing information back
* to the calling program.
* @param notify listener that the SVN library should call on many
* file operations.
*/
public native void notification(Notify notify);
/**
* Sets the commit message handler. This allows more complex commit message
* with the list of the elements to be commited as input.
* @param messageHandler callback for entering commit messages
* if this is set the message parameter is ignored.
*/
public native void commitMessageHandler(CommitMessage messageHandler);
/**
* Sets a file for deletion.
* @param path path or url to be deleted
* @param message if path is a url, this will be the commit message.
* @param force delete even when there are local modifications.
* @exception ClientException
*/
public native void remove(String[] path, String message, boolean force)
throws ClientException;
/**
* Reverts a file to a pristine state.
* @param path path of the file.
* @param recurse recurse into subdirectories
* @exception ClientException
*/
public native void revert(String path, boolean recurse)
throws ClientException;
/**
* Adds a file to the repository.
* @param path path to be added.
* @param recurse recurse into subdirectories
* @exception ClientException
*/
public native void add(String path, boolean recurse)throws ClientException;
/**
* Updates the directory or file from repository
* @param path target file.
* @param revision the revision number to checkout.
* Revision.HEAD will checkout the
* latest revision.
* @param recurse recursively update.
* @exception ClientException
*/
public native long update(String path, Revision revision, boolean recurse)
throws ClientException;
/**
* Commits changes to the repository.
* @param path files to commit.
* @param message log message.
* @param recurse whether the operation should be done recursively.
* @return Returns a long representing the revision. It returns a
* -1 if the revision number is invalid.
* @exception ClientException
*/
public native long commit(String[] path, String message, boolean recurse)
throws ClientException;
/**
* Copies a versioned file with the history preserved.
* @param srcPath source path or url
* @param destPath destination path or url
* @param message commit message if destPath is an url
* @param revision source revision
* @exception ClientException
*/
public native void copy(String srcPath, String destPath, String message,
Revision revision) throws ClientException;
/**
* Moves or renames a file.
* @param srcPath source path or url
* @param destPath destination path or url
* @param message commit message if destPath is an url
* @param revision source revision
* @param force even with local modifications.
* @exception ClientException
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -