001: /*****************************************************************************
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025:
026: * The Original Software is the CVS Client Library.
027: * The Initial Developer of the Original Software is Robert Greig.
028: * Portions created by Robert Greig are Copyright (C) 2000.
029: * All Rights Reserved.
030: *
031: * If you wish your version of this file to be governed by only the CDDL
032: * or only the GPL Version 2, indicate your decision by adding
033: * "[Contributor] elects to include this software in this distribution
034: * under the [CDDL or GPL Version 2] license." If you do not indicate a
035: * single choice of license, a recipient has the option to distribute
036: * your version of this file under either the CDDL, the GPL Version 2 or
037: * to extend the choice of license to its licensees as provided above.
038: * However, if you add GPL Version 2 code and therefore, elected the GPL
039: * Version 2 license, then the option applies only if the new code is
040: * made subject to such option by the copyright holder.
041:
042: * Contributor(s): Robert Greig.
043: *****************************************************************************/package org.netbeans.lib.cvsclient.response;
044:
045: import java.io.*;
046:
047: import org.netbeans.lib.cvsclient.event.FileRemovedEvent;
048: import org.netbeans.lib.cvsclient.event.FileToRemoveEvent;
049: import org.netbeans.lib.cvsclient.util.*;
050:
051: /**
052: * Indicates that a file has been removed from the repository.
053: * @author Robert Greig
054: */
055: class RemovedResponse implements Response {
056:
057: /**
058: * Process the data for the response.
059: * @param dis the data inputstream allowing the client to read the server's
060: * response. Note that the actual response name has already been read
061: * and the input stream is positioned just before the first argument, if
062: * any.
063: */
064: public void process(LoggedDataInputStream dis,
065: ResponseServices services) throws ResponseException {
066: try {
067: String localPath = dis.readLine();
068: String repositoryPath = dis.readLine();
069:
070: String filePath = services.convertPathname(localPath,
071: repositoryPath);
072: filePath = new File(filePath).getAbsolutePath();
073: if (services.getGlobalOptions().isExcluded(
074: new File(filePath))) {
075: return;
076: }
077:
078: FileToRemoveEvent e1 = new FileToRemoveEvent(this , filePath);
079: FileRemovedEvent e2 = new FileRemovedEvent(this , filePath);
080:
081: //Fire the event before removing the local file. This is done
082: //so that event listeners have a chance to access the file one
083: //last time before the file is removed.
084: services.getEventManager().fireCVSEvent(e1);
085: services.removeLocalFile(localPath, repositoryPath);
086: services.getEventManager().fireCVSEvent(e2);
087: } catch (EOFException ex) {
088: throw new ResponseException(ex, ResponseException
089: .getLocalMessage("CommandException.EndOfFile", // NOI18N
090: null));
091: } catch (IOException ex) {
092: throw new ResponseException(ex);
093: }
094: }
095:
096: /**
097: * Is this a terminal response, i.e. should reading of responses stop
098: * after this response. This is true for responses such as OK or
099: * an error response
100: */
101: public boolean isTerminalResponse() {
102: return false;
103: }
104: }
|