src.com.ibm.as400.access.IFSDeleteFileReq Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jt400-jdk8 Show documentation
Show all versions of jt400-jdk8 Show documentation
The Open Source version of the IBM Toolbox for Java
///////////////////////////////////////////////////////////////////////////////
//
// JTOpen (IBM Toolbox for Java - OSS version)
//
// Filename: IFSDeleteFileReq.java
//
// The source code contained herein is licensed under the IBM Public License
// Version 1.0, which has been approved by the Open Source Initiative.
// Copyright (C) 1997-2004 International Business Machines Corporation and
// others. All rights reserved.
//
///////////////////////////////////////////////////////////////////////////////
package com.ibm.as400.access;
import java.io.IOException;
import java.io.InputStream;
/**
Delete file request.
**/
class IFSDeleteFileReq extends IFSDataStreamReq
{
private static final String copyright = "Copyright (C) 1997-2004 International Business Machines Corporation and others.";
private static final int CCSID_OFFSET = 22;
private static final int WORKING_DIR_HANDLE_OFFSET = 24;
private static final int FILE_NAME_LL_OFFSET = 28;
private static final int FILE_NAME_CP_OFFSET = 32;
private static final int FILE_NAME_OFFSET = 34;
private static final int TEMPLATE_LENGTH = 8;
/**
Construct a delete file request.
@param name the file to delete
**/
IFSDeleteFileReq(byte[] name,
int fileNameCCSID)
{
super(20 + TEMPLATE_LENGTH + 6 + name.length);
setLength(data_.length);
setTemplateLen(TEMPLATE_LENGTH);
setReqRepID(0x000C);
set16bit(fileNameCCSID, CCSID_OFFSET);
set32bit(1, WORKING_DIR_HANDLE_OFFSET);
// Set the directory name length.
set32bit(name.length + 6, FILE_NAME_LL_OFFSET);
// Set the code point.
set16bit(0x0002, FILE_NAME_CP_OFFSET);
// Set the directory name characters.
System.arraycopy(name, 0, data_, FILE_NAME_OFFSET, name.length);
}
}