~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to javacvs/libsrc/org/netbeans/lib/cvsclient/file/GzippedFileHandler.java

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
3
 *
 
4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
5
 *
 
6
 * The contents of this file are subject to the terms of either the GNU
 
7
 * General Public License Version 2 only ("GPL") or the Common
 
8
 * Development and Distribution License("CDDL") (collectively, the
 
9
 * "License"). You may not use this file except in compliance with the
 
10
 * License. You can obtain a copy of the License at
 
11
 * http://www.netbeans.org/cddl-gplv2.html
 
12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
13
 * specific language governing permissions and limitations under the
 
14
 * License.  When distributing the software, include this License Header
 
15
 * Notice in each file and include the License file at
 
16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
17
 * particular file as subject to the "Classpath" exception as provided
 
18
 * by Sun in the GPL Version 2 section of the License file that
 
19
 * accompanied this code. If applicable, add the following below the
 
20
 * License Header, with the fields enclosed by brackets [] replaced by
 
21
 * your own identifying information:
 
22
 * "Portions Copyrighted [year] [name of copyright owner]"
 
23
 *
 
24
 * Contributor(s):
 
25
 *
 
26
 * The Original Software is the CVS Client Library.
 
27
 * The Initial Developer of the Original Software is Robert Greig.
 
28
 *
 
29
 * Contributor(s): Robert Greig, Milos Kleint.
 
30
 *****************************************************************************/
 
31
package org.netbeans.lib.cvsclient.file;
 
32
 
 
33
import java.io.*;
 
34
import java.util.zip.*;
 
35
 
 
36
import org.netbeans.lib.cvsclient.request.*;
 
37
 
 
38
/**
 
39
 * Handles the reading and writing of Compressed files to and from the
 
40
 * server.
 
41
 * @author  Milos Kleint
 
42
 */
 
43
public class GzippedFileHandler extends DefaultFileHandler {
 
44
    /**
 
45
     * Indicates whether the file is actually compressed
 
46
     */
 
47
    private boolean isCompressed;
 
48
 
 
49
    /**
 
50
     * Get any requests that must be sent before commands are sent, to init
 
51
     * this file handler.
 
52
     * @return an array of Requests that must be sent
 
53
     */
 
54
    public Request[] getInitialisationRequests() {
 
55
        return new Request[]{
 
56
            new GzipStreamRequest()
 
57
        };
 
58
    }
 
59
 
 
60
    protected Reader getProcessedReader(File f) throws IOException {
 
61
        return new InputStreamReader(new GZIPInputStream(new
 
62
                FileInputStream(f)));
 
63
    }
 
64
 
 
65
    protected InputStream getProcessedInputStream(File f) throws IOException {
 
66
        return new GZIPInputStream(new FileInputStream(f));
 
67
    }
 
68
}
 
 
b'\\ No newline at end of file'