|
What this is
Other links
The source code
/*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License
* Version 1.0 (the "License"). You may not use this file except in
* compliance with the License. A copy of the License is available at
* http://www.sun.com/
*
* The Original Code is NetBeans. The Initial Developer of the Original
* Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
* Microsystems, Inc. All Rights Reserved.
*/
package org.netbeans.lib.cvsclient.command.annotate;
import java.io.*;
import java.util.*;
import org.netbeans.lib.cvsclient.*;
import org.netbeans.lib.cvsclient.command.*;
import org.netbeans.lib.cvsclient.connection.*;
import org.netbeans.lib.cvsclient.event.*;
import org.netbeans.lib.cvsclient.request.*;
/**
* The rannotate command is similar to anootate, but doens't operate on currently checked
* out sources.
*
* @author MIlos Kleint
*/
public class RannotateCommand extends BasicCommand {
/**
* The modules to checkout. These names are unexpanded and will be passed
* to a module-expansion request.
*/
private final List modules = new LinkedList();
/**
* The expanded modules.
*/
private final List expandedModules = new LinkedList();
/**
* Use head revision if a revision meeting criteria set by switches -r/-D
* (tag/date) is not found.
*/
private boolean useHeadIfNotFound;
/**
* equals the -D switch of command line cvs.
*/
private String annotateByDate;
/**
* Equals the -r switch of command-line cvs.
*/
private String annotateByRevision;
/**
* Holds value of property headerAndDescOnly.
*/
private boolean headerAndDescOnly;
public RannotateCommand() {
resetCVSCommand();
}
/**
* Set the modules to export.
* @param theModules the names of the modules to export
*/
public void setModule(String module) {
modules.add(module);
}
/**
* clears the list of modules for export.
*/
public void clearModules() {
this.modules.clear();
}
/**
* Set the modules to export.
* @param theModules the names of the modules to export
*/
public void setModules(String[] modules) {
clearModules();
if (modules == null) {
return;
}
for (int i = 0; i < modules.length; i++) {
String module = modules[i];
this.modules.add(module);
}
}
public String[] getModules() {
String[] mods = new String[modules.size()];
mods = (String[])modules.toArray(mods);
return mods;
}
private void processExistingModules(String localPath) {
if (expandedModules.size() == 0) {
return;
}
String[] directories = new String[expandedModules.size()];
directories = (String[])expandedModules.toArray(directories);
setModules(directories);
}
/**
* Execute this command.
* @param client the client services object that provides any necessary
* services to this command, including the ability to actually process
* all the requests
*/
public void execute(ClientServices client, EventManager em)
throws CommandException, AuthenticationException {
client.ensureConnection();
requests = new LinkedList();
if (client.isFirstCommand()) {
requests.add(new RootRequest(client.getRepository()));
}
for (Iterator it = modules.iterator(); it.hasNext();) {
String module = (String)it.next();
requests.add(new ArgumentRequest(module));
}
expandedModules.clear();
requests.add(new DirectoryRequest(".", client.getRepository())); //NOI18N
requests.add(new ExpandModulesRequest());
try {
client.processRequests(requests);
}
catch (CommandException ex) {
throw ex;
}
catch (Exception ex) {
throw new CommandException(ex, ex.getLocalizedMessage());
}
requests.clear();
postExpansionExecute(client, em);
}
/**
* This is called when the server has responded to an expand-modules
* request.
*/
public void moduleExpanded(ModuleExpansionEvent e) {
expandedModules.add(e.getModule());
}
/**
* Execute this command
* @param client the client services object that provides any necessary
* services to this command, including the ability to actually process
* all the requests
*/
private void postExpansionExecute(ClientServices client, EventManager em)
throws CommandException, AuthenticationException {
// processExistingModules(client.getLocalPath());
super.execute(client, em);
//
// moved modules code to the end of the other arguments --GAR
//
if (!isRecursive())
{
requests.add(1, new ArgumentRequest("-l")); //NOI18N
}
if (useHeadIfNotFound) {
requests.add(1, new ArgumentRequest("-f")); //NOI18N
}
if (annotateByDate != null && annotateByDate.length() > 0) {
requests.add(1, new ArgumentRequest("-D")); //NOI18N
requests.add(2, new ArgumentRequest(getAnnotateByDate()));
}
if (annotateByRevision != null && annotateByRevision.length() > 0) {
requests.add(1, new ArgumentRequest("-r")); //NOI18N
requests.add(2, new ArgumentRequest(getAnnotateByRevision()));
}
for (Iterator it = modules.iterator(); it.hasNext();) {
String module = (String)it.next();
requests.add(new ArgumentRequest(module));
}
requests.add(new DirectoryRequest(".", client.getRepository())); //NOI18N
requests.add(CommandRequest.RANNOTATE);
try {
client.processRequests(requests);
requests.clear();
}
catch (CommandException ex) {
throw ex;
}
catch (Exception ex) {
throw new CommandException(ex, ex.getLocalizedMessage());
}
}
public String getCVSCommand() {
StringBuffer toReturn = new StringBuffer("rannotate "); //NOI18N
toReturn.append(getCVSArguments());
if (modules != null && modules.size() > 0) {
for (Iterator it = modules.iterator(); it.hasNext();) {
String module = (String)it.next();
toReturn.append(module);
toReturn.append(' ');
}
}
else {
String localizedMsg = CommandException.getLocalMessage("ExportCommand.moduleEmpty.text"); //NOI18N
toReturn.append(" "); //NOI18N
toReturn.append(localizedMsg);
}
return toReturn.toString();
}
public String getCVSArguments() {
StringBuffer toReturn = new StringBuffer(""); //NOI18N
if (!isRecursive()) {
toReturn.append("-l "); //NOI18N
}
if (getAnnotateByRevision() != null) {
toReturn.append("-r "); //NOI18N
toReturn.append(getAnnotateByRevision());
toReturn.append(" "); //NOI18N
}
if (getAnnotateByDate() != null) {
toReturn.append("-D "); //NOI18N
toReturn.append(getAnnotateByDate());
toReturn.append(" "); //NOI18N
}
if (isUseHeadIfNotFound()) {
toReturn.append("-f "); //NOI18N
}
return toReturn.toString();
}
public boolean setCVSCommand(char opt, String optArg) {
if (opt == 'R') {
setRecursive(true);
}
else if (opt == 'l') {
setRecursive(false);
}
else if (opt == 'r') {
setAnnotateByRevision(optArg);
}
else if (opt == 'D') {
setAnnotateByDate(optArg);
}
else if (opt == 'f') {
setUseHeadIfNotFound(true);
}
else {
return false;
}
return true;
}
public void resetCVSCommand() {
setRecursive(true);
setAnnotateByDate(null);
setAnnotateByRevision(null);
setUseHeadIfNotFound(false);
}
/**
* String returned by this method defines which options are available for this particular command
*/
public String getOptString() {
return "Rlr:D:f"; //NOI18N
}
/**
* Create a builder for this command.
* @param eventMan the event manager used to receive events.
*/
public Builder createBuilder(EventManager eventMan) {
return new AnnotateBuilder(eventMan, this);
}
/** called when server responses with "ok" or "error", (when the command finishes)
*/
public void commandTerminated(TerminationEvent e) {
if (builder != null) {
builder.outputDone();
}
}
/**
* Getter for property useHeadIfNotFound.
* @return Value of property useHeadIfNotFound.
*/
public boolean isUseHeadIfNotFound() {
return useHeadIfNotFound;
}
/**
* Setter for property useHeadIfNotFound.
* @param useHeadIfNotFound New value of property useHeadIfNotFound.
*/
public void setUseHeadIfNotFound(boolean useHeadIfNotFound) {
this.useHeadIfNotFound = useHeadIfNotFound;
}
/**
* Getter for property annotateByDate.
* @return Value of property annotateByDate.
*/
public String getAnnotateByDate() {
return annotateByDate;
}
/**
* Setter for property annotateByDate.
* @param annotateByDate New value of property annotateByDate.
*/
public void setAnnotateByDate(String annotateByDate) {
this.annotateByDate = annotateByDate;
}
/**
* Getter for property annotateByRevision.
* @return Value of property annotateByRevision.
*/
public String getAnnotateByRevision() {
return annotateByRevision;
}
/**
* Setter for property annotateByRevision.
* @param annotateByRevision New value of property annotateByRevision.
*/
public void setAnnotateByRevision(String annotateByRevision) {
this.annotateByRevision = annotateByRevision;
}
}
|
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.