com.google.code.jgntp.internal.message.write.AbstractGntpMessageWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jgntp Show documentation
Show all versions of jgntp Show documentation
Java implementation of the Growl Network Transport Protocol
/*
* Copyright (C) 2010 Leandro Aparecido
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.code.jgntp.internal.message.write;
import java.io.*;
import com.google.code.jgntp.*;
import com.google.code.jgntp.internal.message.*;
import com.google.code.jgntp.internal.message.GntpMessage.*;
import com.google.code.jgntp.internal.util.*;
public abstract class AbstractGntpMessageWriter implements GntpMessageWriter {
protected OutputStream output;
protected OutputStreamWriter writer;
protected GntpPassword password;
@Override
public void prepare(OutputStream output, GntpPassword password) {
this.output = output;
this.writer = new OutputStreamWriter(output, GntpMessage.ENCODING);
this.password = password;
}
@Override
public void writeStatusLine(GntpMessageType type) throws IOException {
writer.append(GntpMessage.PROTOCOL_ID).append('/').append(GntpVersion.ONE_DOT_ZERO.toString());
writer.append(' ').append(type.toString());
writer.append(' ');
writeEncryptionSpec();
if (password != null) {
writer.append(' ').append(password.getKeyHashAlgorithm());
writer.append(':').append(Hex.toHexadecimal(password.getKeyHash()));
writer.append('.').append(Hex.toHexadecimal(password.getSalt()));
}
}
@Override
public void startHeaders() throws IOException {
writer.flush();
}
@Override
public void writeHeaderLine(String line) throws IOException {
writer.append(line);
}
@Override
public void finishHeaders() throws IOException {
writer.flush();
}
@Override
public void writeBinarySection(BinarySection binarySection) throws IOException {
byte[] data = getDataForBinarySection(binarySection);
writer.append(GntpMessage.BINARY_SECTION_ID).append(' ').append(binarySection.getId());
writeSeparator();
writer.append(GntpMessage.BINARY_SECTION_LENGTH).append(' ').append(Long.toString(data.length));
writeSeparator();
writeSeparator();
writer.flush();
output.write(data);
}
@Override
public void writeSeparator() throws IOException {
writer.append(GntpMessage.SEPARATOR);
}
protected abstract void writeEncryptionSpec() throws IOException;
protected abstract byte[] getDataForBinarySection(BinarySection binarySection);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy