01: /* jcifs smb client library in Java
02: * Copyright (C) 2000 "Michael B. Allen" <jcifs at samba dot org>
03: *
04: * This library is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2.1 of the License, or (at your option) any later version.
08: *
09: * This library is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: */
18:
19: package com.knowgate.jcifs.smb;
20:
21: import java.io.OutputStream;
22: import java.io.IOException;
23:
24: class TransactNamedPipeOutputStream extends OutputStream {
25:
26: private String path;
27: private SmbNamedPipe pipe;
28: private byte[] tmp = new byte[1];
29:
30: TransactNamedPipeOutputStream(SmbNamedPipe pipe) throws IOException {
31: this .pipe = pipe;
32: path = pipe.unc;
33: }
34:
35: public void close() throws IOException {
36: pipe.close();
37: }
38:
39: public void write(int b) throws IOException {
40: tmp[0] = (byte) b;
41: write(tmp, 0, 1);
42: }
43:
44: public void write(byte[] b) throws IOException {
45: write(b, 0, b.length);
46: }
47:
48: public void write(byte[] b, int off, int len) throws IOException {
49: if (len < 0) {
50: len = 0;
51: }
52:
53: if ((pipe.pipeType & SmbNamedPipe.PIPE_TYPE_CALL) == SmbNamedPipe.PIPE_TYPE_CALL) {
54: pipe.sendTransaction(new TransWaitNamedPipe(path),
55: new TransWaitNamedPipeResponse());
56: pipe.sendTransaction(new TransCallNamedPipe(path, b, off,
57: len), new TransCallNamedPipeResponse(pipe));
58: } else if ((pipe.pipeType & SmbNamedPipe.PIPE_TYPE_TRANSACT) == SmbNamedPipe.PIPE_TYPE_TRANSACT) {
59: pipe.open((pipe.pipeType & 0xFF0000) | SmbFile.O_EXCL,
60: SmbFile.ATTR_NORMAL, 0);
61: pipe.sendTransaction(new TransTransactNamedPipe(pipe.fid,
62: b, off, len), new TransTransactNamedPipeResponse(
63: pipe));
64: }
65: }
66: }
|