blob: aa169959b34e3d0bc6995a0dcec1301665e3eec2 [file] [log] [blame]
/**
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
#ifndef LIBMINIFI_INCLUDE_IO_NonConvertingStream_H_
#define LIBMINIFI_INCLUDE_IO_NonConvertingStream_H_
#include <iostream>
#include <cstdint>
#include "EndianCheck.h"
#include "BaseStream.h"
#include "Serializable.h"
namespace org {
namespace apache {
namespace nifi {
namespace minifi {
namespace io {
/**
* Base Stream. Not intended to be thread safe as it is not intended to be shared
*
* Extensions may be thread safe and thus shareable, but that is up to the implementation.
*/
class NonConvertingStream : public BaseStream {
public:
NonConvertingStream()
: composable_stream_(this) {
}
NonConvertingStream(DataStream *other)
: composable_stream_(other) {
}
virtual ~NonConvertingStream() {
}
/**
* write 4 bytes to stream
* @param base_value non encoded value
* @param stream output stream
* @param is_little_endian endianness determination
* @return resulting write size
**/
virtual int write(uint32_t base_value, bool is_little_endian = false);
int writeData(uint8_t *value, int size);
virtual void seek(uint64_t offset) {
if (composable_stream_ != this) {
composable_stream_->seek(offset);
} else {
DataStream::seek(offset);
}
}
/**
* write 2 bytes to stream
* @param base_value non encoded value
* @param stream output stream
* @param is_little_endian endianness determination
* @return resulting write size
**/
virtual int write(uint16_t base_value, bool is_little_endian = false);
/**
* write valueto stream
* @param value non encoded value
* @param len length of value
* @param strema output stream
* @return resulting write size
**/
virtual int write(uint8_t *value, int len);
/**
* write 8 bytes to stream
* @param base_value non encoded value
* @param stream output stream
* @param is_little_endian endianness determination
* @return resulting write size
**/
virtual int write(uint64_t base_value, bool is_little_endian = false);
/**
* write bool to stream
* @param value non encoded value
* @return resulting write size
**/
virtual int write(bool value);
/**
* write UTF string to stream
* @param str string to write
* @return resulting write size
**/
virtual int writeUTF(std::string str, bool widen = false);
/**
* reads a byte from the stream
* @param value reference in which will set the result
* @param stream stream from which we will read
* @return resulting read size
**/
virtual int read(uint8_t &value);
/**
* Reads data and places it into buf
* @param buf buffer in which we extract data
* @param buflen
*/
virtual int readData(std::vector<uint8_t> &buf, int buflen);
/**
* Reads data and places it into buf
* @param buf buffer in which we extract data
* @param buflen
*/
virtual int readData(uint8_t *buf, int buflen);
/**
* reads two bytes from the stream
* @param value reference in which will set the result
* @param stream stream from which we will read
* @return resulting read size
**/
virtual int read(uint16_t &base_value, bool is_little_endian = false);
/**
* reads a byte from the stream
* @param value reference in which will set the result
* @param stream stream from which we will read
* @return resulting read size
**/
virtual int read(char &value);
/**
* reads a byte array from the stream
* @param value reference in which will set the result
* @param len length to read
* @param stream stream from which we will read
* @return resulting read size
**/
virtual int read(uint8_t *value, int len);
/**
* reads four bytes from the stream
* @param value reference in which will set the result
* @param stream stream from which we will read
* @return resulting read size
**/
virtual int read(uint32_t &value, bool is_little_endian = false);
/**
* reads eight byte from the stream
* @param value reference in which will set the result
* @param stream stream from which we will read
* @return resulting read size
**/
virtual int read(uint64_t &value, bool is_little_endian = false);
virtual const uint64_t getSize() const {
if (composable_stream_ == this){
return buffer.size();
}
else{
return composable_stream_->getSize();
}
}
/**
* read UTF from stream
* @param str reference string
* @param stream stream from which we will read
* @return resulting read size
**/
virtual int readUTF(std::string &str, bool widen = false);
protected:
DataStream *composable_stream_;
};
} /* namespace io */
} /* namespace minifi */
} /* namespace nifi */
} /* namespace apache */
} /* namespace org */
#endif /* LIBMINIFI_INCLUDE_IO_NonConvertingStream_H_ */