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 com.knowgate.misc.Gadgets;
22:
23: class Trans2QueryPathInformation extends SmbComTransaction {
24:
25: private int informationLevel;
26:
27: Trans2QueryPathInformation(String filename, int informationLevel) {
28: path = filename;
29: this .informationLevel = informationLevel;
30: command = SMB_COM_TRANSACTION2;
31: subCommand = TRANS2_QUERY_PATH_INFORMATION;
32: totalDataCount = 0;
33: maxParameterCount = 2;
34: maxDataCount = 40;
35: maxSetupCount = (byte) 0x00;
36: }
37:
38: int writeSetupWireFormat(byte[] dst, int dstIndex) {
39: dst[dstIndex++] = subCommand;
40: dst[dstIndex++] = (byte) 0x00;
41: return 2;
42: }
43:
44: int writeParametersWireFormat(byte[] dst, int dstIndex) {
45: int start = dstIndex;
46:
47: writeInt2(informationLevel, dst, dstIndex);
48: dstIndex += 2;
49: dst[dstIndex++] = (byte) 0x00;
50: dst[dstIndex++] = (byte) 0x00;
51: dst[dstIndex++] = (byte) 0x00;
52: dst[dstIndex++] = (byte) 0x00;
53: dstIndex += writeString(path, dst, dstIndex);
54:
55: return dstIndex - start;
56: }
57:
58: int writeDataWireFormat(byte[] dst, int dstIndex) {
59: return 0;
60: }
61:
62: int readSetupWireFormat(byte[] buffer, int bufferIndex, int len) {
63: return 0;
64: }
65:
66: int readParametersWireFormat(byte[] buffer, int bufferIndex, int len) {
67: return 0;
68: }
69:
70: int readDataWireFormat(byte[] buffer, int bufferIndex, int len) {
71: return 0;
72: }
73:
74: public String toString() {
75: return new String("Trans2QueryPathInformation["
76: + super .toString() + ",informationLevel=0x"
77: + Gadgets.toHexString(informationLevel, 3)
78: + ",filename=" + path + "]");
79: }
80: }
|