alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

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 the CVS Client Library.
 * The Initial Developer of the Original Code is Robert Greig.
 * Portions created by Robert Greig are Copyright (C) 2000.
 * All Rights Reserved.
 *
 * Contributor(s): Robert Greig.
 *****************************************************************************/
package org.netbeans.lib.cvsclient.command;

import java.io.*;

import org.netbeans.lib.cvsclient.*;
import org.netbeans.lib.cvsclient.connection.*;
import org.netbeans.lib.cvsclient.event.*;

/**
 * All commands must extend this class. A command is essentially a
 * collection of requests that make up what is logically known as a CVS
 * command (from a user's perspective). Commands correspond to operations the
 * user can perform with CVS, for example checkout a module or perform a
 * diff on two file versions.
* Commands are automatically added as CVS event listeners. They can act * on particular events and perhaps fire new events. * * @author Robert Greig */ public abstract class Command implements CVSListener, Cloneable { /** * The local directory from which the command is being run. * This gives us the ability to construct a full pathname for the file * which we are processing. The information from the responses alone is * not enough. */ protected String localDirectory; /** * The global options. */ private GlobalOptions globalOptions; private boolean failed = false; /** * 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 * @param e the event manager. The command can use this to fire events * if necessary - for example, while parsing status responses. * @return Whether the execution was successfull */ public void execute(ClientServices client, EventManager eventManager) throws CommandException, CommandAbortedException, AuthenticationException { setLocalDirectory(client.getLocalPath()); this.globalOptions = client.getGlobalOptions(); } /** * This method returns how the command would looklike when typed on the * command line. * * Each command is responsible for constructing this information. * * @returns [] files/dirs. Example: checkout -p CvsCommand.java */ public abstract String getCVSCommand(); /** * Returns the arguments of the command in the command-line style. * Similar to getCVSCommand() however without the files and command's name. */ public abstract String getCVSArguments(); /** * Takes the arguments and sets the command. * To be mainly used for automatic settings (like parsing the .cvsrc file). * * @return true if the option (switch) was recognized and set */ public abstract boolean setCVSCommand(char opt, String optArg); /** * Resets all switches in the command to the default behaviour. * After calling this method, the command should behave defaultly. */ public abstract void resetCVSCommand(); /** * Returns a String that defines which options are available for this * particular command. */ public abstract String getOptString(); /** * This method just calls the Object.clone() and makes it public. */ public Object clone() { try { return super.clone(); } catch (CloneNotSupportedException ex) { return null; } } public boolean hasFailed() { return failed; } /** * Called when the server wants to send a message to be displayed to * the user. The message is only for information purposes and clients * can choose to ignore these messages if they wish. * @param e the event */ public void messageSent(MessageEvent e) { if (e.isError() && (e.getSource() instanceof org.netbeans.lib.cvsclient.response.ErrorResponse)) { // We need to ignore ErrorMessageResponse failed = true; } } /** * Called when a file has been added. * @param e the event */ public void fileAdded(FileAddedEvent e) { } /** * Called when a file is removed. * @param e the event */ public void fileRemoved(FileRemovedEvent e) { } /** * Called when a file has been updated. * @param e the event */ public void fileUpdated(FileUpdatedEvent e) { } /** * Called when file status information has been received. */ public void fileInfoGenerated(FileInfoEvent e) { } /** * Called when server responses with "ok" or "error", (when the command finishes). */ public void commandTerminated(TerminationEvent e) { } /** * This is called when the servers has responded to an expand-modules * request. */ public void moduleExpanded(ModuleExpansionEvent e) { } /** * Returns the local path the command is associated with. */ public final String getLocalDirectory() { return localDirectory; } /** * Returns the local path the command is associated with. * @deprecated Please use the getLocalDirectory() method instead. */ public final String getLocalPath() { return localDirectory; } /** * Get the global options. */ public final GlobalOptions getGlobalOptions() { return globalOptions; } /** * Returns the relative path of the specified file (relative to the set * local path). * Backward slashes will be replaced by forward slashes. */ public final String getRelativeToLocalPathInUnixStyle(File file) { String filePath = file.getAbsolutePath(); int startIndex = localDirectory.length() + 1; if (startIndex >= filePath.length()) { return "."; //NOI18N } String relativePath = filePath.substring(startIndex); return relativePath.replace('\\', '/'); } /** * Sets the local directory for the command. */ protected final void setLocalDirectory(String localDirectory) { this.localDirectory = localDirectory; } /** * Returns the trimmed version of the specified String s. * The returned String is null if the specified String is null or contains * only white spaces. */ protected static final String getTrimmedString(String s) { if (s == null) { return null; } s = s.trim(); if (s.length() == 0) { return null; } return s; } }
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 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.