|
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-2001 Sun * Microsystems, Inc. All Rights Reserved. */ package org.netbeans.lib.cvsclient.command.watch; import java.io.*; 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.*; import org.netbeans.lib.cvsclient.util.*; /** * @author Thomas Singer */ public class WatchCommand extends BasicCommand { private WatchMode watchMode; private Watch watch; /** * Construct a new WatchCommand. */ public WatchCommand() { resetCVSCommand(); } /** * Executes 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 eventManager the EventManager used for sending events * * @throws IllegalStateException if the commands options aren't set correctly * @throws AuthenticationException if the connection could not be established * @throws CommandException if some other thing gone wrong */ public void execute(ClientServices client, EventManager eventManager) throws CommandException, AuthenticationException { checkState(); client.ensureConnection(); try { super.execute(client, eventManager); if (getWatchMode().isWatchOptionAllowed()) { String[] arguments = getWatchNotNull().getArguments(); for (int i = 0; i < arguments.length; i++) { addRequest(new ArgumentRequest("-a")); // NOI18N addRequest(new ArgumentRequest(arguments[i])); } } addRequestForWorkingDirectory(client); addArgumentRequests(); addRequest(getWatchMode().getCommand()); client.processRequests(requests); } catch (CommandException ex) { throw ex; } catch (Exception ex) { throw new CommandException(ex, ex.getLocalizedMessage()); } finally { requests.clear(); } } /** * If a builder was set-up, it's outputDone() method is called. * This method is called, when the server responses with "ok" or "error" * (== when the command finishes). */ public void commandTerminated(TerminationEvent e) { if (builder != null) { builder.outputDone(); } } /** * Uses the specified argument to set the appropriate properties. * To be mainly used for automatic settings (like parsing the .cvsrc file) * * @return whether the option (switch) was recognized and set */ public boolean setCVSCommand(char opt, String optArg) { if (opt == 'R') { setRecursive(true); } else if (opt == 'l') { setRecursive(false); } else { return false; } return true; } /** * String returned by this method defines which options are available for * this command. */ public String getOptString() { return "Rl"; //NOI18N } /** * Resets all switches in this command. * After calling this method, the command behaves like newly created. */ public void resetCVSCommand() { setRecursive(true); setWatch(null); } /** * Returns how this command would look like when typed on the command line. */ public String getCVSCommand() { StringBuffer cvsCommand = new StringBuffer("watch "); //NOI18N cvsCommand.append(getCVSArguments()); appendFileArguments(cvsCommand); return cvsCommand.toString(); } /** * Returns the arguments of the command in the command-line style. * Similar to getCVSCommand() however without the files and command's name */ public String getCVSArguments() { checkState(); StringBuffer cvsArguments = new StringBuffer(); cvsArguments.append(getWatchMode().toString()); cvsArguments.append(' '); if (!isRecursive()) { cvsArguments.append("-l "); //NOI18N } if (getWatchMode().isWatchOptionAllowed()) { cvsArguments.append("-a "); cvsArguments.append(getWatchNotNull().toString()); } return cvsArguments.toString(); } /** * Returns the WatchMode. */ public WatchMode getWatchMode() { return watchMode; } /** * Sets the WatchMode. */ public void setWatchMode(WatchMode watchMode) { this.watchMode = watchMode; } /** * Returns the watch. */ public Watch getWatch() { return watch; } private Watch getWatchNotNull() { if (watch == null) { return Watch.ALL; } return watch; } /** * Sets the watch. * If the WatchMode ADD or REMOVE is used, null is the same as Watch.ALL. * If the WatchMode ON or OFF is used, this option isn't used at all. */ public void setWatch(Watch watch) { this.watch = watch; } private void checkState() { if (getWatchMode() == null) { throw new IllegalStateException("Watch mode expected!"); } } } |
... 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.