2020-08-13 20:53:35 +02:00
|
|
|
#include "../timemanager/Clock.h"
|
|
|
|
#include "ServiceInterfaceBuffer.h"
|
2018-07-12 16:29:32 +02:00
|
|
|
#include <cstring>
|
2020-06-04 19:07:04 +02:00
|
|
|
#include <inttypes.h>
|
2018-07-12 16:29:32 +02:00
|
|
|
|
2018-07-13 15:56:37 +02:00
|
|
|
// to be implemented by bsp
|
2020-06-03 23:14:17 +02:00
|
|
|
extern "C" void printChar(const char*, bool errStream);
|
|
|
|
|
|
|
|
#ifndef UT699
|
|
|
|
|
|
|
|
ServiceInterfaceBuffer::ServiceInterfaceBuffer(std::string setMessage,
|
2020-06-04 14:08:26 +02:00
|
|
|
bool addCrToPreamble, bool buffered , bool errStream, uint16_t port):
|
2020-06-03 23:14:17 +02:00
|
|
|
isActive(true), logMessage(setMessage),
|
2020-06-04 14:08:26 +02:00
|
|
|
addCrToPreamble(addCrToPreamble), buffered(buffered),
|
|
|
|
errStream(errStream) {
|
|
|
|
if(buffered) {
|
2020-06-03 23:14:17 +02:00
|
|
|
// Set pointers if the stream is buffered.
|
|
|
|
setp( buf, buf + BUF_SIZE );
|
|
|
|
}
|
2020-06-04 19:50:56 +02:00
|
|
|
preamble.reserve(MAX_PREAMBLE_SIZE);
|
|
|
|
preamble.resize(MAX_PREAMBLE_SIZE);
|
2020-06-03 23:14:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ServiceInterfaceBuffer::putChars(char const* begin, char const* end) {
|
|
|
|
char array[BUF_SIZE];
|
|
|
|
uint32_t length = end - begin;
|
|
|
|
if (length > sizeof(array)) {
|
|
|
|
length = sizeof(array);
|
|
|
|
}
|
|
|
|
memcpy(array, begin, length);
|
|
|
|
|
|
|
|
for(; begin != end; begin++){
|
2020-06-04 14:08:26 +02:00
|
|
|
if(errStream) {
|
|
|
|
printChar(begin, true);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
printChar(begin, false);
|
|
|
|
}
|
2020-06-03 23:14:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2016-06-15 23:48:41 +02:00
|
|
|
|
|
|
|
int ServiceInterfaceBuffer::overflow(int c) {
|
2020-06-04 14:08:26 +02:00
|
|
|
if(not buffered and this->isActive) {
|
2020-06-03 23:14:17 +02:00
|
|
|
if (c != Traits::eof()) {
|
2020-06-04 14:08:26 +02:00
|
|
|
if(errStream) {
|
|
|
|
printChar(reinterpret_cast<const char*>(&c), true);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
printChar(reinterpret_cast<const char*>(&c), false);
|
|
|
|
}
|
2020-06-03 23:14:17 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2016-06-15 23:48:41 +02:00
|
|
|
// Handle output
|
|
|
|
putChars(pbase(), pptr());
|
|
|
|
if (c != Traits::eof()) {
|
|
|
|
char c2 = c;
|
|
|
|
// Handle the one character that didn't fit to buffer
|
|
|
|
putChars(&c2, &c2 + 1);
|
|
|
|
}
|
|
|
|
// This tells that buffer is empty again
|
|
|
|
setp(buf, buf + BUF_SIZE - 1);
|
|
|
|
// I'm not sure about this return value!
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ServiceInterfaceBuffer::sync(void) {
|
2020-06-04 19:37:33 +02:00
|
|
|
if(not this->isActive and not buffered) {
|
2020-06-04 14:08:26 +02:00
|
|
|
if(not buffered) {
|
2020-06-03 23:14:17 +02:00
|
|
|
setp(buf, buf + BUF_SIZE - 1);
|
2020-05-29 20:31:08 +02:00
|
|
|
}
|
2020-06-03 23:14:17 +02:00
|
|
|
return 0;
|
2016-06-15 23:48:41 +02:00
|
|
|
}
|
2020-06-04 19:37:33 +02:00
|
|
|
if(not buffered) {
|
|
|
|
return 0;
|
|
|
|
}
|
2020-06-03 23:14:17 +02:00
|
|
|
|
2020-06-04 14:08:26 +02:00
|
|
|
size_t preambleSize = 0;
|
2020-07-21 15:15:53 +02:00
|
|
|
std::string* preamble = getPreamble(&preambleSize);
|
2020-06-03 23:14:17 +02:00
|
|
|
// Write logMessage and time
|
2020-07-21 15:15:53 +02:00
|
|
|
this->putChars(preamble->data(), preamble->data() + preambleSize);
|
2020-06-03 23:14:17 +02:00
|
|
|
// Handle output
|
|
|
|
this->putChars(pbase(), pptr());
|
2016-06-15 23:48:41 +02:00
|
|
|
// This tells that buffer is empty again
|
|
|
|
setp(buf, buf + BUF_SIZE - 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-06-04 19:37:33 +02:00
|
|
|
bool ServiceInterfaceBuffer::isBuffered() const {
|
|
|
|
return buffered;
|
|
|
|
}
|
2020-05-29 20:31:08 +02:00
|
|
|
|
2020-07-21 15:15:53 +02:00
|
|
|
std::string* ServiceInterfaceBuffer::getPreamble(size_t * preambleSize) {
|
2020-06-03 23:14:17 +02:00
|
|
|
Clock::TimeOfDay_t loggerTime;
|
|
|
|
Clock::getDateAndTime(&loggerTime);
|
2020-06-04 14:08:26 +02:00
|
|
|
size_t currentSize = 0;
|
2020-06-04 19:07:04 +02:00
|
|
|
char* parsePosition = &preamble[0];
|
2020-06-03 23:14:17 +02:00
|
|
|
if(addCrToPreamble) {
|
2020-06-04 14:08:26 +02:00
|
|
|
preamble[0] = '\r';
|
|
|
|
currentSize += 1;
|
2020-06-04 19:07:04 +02:00
|
|
|
parsePosition += 1;
|
2018-07-13 15:56:37 +02:00
|
|
|
}
|
2020-06-04 19:07:04 +02:00
|
|
|
int32_t charCount = sprintf(parsePosition,
|
|
|
|
"%s: | %02" SCNu32 ":%02" SCNu32 ":%02" SCNu32 ".%03" SCNu32 " | ",
|
|
|
|
this->logMessage.c_str(), loggerTime.hour,
|
|
|
|
loggerTime.minute,
|
|
|
|
loggerTime.second,
|
|
|
|
loggerTime.usecond /1000);
|
2020-06-04 14:22:04 +02:00
|
|
|
if(charCount < 0) {
|
2020-06-04 19:50:56 +02:00
|
|
|
printf("ServiceInterfaceBuffer: Failure parsing preamble\r\n");
|
2020-07-21 15:15:53 +02:00
|
|
|
return &preamble;
|
2020-06-04 19:50:56 +02:00
|
|
|
}
|
|
|
|
if(charCount > MAX_PREAMBLE_SIZE) {
|
|
|
|
printf("ServiceInterfaceBuffer: Char count too large for maximum "
|
|
|
|
"preamble size");
|
2020-07-21 15:15:53 +02:00
|
|
|
return &preamble;
|
2020-06-04 14:22:04 +02:00
|
|
|
}
|
|
|
|
currentSize += charCount;
|
2020-06-04 19:07:04 +02:00
|
|
|
if(preambleSize != nullptr) {
|
|
|
|
*preambleSize = currentSize;
|
|
|
|
}
|
2020-07-21 15:15:53 +02:00
|
|
|
return &preamble;
|
2018-07-13 15:56:37 +02:00
|
|
|
}
|
2020-06-03 23:14:17 +02:00
|
|
|
|
2018-07-13 15:56:37 +02:00
|
|
|
|
2020-05-29 20:31:08 +02:00
|
|
|
|
2016-06-15 23:48:41 +02:00
|
|
|
#ifdef UT699
|
2020-08-13 20:53:35 +02:00
|
|
|
#include "../osal/rtems/Interrupt.h"
|
2018-07-13 18:28:26 +02:00
|
|
|
|
2020-05-29 20:31:08 +02:00
|
|
|
ServiceInterfaceBuffer::ServiceInterfaceBuffer(std::string set_message,
|
|
|
|
uint16_t port) {
|
2016-06-15 23:48:41 +02:00
|
|
|
this->log_message = set_message;
|
|
|
|
this->isActive = true;
|
|
|
|
setp( buf, buf + BUF_SIZE );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServiceInterfaceBuffer::putChars(char const* begin, char const* end) {
|
|
|
|
char array[BUF_SIZE];
|
|
|
|
uint32_t length = end - begin;
|
|
|
|
if (length > sizeof(array)) {
|
|
|
|
length = sizeof(array);
|
|
|
|
}
|
|
|
|
memcpy(array, begin, length);
|
|
|
|
|
2018-07-12 16:29:32 +02:00
|
|
|
if (!Interrupt::isInterruptInProgress()) {
|
2016-06-15 23:48:41 +02:00
|
|
|
std::cout << array;
|
|
|
|
} else {
|
|
|
|
//Uncomment the following line if you need ISR debug output.
|
|
|
|
// printk(array);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //UT699
|
|
|
|
|
|
|
|
#ifdef ML505
|
|
|
|
#include <bsp_flp/network/networkconfig.h>
|
|
|
|
ServiceInterfaceBuffer::ServiceInterfaceBuffer(std::string set_message,
|
|
|
|
uint16_t port) :
|
|
|
|
isActive(true), log_message(set_message), udpSocket(0), remoteAddressLength(
|
|
|
|
sizeof(remoteAddress)) {
|
|
|
|
setp(buf, buf + BUF_SIZE);
|
|
|
|
memset((uint8_t*) &remoteAddress, 0, sizeof(remoteAddress));
|
|
|
|
remoteAddress.sin_family = AF_INET;
|
|
|
|
remoteAddress.sin_port = htons(port);
|
|
|
|
remoteAddress.sin_addr.s_addr = htonl(inet_addr("192.168.250.100"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ServiceInterfaceBuffer::putChars(char const* begin, char const* end) {
|
|
|
|
|
|
|
|
char array[BUF_SIZE];
|
|
|
|
uint32_t length = end - begin;
|
|
|
|
if (length > sizeof(array)) {
|
|
|
|
length = sizeof(array);
|
|
|
|
}
|
|
|
|
memcpy(array, begin, length);
|
|
|
|
|
|
|
|
if (udpSocket <= 0) {
|
|
|
|
initSocket();
|
|
|
|
}
|
2018-07-12 16:29:32 +02:00
|
|
|
|
2016-06-15 23:48:41 +02:00
|
|
|
if (udpSocket > 0) {
|
|
|
|
sendto(udpSocket, array, length, 0, (sockaddr*) &remoteAddress,
|
|
|
|
sizeof(remoteAddress));
|
|
|
|
}
|
2018-07-12 16:29:32 +02:00
|
|
|
|
2016-06-15 23:48:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ServiceInterfaceBuffer::initSocket() {
|
|
|
|
sockaddr_in address;
|
|
|
|
memset((uint8_t*) &address, 0, sizeof(address));
|
|
|
|
address.sin_family = AF_INET;
|
|
|
|
address.sin_port = htons(0);
|
|
|
|
address.sin_addr.s_addr = htonl(INADDR_ANY);
|
|
|
|
|
|
|
|
udpSocket = socket(PF_INET, SOCK_DGRAM, 0);
|
|
|
|
if (socket < 0) {
|
|
|
|
printf("Error opening socket!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
timeval timeout = { 0, 20 };
|
|
|
|
if (setsockopt(udpSocket, SOL_SOCKET, SO_RCVTIMEO, &timeout,
|
|
|
|
sizeof(timeout)) < 0) {
|
|
|
|
printf("Error setting SO_RCVTIMEO socket options!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (setsockopt(udpSocket, SOL_SOCKET, SO_SNDTIMEO, &timeout,
|
|
|
|
sizeof(timeout)) < 0) {
|
|
|
|
printf("Error setting SO_SNDTIMEO socket options!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (bind(udpSocket, (sockaddr *) &address, sizeof(address)) < 0) {
|
|
|
|
printf("Error binding socket!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //ML505
|