com.yahoo.imapnio.async.request.AbstractFolderActionCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imapnio.core Show documentation
Show all versions of imapnio.core Show documentation
imapnio component ${project.name}
The newest version!
package com.yahoo.imapnio.async.request;
import java.nio.charset.StandardCharsets;
import javax.annotation.Nonnull;
import com.sun.mail.imap.protocol.BASE64MailboxEncoder;
import com.yahoo.imapnio.async.exception.ImapAsyncClientException;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
/**
* This class defines imap abstract commands related to change operation on folder, like create folder, rename folder, delete folder.
*/
abstract class AbstractFolderActionCommand extends ImapRequestAdapter {
/** Byte array for CR and LF, keeping the array local so it cannot be modified by others. */
private static final byte[] CRLF_B = { '\r', '\n' };
/** Command operator, for example, "CREATE". */
private String op;
/** Folder name. */
private String folderName;
/**
* Initializes a {@link AbstractFolderActionCommand}.
*
* @param op command operator
* @param folderName folder name
*/
protected AbstractFolderActionCommand(@Nonnull final String op, @Nonnull final String folderName) {
this.op = op;
this.folderName = folderName;
}
@Override
public void cleanup() {
this.op = null;
this.folderName = null;
}
@Override
public ByteBuf getCommandLineBytes() throws ImapAsyncClientException {
final String base64Folder = BASE64MailboxEncoder.encode(folderName);
// 2 * base64Folder.length(): assuming every char needs to be escaped, goal is eliminating resizing, and avoid complex length calculation
final int len = 2 * base64Folder.length() + ImapClientConstants.PAD_LEN;
final ByteBuf sb = Unpooled.buffer(len);
sb.writeBytes(op.getBytes(StandardCharsets.US_ASCII));
sb.writeByte(ImapClientConstants.SPACE);
final ImapArgumentFormatter formatter = new ImapArgumentFormatter();
formatter.formatArgument(base64Folder, sb, false); // already base64 encoded so can be formatted and write to sb
sb.writeBytes(CRLF_B);
return sb;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy