2003-03-25 18:47:30 +00:00
|
|
|
// generic.cxx -- generic protocal class
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started November 1999.
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 1999 Curtis L. Olson - http://www.flightgear.org/~curt
|
2003-03-25 18:47:30 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-03-25 18:47:30 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
2006-02-18 13:58:09 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2003-03-25 18:47:30 +00:00
|
|
|
|
2006-04-29 12:17:30 +00:00
|
|
|
#include <string.h> // strstr()
|
|
|
|
#include <stdlib.h> // strtod(), atoi()
|
2004-10-15 11:11:37 +00:00
|
|
|
|
2003-03-25 18:47:30 +00:00
|
|
|
#include <simgear/debug/logstream.hxx>
|
|
|
|
#include <simgear/io/iochannel.hxx>
|
2003-09-24 17:20:55 +00:00
|
|
|
#include <simgear/structure/exception.hxx>
|
2003-03-25 18:47:30 +00:00
|
|
|
#include <simgear/misc/sg_path.hxx>
|
2006-04-29 12:17:30 +00:00
|
|
|
#include <simgear/misc/stdint.hxx>
|
2003-05-06 23:54:17 +00:00
|
|
|
#include <simgear/props/props.hxx>
|
|
|
|
#include <simgear/props/props_io.hxx>
|
2003-03-25 18:47:30 +00:00
|
|
|
|
|
|
|
#include <Main/globals.hxx>
|
|
|
|
#include <Main/fg_props.hxx>
|
2010-09-29 21:04:11 +01:00
|
|
|
#include <Main/fg_os.hxx>
|
generic/output:
- support optional <preamble> and <postamble> which are written right
after opening and before closing respectively. This can be used for a header
line or an XML header.
- unescape <preamble>, <postamble>, <format>, <line_separator>, <var_separator>
so that \t, \n, \r, \f, \v, \xnn, \nnn can be used directly (\a and \b are
ignored; use \\ for the backslash) The long names ("carriagereturn") are still
supported for <var_separator>, but one can just use \r, or \r\n too.
- don't abort when a chunk doesn't have a <node>. This is useful for adding
constant chunks which consist only of a <format>, such as XML tags.
2007-07-29 13:58:58 +00:00
|
|
|
#include <Main/util.hxx>
|
2003-03-25 18:47:30 +00:00
|
|
|
#include "generic.hxx"
|
|
|
|
|
|
|
|
|
2004-10-15 11:11:37 +00:00
|
|
|
|
2009-06-19 08:59:37 +00:00
|
|
|
FGGeneric::FGGeneric(vector<string> tokens) : exitOnError(false)
|
2008-08-07 22:24:47 +00:00
|
|
|
{
|
2009-06-27 06:47:06 +00:00
|
|
|
size_t configToken;
|
2009-06-19 08:59:37 +00:00
|
|
|
if (tokens[1] == "socket") {
|
|
|
|
configToken = 7;
|
|
|
|
} else if (tokens[1] == "file") {
|
|
|
|
configToken = 5;
|
|
|
|
} else {
|
|
|
|
configToken = 6;
|
|
|
|
}
|
2003-03-25 18:47:30 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
if (configToken >= tokens.size()) {
|
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT,
|
|
|
|
"Not enough tokens passed for generic protocol");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-06-19 08:59:37 +00:00
|
|
|
string config = tokens[ configToken ];
|
2009-09-07 07:27:38 +00:00
|
|
|
file_name = config+".xml";
|
2009-09-07 10:19:45 +00:00
|
|
|
direction = tokens[2];
|
2003-03-25 18:47:30 +00:00
|
|
|
|
2009-09-07 10:19:45 +00:00
|
|
|
if (direction != "in" && direction != "out") {
|
2009-06-19 08:59:37 +00:00
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT, "Unsuported protocol direction: "
|
2009-09-07 10:19:45 +00:00
|
|
|
<< direction);
|
2009-06-19 08:59:37 +00:00
|
|
|
}
|
2009-09-07 07:27:38 +00:00
|
|
|
|
|
|
|
reinit();
|
2003-03-25 18:47:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FGGeneric::~FGGeneric() {
|
|
|
|
}
|
|
|
|
|
2009-08-24 18:06:06 +02:00
|
|
|
union u32 {
|
|
|
|
uint32_t intVal;
|
|
|
|
float floatVal;
|
|
|
|
};
|
|
|
|
|
|
|
|
union u64 {
|
|
|
|
uint64_t longVal;
|
|
|
|
double doubleVal;
|
|
|
|
};
|
2003-03-25 18:47:30 +00:00
|
|
|
|
|
|
|
// generate the message
|
2009-06-26 08:55:38 +00:00
|
|
|
bool FGGeneric::gen_message_binary() {
|
2003-03-25 18:47:30 +00:00
|
|
|
string generic_sentence;
|
2006-04-29 12:17:30 +00:00
|
|
|
length = 0;
|
2003-03-25 18:47:30 +00:00
|
|
|
|
2004-04-01 15:27:53 +00:00
|
|
|
double val;
|
2004-10-15 11:11:37 +00:00
|
|
|
for (unsigned int i = 0; i < _out_message.size(); i++) {
|
2003-03-25 18:47:30 +00:00
|
|
|
|
2004-10-15 11:11:37 +00:00
|
|
|
switch (_out_message[i].type) {
|
2003-03-25 18:47:30 +00:00
|
|
|
case FG_INT:
|
2010-09-27 23:48:20 +02:00
|
|
|
{
|
2004-10-15 11:11:37 +00:00
|
|
|
val = _out_message[i].offset +
|
2004-10-15 12:23:36 +00:00
|
|
|
_out_message[i].prop->getIntValue() * _out_message[i].factor;
|
2010-09-27 23:48:20 +02:00
|
|
|
int32_t intVal = val;
|
|
|
|
if (binary_byte_order != BYTE_ORDER_MATCHES_NETWORK_ORDER) {
|
|
|
|
intVal = (int32_t) sg_bswap_32((uint32_t)intVal);
|
2006-04-29 12:17:30 +00:00
|
|
|
}
|
2010-09-27 23:48:20 +02:00
|
|
|
memcpy(&buf[length], &intVal, sizeof(int32_t));
|
2009-06-26 08:55:38 +00:00
|
|
|
length += sizeof(int32_t);
|
2003-03-25 18:47:30 +00:00
|
|
|
break;
|
2010-09-27 23:48:20 +02:00
|
|
|
}
|
2003-03-25 18:47:30 +00:00
|
|
|
|
|
|
|
case FG_BOOL:
|
2010-09-27 23:48:20 +02:00
|
|
|
buf[length] = (char) (_out_message[i].prop->getBoolValue() ? true : false);
|
2009-06-26 08:55:38 +00:00
|
|
|
length += 1;
|
2003-03-25 18:47:30 +00:00
|
|
|
break;
|
|
|
|
|
2009-06-18 12:47:31 +00:00
|
|
|
case FG_FIXED:
|
2009-06-26 08:55:38 +00:00
|
|
|
{
|
2009-06-18 12:47:31 +00:00
|
|
|
val = _out_message[i].offset +
|
2009-06-26 08:55:38 +00:00
|
|
|
_out_message[i].prop->getFloatValue() * _out_message[i].factor;
|
|
|
|
|
2010-09-27 23:48:20 +02:00
|
|
|
int32_t fixed = (int)(val * 65536.0f);
|
|
|
|
if (binary_byte_order != BYTE_ORDER_MATCHES_NETWORK_ORDER) {
|
|
|
|
fixed = (int32_t) sg_bswap_32((uint32_t)fixed);
|
2009-06-26 08:55:38 +00:00
|
|
|
}
|
2010-09-27 23:48:20 +02:00
|
|
|
memcpy(&buf[length], &fixed, sizeof(int32_t));
|
2009-06-26 08:55:38 +00:00
|
|
|
length += sizeof(int32_t);
|
2009-06-18 12:47:31 +00:00
|
|
|
break;
|
2009-06-26 08:55:38 +00:00
|
|
|
}
|
2010-09-27 23:48:20 +02:00
|
|
|
|
2009-06-19 08:59:37 +00:00
|
|
|
case FG_FLOAT:
|
2010-09-27 23:48:20 +02:00
|
|
|
{
|
2009-06-19 08:59:37 +00:00
|
|
|
val = _out_message[i].offset +
|
2009-06-26 08:55:38 +00:00
|
|
|
_out_message[i].prop->getFloatValue() * _out_message[i].factor;
|
2010-09-27 23:48:20 +02:00
|
|
|
u32 tmpun32;
|
|
|
|
tmpun32.floatVal = static_cast<float>(val);
|
2009-06-26 08:55:38 +00:00
|
|
|
|
2010-09-27 23:48:20 +02:00
|
|
|
if (binary_byte_order != BYTE_ORDER_MATCHES_NETWORK_ORDER) {
|
|
|
|
tmpun32.intVal = sg_bswap_32(tmpun32.intVal);
|
2009-06-19 08:59:37 +00:00
|
|
|
}
|
2010-09-27 23:48:20 +02:00
|
|
|
memcpy(&buf[length], &tmpun32.intVal, sizeof(uint32_t));
|
2009-08-24 18:06:06 +02:00
|
|
|
length += sizeof(uint32_t);
|
2009-06-19 08:59:37 +00:00
|
|
|
break;
|
2010-09-27 23:48:20 +02:00
|
|
|
}
|
2009-06-19 08:59:37 +00:00
|
|
|
|
2003-03-25 18:47:30 +00:00
|
|
|
case FG_DOUBLE:
|
2010-09-27 23:48:20 +02:00
|
|
|
{
|
2004-10-15 11:11:37 +00:00
|
|
|
val = _out_message[i].offset +
|
2009-06-26 08:55:38 +00:00
|
|
|
_out_message[i].prop->getFloatValue() * _out_message[i].factor;
|
2010-09-27 23:48:20 +02:00
|
|
|
u64 tmpun64;
|
|
|
|
tmpun64.doubleVal = val;
|
2009-06-26 08:55:38 +00:00
|
|
|
|
2010-09-27 23:48:20 +02:00
|
|
|
if (binary_byte_order != BYTE_ORDER_MATCHES_NETWORK_ORDER) {
|
|
|
|
tmpun64.longVal = sg_bswap_64(tmpun64.longVal);
|
2006-04-29 12:17:30 +00:00
|
|
|
}
|
2010-09-27 23:48:20 +02:00
|
|
|
memcpy(&buf[length], &tmpun64.longVal, sizeof(uint64_t));
|
|
|
|
length += sizeof(uint64_t);
|
2003-03-25 18:47:30 +00:00
|
|
|
break;
|
2010-09-27 23:48:20 +02:00
|
|
|
}
|
2003-03-25 18:47:30 +00:00
|
|
|
|
|
|
|
default: // SG_STRING
|
2009-06-26 08:55:38 +00:00
|
|
|
const char *strdata = _out_message[i].prop->getStringValue();
|
2010-09-27 23:48:20 +02:00
|
|
|
int32_t strlength = strlen(strdata);
|
2006-04-29 12:17:30 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
if (binary_byte_order == BYTE_ORDER_NEEDS_CONVERSION) {
|
|
|
|
SG_LOG( SG_IO, SG_ALERT, "Generic protocol: "
|
|
|
|
"FG_STRING will be written in host byte order.");
|
|
|
|
}
|
|
|
|
/* Format for strings is
|
|
|
|
* [length as int, 4 bytes][ASCII data, length bytes]
|
|
|
|
*/
|
2010-09-27 23:48:20 +02:00
|
|
|
if (binary_byte_order != BYTE_ORDER_MATCHES_NETWORK_ORDER) {
|
|
|
|
strlength = sg_bswap_32(strlength);
|
2006-04-29 12:17:30 +00:00
|
|
|
}
|
2010-09-27 23:48:20 +02:00
|
|
|
memcpy(&buf[length], &strlength, sizeof(int32_t));
|
2009-06-26 08:55:38 +00:00
|
|
|
length += sizeof(int32_t);
|
|
|
|
strncpy(&buf[length], strdata, strlength);
|
|
|
|
length += strlength;
|
|
|
|
/* FIXME padding for alignment? Something like:
|
|
|
|
* length += (strlength % 4 > 0 ? sizeof(int32_t) - strlength % 4 : 0;
|
|
|
|
*/
|
2003-03-25 18:47:30 +00:00
|
|
|
}
|
2009-06-26 08:55:38 +00:00
|
|
|
}
|
2003-03-25 18:47:30 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
// add the footer to the packet ("line")
|
|
|
|
switch (binary_footer_type) {
|
|
|
|
case FOOTER_LENGTH:
|
|
|
|
binary_footer_value = length;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FOOTER_MAGIC:
|
2009-08-24 18:06:06 +02:00
|
|
|
case FOOTER_NONE:
|
2009-06-26 08:55:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (binary_footer_type != FOOTER_NONE) {
|
2010-09-27 23:48:20 +02:00
|
|
|
int32_t intValue = binary_footer_value;
|
|
|
|
if (binary_byte_order != BYTE_ORDER_MATCHES_NETWORK_ORDER) {
|
|
|
|
intValue = sg_bswap_32(binary_footer_value);
|
2006-04-29 12:17:30 +00:00
|
|
|
}
|
2010-09-27 23:48:20 +02:00
|
|
|
memcpy(&buf[length], &intValue, sizeof(int32_t));
|
2009-06-26 08:55:38 +00:00
|
|
|
length += sizeof(int32_t);
|
2003-03-25 18:47:30 +00:00
|
|
|
}
|
2003-05-03 09:24:46 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
return true;
|
|
|
|
}
|
2006-04-29 12:17:30 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
bool FGGeneric::gen_message_ascii() {
|
|
|
|
string generic_sentence;
|
|
|
|
char tmp[255];
|
|
|
|
length = 0;
|
|
|
|
|
|
|
|
double val;
|
|
|
|
for (unsigned int i = 0; i < _out_message.size(); i++) {
|
|
|
|
|
|
|
|
if (i > 0) {
|
|
|
|
generic_sentence += var_separator;
|
2006-04-29 12:17:30 +00:00
|
|
|
}
|
2009-06-26 08:55:38 +00:00
|
|
|
|
|
|
|
switch (_out_message[i].type) {
|
|
|
|
case FG_INT:
|
|
|
|
val = _out_message[i].offset +
|
|
|
|
_out_message[i].prop->getIntValue() * _out_message[i].factor;
|
|
|
|
snprintf(tmp, 255, _out_message[i].format.c_str(), (int)val);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FG_BOOL:
|
|
|
|
snprintf(tmp, 255, _out_message[i].format.c_str(),
|
|
|
|
_out_message[i].prop->getBoolValue());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FG_FIXED:
|
|
|
|
val = _out_message[i].offset +
|
|
|
|
_out_message[i].prop->getFloatValue() * _out_message[i].factor;
|
|
|
|
snprintf(tmp, 255, _out_message[i].format.c_str(), (float)val);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FG_FLOAT:
|
|
|
|
val = _out_message[i].offset +
|
|
|
|
_out_message[i].prop->getFloatValue() * _out_message[i].factor;
|
|
|
|
snprintf(tmp, 255, _out_message[i].format.c_str(), (float)val);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FG_DOUBLE:
|
|
|
|
val = _out_message[i].offset +
|
2010-02-10 08:19:05 +00:00
|
|
|
_out_message[i].prop->getDoubleValue() * _out_message[i].factor;
|
|
|
|
snprintf(tmp, 255, _out_message[i].format.c_str(), (double)val);
|
2009-06-26 08:55:38 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default: // SG_STRING
|
|
|
|
snprintf(tmp, 255, _out_message[i].format.c_str(),
|
|
|
|
_out_message[i].prop->getStringValue());
|
2006-04-29 12:17:30 +00:00
|
|
|
}
|
2009-06-26 08:55:38 +00:00
|
|
|
|
|
|
|
generic_sentence += tmp;
|
2006-04-29 12:17:30 +00:00
|
|
|
}
|
2003-03-25 18:47:30 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
/* After each lot of variables has been added, put the line separator
|
|
|
|
* char/string
|
|
|
|
*/
|
|
|
|
generic_sentence += line_separator;
|
|
|
|
|
|
|
|
length = generic_sentence.length();
|
|
|
|
strncpy( buf, generic_sentence.c_str(), length );
|
|
|
|
|
2003-03-25 18:47:30 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
bool FGGeneric::gen_message() {
|
|
|
|
if (binary_mode) {
|
|
|
|
return gen_message_binary();
|
|
|
|
} else {
|
|
|
|
return gen_message_ascii();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-06 02:38:39 +01:00
|
|
|
bool FGGeneric::parse_message_binary(int length) {
|
2004-10-15 11:11:37 +00:00
|
|
|
char *p2, *p1 = buf;
|
2009-07-06 11:37:29 +00:00
|
|
|
int32_t tmp32;
|
2004-10-15 11:11:37 +00:00
|
|
|
double val;
|
2004-10-16 11:24:48 +00:00
|
|
|
int i = -1;
|
2004-10-15 11:11:37 +00:00
|
|
|
|
2011-03-06 02:38:39 +01:00
|
|
|
p2 = p1 + length;
|
2009-06-26 08:55:38 +00:00
|
|
|
while ((++i < (int)_in_message.size()) && (p1 < p2)) {
|
2004-10-15 11:11:37 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
switch (_in_message[i].type) {
|
|
|
|
case FG_INT:
|
|
|
|
if (binary_byte_order == BYTE_ORDER_NEEDS_CONVERSION) {
|
2009-07-06 11:37:29 +00:00
|
|
|
tmp32 = sg_bswap_32(*(int32_t *)p1);
|
2009-06-26 08:55:38 +00:00
|
|
|
} else {
|
2009-07-06 11:37:29 +00:00
|
|
|
tmp32 = *(int32_t *)p1;
|
2009-06-18 12:47:31 +00:00
|
|
|
}
|
2004-10-15 11:11:37 +00:00
|
|
|
|
2009-07-06 11:37:29 +00:00
|
|
|
val = _in_message[i].offset + (double)tmp32 * _in_message[i].factor;
|
2004-10-15 11:11:37 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
_in_message[i].prop->setIntValue((int)val);
|
|
|
|
p1 += sizeof(int32_t);
|
|
|
|
break;
|
2004-10-15 11:11:37 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
case FG_BOOL:
|
|
|
|
_in_message[i].prop->setBoolValue( p1[0] != 0 );
|
|
|
|
p1 += 1;
|
|
|
|
break;
|
2009-06-18 12:47:31 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
case FG_FIXED:
|
|
|
|
if (binary_byte_order == BYTE_ORDER_NEEDS_CONVERSION) {
|
2009-07-06 11:37:29 +00:00
|
|
|
tmp32 = sg_bswap_32(*(int32_t *)p1);
|
2009-06-26 08:55:38 +00:00
|
|
|
} else {
|
2009-07-06 11:37:29 +00:00
|
|
|
tmp32 = *(int32_t *)p1;
|
2009-06-18 12:47:31 +00:00
|
|
|
}
|
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
val = _in_message[i].offset +
|
2009-07-06 11:37:29 +00:00
|
|
|
((double)tmp32 / 65536.0f) * _in_message[i].factor;
|
2009-06-19 08:59:37 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
_in_message[i].prop->setFloatValue(val);
|
|
|
|
p1 += sizeof(int32_t);
|
|
|
|
break;
|
2009-06-18 12:47:31 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
case FG_FLOAT:
|
2009-08-24 18:06:06 +02:00
|
|
|
u32 tmpun32;
|
2009-06-26 08:55:38 +00:00
|
|
|
if (binary_byte_order == BYTE_ORDER_NEEDS_CONVERSION) {
|
2009-08-24 18:06:06 +02:00
|
|
|
tmpun32.intVal = sg_bswap_32(*(uint32_t *)p1);
|
2009-06-26 08:55:38 +00:00
|
|
|
} else {
|
2009-08-24 18:06:06 +02:00
|
|
|
tmpun32.floatVal = *(float *)p1;
|
2009-06-26 08:55:38 +00:00
|
|
|
}
|
2009-06-18 12:47:31 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
val = _in_message[i].offset +
|
2009-08-24 18:06:06 +02:00
|
|
|
tmpun32.floatVal * _in_message[i].factor;
|
2009-06-19 08:59:37 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
_in_message[i].prop->setFloatValue(val);
|
|
|
|
p1 += sizeof(int32_t);
|
|
|
|
break;
|
2009-06-19 08:59:37 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
case FG_DOUBLE:
|
2009-08-24 18:06:06 +02:00
|
|
|
u64 tmpun64;
|
2009-06-26 08:55:38 +00:00
|
|
|
if (binary_byte_order == BYTE_ORDER_NEEDS_CONVERSION) {
|
2009-08-24 18:06:06 +02:00
|
|
|
tmpun64.longVal = sg_bswap_64(*(uint64_t *)p1);
|
2009-06-26 08:55:38 +00:00
|
|
|
} else {
|
2009-08-24 18:06:06 +02:00
|
|
|
tmpun64.doubleVal = *(double *)p1;
|
2009-06-18 12:47:31 +00:00
|
|
|
}
|
2009-06-26 08:55:38 +00:00
|
|
|
|
|
|
|
val = _in_message[i].offset +
|
2009-08-24 18:06:06 +02:00
|
|
|
tmpun64.doubleVal * _in_message[i].factor;
|
2009-06-26 08:55:38 +00:00
|
|
|
|
|
|
|
_in_message[i].prop->setDoubleValue(val);
|
|
|
|
p1 += sizeof(int64_t);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: // SG_STRING
|
|
|
|
SG_LOG( SG_IO, SG_ALERT, "Generic protocol: "
|
|
|
|
"Ignoring unsupported binary input chunk type.");
|
2009-06-18 12:47:31 +00:00
|
|
|
}
|
2004-10-15 11:11:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2003-03-25 18:47:30 +00:00
|
|
|
}
|
|
|
|
|
2011-03-06 02:38:39 +01:00
|
|
|
bool FGGeneric::parse_message_ascii(int length) {
|
2009-06-26 08:55:38 +00:00
|
|
|
char *p2, *p1 = buf;
|
|
|
|
double val;
|
|
|
|
int i = -1;
|
2011-03-06 02:38:39 +01:00
|
|
|
int chunks = _in_message.size();
|
|
|
|
int line_separator_size = line_separator.size();
|
2009-06-26 08:55:38 +00:00
|
|
|
|
2011-03-06 02:38:39 +01:00
|
|
|
if (length < line_separator_size ||
|
|
|
|
line_separator.compare(buf + length - line_separator_size) != 0) {
|
2009-06-26 08:55:38 +00:00
|
|
|
|
2011-03-06 02:38:39 +01:00
|
|
|
SG_LOG(SG_IO, SG_WARN,
|
|
|
|
"Input line does not end with expected line separator." );
|
|
|
|
} else {
|
|
|
|
buf[length - line_separator_size] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((++i < chunks) && p1) {
|
2009-06-26 08:55:38 +00:00
|
|
|
p2 = strstr(p1, var_separator.c_str());
|
|
|
|
if (p2) {
|
|
|
|
*p2 = 0;
|
|
|
|
p2 += var_separator.length();
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (_in_message[i].type) {
|
|
|
|
case FG_INT:
|
|
|
|
val = _in_message[i].offset + atoi(p1) * _in_message[i].factor;
|
|
|
|
_in_message[i].prop->setIntValue((int)val);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FG_BOOL:
|
|
|
|
_in_message[i].prop->setBoolValue( atof(p1) != 0.0 );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FG_FIXED:
|
2009-08-27 00:12:44 +02:00
|
|
|
case FG_FLOAT:
|
2009-09-10 22:02:59 +00:00
|
|
|
val = _in_message[i].offset + strtod(p1, 0) * _in_message[i].factor;
|
2009-09-10 18:12:33 +00:00
|
|
|
_in_message[i].prop->setFloatValue((float)val);
|
|
|
|
break;
|
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
case FG_DOUBLE:
|
|
|
|
val = _in_message[i].offset + strtod(p1, 0) * _in_message[i].factor;
|
2009-09-10 18:12:33 +00:00
|
|
|
_in_message[i].prop->setDoubleValue(val);
|
2009-06-26 08:55:38 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default: // SG_STRING
|
|
|
|
_in_message[i].prop->setStringValue(p1);
|
|
|
|
}
|
|
|
|
|
|
|
|
p1 = p2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-03-06 02:38:39 +01:00
|
|
|
bool FGGeneric::parse_message(int length) {
|
2009-06-26 08:55:38 +00:00
|
|
|
if (binary_mode) {
|
2011-03-06 02:38:39 +01:00
|
|
|
return parse_message_binary(length);
|
2009-06-26 08:55:38 +00:00
|
|
|
} else {
|
2011-03-06 02:38:39 +01:00
|
|
|
return parse_message_ascii(length);
|
2009-06-26 08:55:38 +00:00
|
|
|
}
|
|
|
|
}
|
2003-03-25 18:47:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
// open hailing frequencies
|
|
|
|
bool FGGeneric::open() {
|
|
|
|
if ( is_enabled() ) {
|
2003-08-18 09:26:26 +00:00
|
|
|
SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel "
|
|
|
|
<< "is already in use, ignoring" );
|
|
|
|
return false;
|
2003-03-25 18:47:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SGIOChannel *io = get_io_channel();
|
|
|
|
|
|
|
|
if ( ! io->open( get_direction() ) ) {
|
2003-08-18 09:26:26 +00:00
|
|
|
SG_LOG( SG_IO, SG_ALERT, "Error opening channel communication layer." );
|
|
|
|
return false;
|
2003-03-25 18:47:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
set_enabled( true );
|
|
|
|
|
generic/output:
- support optional <preamble> and <postamble> which are written right
after opening and before closing respectively. This can be used for a header
line or an XML header.
- unescape <preamble>, <postamble>, <format>, <line_separator>, <var_separator>
so that \t, \n, \r, \f, \v, \xnn, \nnn can be used directly (\a and \b are
ignored; use \\ for the backslash) The long names ("carriagereturn") are still
supported for <var_separator>, but one can just use \r, or \r\n too.
- don't abort when a chunk doesn't have a <node>. This is useful for adding
constant chunks which consist only of a <format>, such as XML tags.
2007-07-29 13:58:58 +00:00
|
|
|
if ( get_direction() == SG_IO_OUT && ! preamble.empty() ) {
|
|
|
|
if ( ! io->write( preamble.c_str(), preamble.size() ) ) {
|
|
|
|
SG_LOG( SG_IO, SG_WARN, "Error writing preamble." );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-25 18:47:30 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// process work for this port
|
|
|
|
bool FGGeneric::process() {
|
|
|
|
SGIOChannel *io = get_io_channel();
|
|
|
|
|
|
|
|
if ( get_direction() == SG_IO_OUT ) {
|
2003-08-18 09:26:26 +00:00
|
|
|
gen_message();
|
|
|
|
if ( ! io->write( buf, length ) ) {
|
2004-02-07 21:37:35 +00:00
|
|
|
SG_LOG( SG_IO, SG_WARN, "Error writing data." );
|
2008-08-07 22:24:47 +00:00
|
|
|
goto error_out;
|
2003-08-18 09:26:26 +00:00
|
|
|
}
|
2003-03-25 18:47:30 +00:00
|
|
|
} else if ( get_direction() == SG_IO_IN ) {
|
2009-06-29 14:23:26 +00:00
|
|
|
if ( io->get_type() == sgFileType ) {
|
|
|
|
if (!binary_mode) {
|
|
|
|
length = io->readline( buf, FG_MAX_MSG_SIZE );
|
|
|
|
if ( length > 0 ) {
|
2011-03-06 02:38:39 +01:00
|
|
|
parse_message( length );
|
2009-06-29 14:23:26 +00:00
|
|
|
} else {
|
|
|
|
SG_LOG( SG_IO, SG_ALERT, "Error reading data." );
|
|
|
|
return false;
|
|
|
|
}
|
2009-06-18 12:47:31 +00:00
|
|
|
} else {
|
2009-06-29 14:23:26 +00:00
|
|
|
length = io->read( buf, binary_record_length );
|
|
|
|
if ( length == binary_record_length ) {
|
2011-03-06 02:38:39 +01:00
|
|
|
parse_message( length );
|
2009-06-29 14:23:26 +00:00
|
|
|
} else {
|
2009-06-18 12:47:31 +00:00
|
|
|
SG_LOG( SG_IO, SG_ALERT,
|
|
|
|
"Generic protocol: Received binary "
|
2009-06-19 08:59:37 +00:00
|
|
|
"record of unexpected size, expected: "
|
2009-06-29 14:23:26 +00:00
|
|
|
<< binary_record_length << " but received: "
|
2009-06-19 08:59:37 +00:00
|
|
|
<< length);
|
2009-06-18 12:47:31 +00:00
|
|
|
}
|
|
|
|
}
|
2009-06-29 14:23:26 +00:00
|
|
|
} else {
|
2010-02-07 12:40:42 +00:00
|
|
|
if (!binary_mode) {
|
|
|
|
while ((length = io->readline( buf, FG_MAX_MSG_SIZE )) > 0 ) {
|
2011-03-06 02:38:39 +01:00
|
|
|
parse_message( length );
|
2009-06-29 14:23:26 +00:00
|
|
|
}
|
2010-02-07 12:40:42 +00:00
|
|
|
} else {
|
|
|
|
while ((length = io->read( buf, binary_record_length ))
|
|
|
|
== binary_record_length ) {
|
2011-03-06 02:38:39 +01:00
|
|
|
parse_message( length );
|
2010-02-07 12:40:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( length > 0 ) {
|
|
|
|
SG_LOG( SG_IO, SG_ALERT,
|
|
|
|
"Generic protocol: Received binary "
|
|
|
|
"record of unexpected size, expected: "
|
|
|
|
<< binary_record_length << " but received: "
|
|
|
|
<< length);
|
|
|
|
}
|
|
|
|
}
|
2004-10-15 11:11:37 +00:00
|
|
|
}
|
2003-03-25 18:47:30 +00:00
|
|
|
}
|
|
|
|
return true;
|
2008-08-07 22:24:47 +00:00
|
|
|
error_out:
|
2009-06-27 06:47:06 +00:00
|
|
|
if (exitOnError) {
|
2010-09-29 21:04:11 +01:00
|
|
|
fgOSExit(1);
|
2009-06-27 06:47:06 +00:00
|
|
|
return true; // should not get there, but please the compiler
|
|
|
|
} else
|
2008-08-07 22:24:47 +00:00
|
|
|
return false;
|
2003-03-25 18:47:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// close the channel
|
|
|
|
bool FGGeneric::close() {
|
|
|
|
SGIOChannel *io = get_io_channel();
|
|
|
|
|
generic/output:
- support optional <preamble> and <postamble> which are written right
after opening and before closing respectively. This can be used for a header
line or an XML header.
- unescape <preamble>, <postamble>, <format>, <line_separator>, <var_separator>
so that \t, \n, \r, \f, \v, \xnn, \nnn can be used directly (\a and \b are
ignored; use \\ for the backslash) The long names ("carriagereturn") are still
supported for <var_separator>, but one can just use \r, or \r\n too.
- don't abort when a chunk doesn't have a <node>. This is useful for adding
constant chunks which consist only of a <format>, such as XML tags.
2007-07-29 13:58:58 +00:00
|
|
|
if ( get_direction() == SG_IO_OUT && ! postamble.empty() ) {
|
|
|
|
if ( ! io->write( postamble.c_str(), postamble.size() ) ) {
|
|
|
|
SG_LOG( SG_IO, SG_ALERT, "Error writing postamble." );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-25 18:47:30 +00:00
|
|
|
set_enabled( false );
|
|
|
|
|
|
|
|
if ( ! io->close() ) {
|
2003-08-18 09:26:26 +00:00
|
|
|
return false;
|
2003-03-25 18:47:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2004-10-15 11:11:37 +00:00
|
|
|
|
|
|
|
|
2009-09-07 07:27:38 +00:00
|
|
|
void
|
|
|
|
FGGeneric::reinit()
|
|
|
|
{
|
|
|
|
SGPath path( globals->get_fg_root() );
|
|
|
|
path.append("Protocol");
|
|
|
|
path.append(file_name.c_str());
|
|
|
|
|
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, "Reading communication protocol from "
|
|
|
|
<< path.str());
|
|
|
|
|
|
|
|
SGPropertyNode root;
|
|
|
|
try {
|
|
|
|
readProperties(path.str(), &root);
|
|
|
|
} catch (const sg_exception &) {
|
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT,
|
|
|
|
"Unable to load the protocol configuration file");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-07 10:19:45 +00:00
|
|
|
if (direction == "out") {
|
|
|
|
SGPropertyNode *output = root.getNode("generic/output");
|
|
|
|
if (output) {
|
|
|
|
_out_message.clear();
|
|
|
|
read_config(output, _out_message);
|
|
|
|
}
|
|
|
|
} else if (direction == "in") {
|
|
|
|
SGPropertyNode *input = root.getNode("generic/input");
|
|
|
|
if (input) {
|
|
|
|
_in_message.clear();
|
|
|
|
read_config(input, _in_message);
|
2011-03-06 02:38:39 +01:00
|
|
|
if (!binary_mode && (line_separator.size() == 0 ||
|
|
|
|
*line_separator.rbegin() != '\n')) {
|
|
|
|
|
|
|
|
SG_LOG(SG_IO, SG_WARN,
|
|
|
|
"Warning: Appending newline to line separator in generic input.");
|
|
|
|
line_separator.push_back('\n');
|
|
|
|
}
|
2009-09-07 10:19:45 +00:00
|
|
|
}
|
2009-09-07 07:27:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-15 11:11:37 +00:00
|
|
|
void
|
|
|
|
FGGeneric::read_config(SGPropertyNode *root, vector<_serial_prot> &msg)
|
|
|
|
{
|
generic/output:
- support optional <preamble> and <postamble> which are written right
after opening and before closing respectively. This can be used for a header
line or an XML header.
- unescape <preamble>, <postamble>, <format>, <line_separator>, <var_separator>
so that \t, \n, \r, \f, \v, \xnn, \nnn can be used directly (\a and \b are
ignored; use \\ for the backslash) The long names ("carriagereturn") are still
supported for <var_separator>, but one can just use \r, or \r\n too.
- don't abort when a chunk doesn't have a <node>. This is useful for adding
constant chunks which consist only of a <format>, such as XML tags.
2007-07-29 13:58:58 +00:00
|
|
|
binary_mode = root->getBoolValue("binary_mode");
|
2006-04-29 12:17:30 +00:00
|
|
|
|
|
|
|
if (!binary_mode) {
|
2004-10-15 11:11:37 +00:00
|
|
|
/* These variables specified in the $FG_ROOT/data/Protocol/xxx.xml
|
|
|
|
* file for each format
|
|
|
|
*
|
|
|
|
* var_sep_string = the string/charachter to place between variables
|
|
|
|
* line_sep_string = the string/charachter to place at the end of each
|
|
|
|
* lot of variables
|
|
|
|
*/
|
generic/output:
- support optional <preamble> and <postamble> which are written right
after opening and before closing respectively. This can be used for a header
line or an XML header.
- unescape <preamble>, <postamble>, <format>, <line_separator>, <var_separator>
so that \t, \n, \r, \f, \v, \xnn, \nnn can be used directly (\a and \b are
ignored; use \\ for the backslash) The long names ("carriagereturn") are still
supported for <var_separator>, but one can just use \r, or \r\n too.
- don't abort when a chunk doesn't have a <node>. This is useful for adding
constant chunks which consist only of a <format>, such as XML tags.
2007-07-29 13:58:58 +00:00
|
|
|
preamble = fgUnescape(root->getStringValue("preamble"));
|
|
|
|
postamble = fgUnescape(root->getStringValue("postamble"));
|
|
|
|
var_sep_string = fgUnescape(root->getStringValue("var_separator"));
|
|
|
|
line_sep_string = fgUnescape(root->getStringValue("line_separator"));
|
2004-10-15 11:11:37 +00:00
|
|
|
|
2009-06-26 08:55:38 +00:00
|
|
|
if ( var_sep_string == "newline" ) {
|
|
|
|
var_separator = '\n';
|
|
|
|
} else if ( var_sep_string == "tab" ) {
|
|
|
|
var_separator = '\t';
|
|
|
|
} else if ( var_sep_string == "space" ) {
|
|
|
|
var_separator = ' ';
|
|
|
|
} else if ( var_sep_string == "formfeed" ) {
|
|
|
|
var_separator = '\f';
|
|
|
|
} else if ( var_sep_string == "carriagereturn" ) {
|
|
|
|
var_sep_string = '\r';
|
|
|
|
} else if ( var_sep_string == "verticaltab" ) {
|
|
|
|
var_separator = '\v';
|
|
|
|
} else {
|
|
|
|
var_separator = var_sep_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( line_sep_string == "newline" ) {
|
|
|
|
line_separator = '\n';
|
|
|
|
} else if ( line_sep_string == "tab" ) {
|
|
|
|
line_separator = '\t';
|
|
|
|
} else if ( line_sep_string == "space" ) {
|
|
|
|
line_separator = ' ';
|
|
|
|
} else if ( line_sep_string == "formfeed" ) {
|
|
|
|
line_separator = '\f';
|
|
|
|
} else if ( line_sep_string == "carriagereturn" ) {
|
|
|
|
line_separator = '\r';
|
|
|
|
} else if ( line_sep_string == "verticaltab" ) {
|
|
|
|
line_separator = '\v';
|
|
|
|
} else {
|
|
|
|
line_separator = line_sep_string;
|
|
|
|
}
|
2006-04-29 12:17:30 +00:00
|
|
|
} else {
|
2009-06-26 08:55:38 +00:00
|
|
|
// default values: no footer and record_length = sizeof(representation)
|
|
|
|
binary_footer_type = FOOTER_NONE;
|
|
|
|
binary_record_length = -1;
|
2009-06-19 08:59:37 +00:00
|
|
|
|
|
|
|
// default choice is network byte order (big endian)
|
|
|
|
if (sgIsLittleEndian()) {
|
|
|
|
binary_byte_order = BYTE_ORDER_NEEDS_CONVERSION;
|
|
|
|
} else {
|
|
|
|
binary_byte_order = BYTE_ORDER_MATCHES_NETWORK_ORDER;
|
|
|
|
}
|
|
|
|
|
2006-04-29 12:17:30 +00:00
|
|
|
if ( root->hasValue("binary_footer") ) {
|
|
|
|
string footer_type = root->getStringValue("binary_footer");
|
2009-06-26 08:55:38 +00:00
|
|
|
if ( footer_type == "length" ) {
|
2006-04-29 12:17:30 +00:00
|
|
|
binary_footer_type = FOOTER_LENGTH;
|
2009-06-26 08:55:38 +00:00
|
|
|
} else if ( footer_type.substr(0, 5) == "magic" ) {
|
2006-04-29 12:17:30 +00:00
|
|
|
binary_footer_type = FOOTER_MAGIC;
|
|
|
|
binary_footer_value = strtol(footer_type.substr(6,
|
|
|
|
footer_type.length() - 6).c_str(), (char**)0, 0);
|
2009-06-26 08:55:38 +00:00
|
|
|
} else if ( footer_type != "none" ) {
|
2006-04-29 12:17:30 +00:00
|
|
|
SG_LOG(SG_IO, SG_ALERT,
|
2009-06-26 08:55:38 +00:00
|
|
|
"generic protocol: Unknown generic binary protocol "
|
|
|
|
"footer '" << footer_type << "', using no footer.");
|
|
|
|
}
|
2006-04-29 12:17:30 +00:00
|
|
|
}
|
2009-06-26 08:55:38 +00:00
|
|
|
|
2009-06-18 12:47:31 +00:00
|
|
|
if ( root->hasValue("record_length") ) {
|
|
|
|
binary_record_length = root->getIntValue("record_length");
|
|
|
|
}
|
2009-06-26 08:55:38 +00:00
|
|
|
|
2009-06-18 12:47:31 +00:00
|
|
|
if ( root->hasValue("byte_order") ) {
|
|
|
|
string byte_order = root->getStringValue("byte_order");
|
2009-06-19 08:59:37 +00:00
|
|
|
if (byte_order == "network" ) {
|
|
|
|
if ( sgIsLittleEndian() ) {
|
|
|
|
binary_byte_order = BYTE_ORDER_NEEDS_CONVERSION;
|
|
|
|
} else {
|
|
|
|
binary_byte_order = BYTE_ORDER_MATCHES_NETWORK_ORDER;
|
|
|
|
}
|
2009-06-18 12:47:31 +00:00
|
|
|
} else if ( byte_order == "host" ) {
|
2009-06-19 08:59:37 +00:00
|
|
|
binary_byte_order = BYTE_ORDER_MATCHES_NETWORK_ORDER;
|
2009-06-18 12:47:31 +00:00
|
|
|
} else {
|
|
|
|
SG_LOG(SG_IO, SG_ALERT,
|
|
|
|
"generic protocol: Undefined generic binary protocol"
|
|
|
|
"byte order, using HOST byte order.");
|
|
|
|
}
|
|
|
|
}
|
2006-04-29 12:17:30 +00:00
|
|
|
}
|
2004-10-15 11:11:37 +00:00
|
|
|
|
2009-06-18 12:47:31 +00:00
|
|
|
int record_length = 0; // Only used for binary protocols.
|
2004-10-15 11:11:37 +00:00
|
|
|
vector<SGPropertyNode_ptr> chunks = root->getChildren("chunk");
|
|
|
|
for (unsigned int i = 0; i < chunks.size(); i++) {
|
|
|
|
|
|
|
|
_serial_prot chunk;
|
|
|
|
|
generic/output:
- support optional <preamble> and <postamble> which are written right
after opening and before closing respectively. This can be used for a header
line or an XML header.
- unescape <preamble>, <postamble>, <format>, <line_separator>, <var_separator>
so that \t, \n, \r, \f, \v, \xnn, \nnn can be used directly (\a and \b are
ignored; use \\ for the backslash) The long names ("carriagereturn") are still
supported for <var_separator>, but one can just use \r, or \r\n too.
- don't abort when a chunk doesn't have a <node>. This is useful for adding
constant chunks which consist only of a <format>, such as XML tags.
2007-07-29 13:58:58 +00:00
|
|
|
// chunk.name = chunks[i]->getStringValue("name");
|
|
|
|
chunk.format = fgUnescape(chunks[i]->getStringValue("format", "%d"));
|
2004-10-15 11:11:37 +00:00
|
|
|
chunk.offset = chunks[i]->getDoubleValue("offset");
|
2004-10-15 12:23:36 +00:00
|
|
|
chunk.factor = chunks[i]->getDoubleValue("factor", 1.0);
|
2004-10-15 11:11:37 +00:00
|
|
|
|
generic/output:
- support optional <preamble> and <postamble> which are written right
after opening and before closing respectively. This can be used for a header
line or an XML header.
- unescape <preamble>, <postamble>, <format>, <line_separator>, <var_separator>
so that \t, \n, \r, \f, \v, \xnn, \nnn can be used directly (\a and \b are
ignored; use \\ for the backslash) The long names ("carriagereturn") are still
supported for <var_separator>, but one can just use \r, or \r\n too.
- don't abort when a chunk doesn't have a <node>. This is useful for adding
constant chunks which consist only of a <format>, such as XML tags.
2007-07-29 13:58:58 +00:00
|
|
|
string node = chunks[i]->getStringValue("node", "/null");
|
2004-10-15 11:11:37 +00:00
|
|
|
chunk.prop = fgGetNode(node.c_str(), true);
|
|
|
|
|
|
|
|
string type = chunks[i]->getStringValue("type");
|
2009-06-30 07:44:56 +00:00
|
|
|
|
|
|
|
// Note: officially the type is called 'bool' but for backward
|
|
|
|
// compatibility 'boolean' will also be supported.
|
|
|
|
if (type == "bool" || type == "boolean") {
|
2004-10-15 11:11:37 +00:00
|
|
|
chunk.type = FG_BOOL;
|
2009-06-18 12:47:31 +00:00
|
|
|
record_length += 1;
|
|
|
|
} else if (type == "float") {
|
2009-06-19 08:59:37 +00:00
|
|
|
chunk.type = FG_FLOAT;
|
|
|
|
record_length += sizeof(int32_t);
|
|
|
|
} else if (type == "double") {
|
2004-10-15 11:11:37 +00:00
|
|
|
chunk.type = FG_DOUBLE;
|
2009-06-19 08:59:37 +00:00
|
|
|
record_length += sizeof(int64_t);
|
2009-06-18 12:47:31 +00:00
|
|
|
} else if (type == "fixed") {
|
|
|
|
chunk.type = FG_FIXED;
|
|
|
|
record_length += sizeof(int32_t);
|
|
|
|
} else if (type == "string")
|
2004-10-15 11:11:37 +00:00
|
|
|
chunk.type = FG_STRING;
|
2009-06-18 12:47:31 +00:00
|
|
|
else {
|
2004-10-15 11:11:37 +00:00
|
|
|
chunk.type = FG_INT;
|
2009-06-18 12:47:31 +00:00
|
|
|
record_length += sizeof(int32_t);
|
|
|
|
}
|
2004-10-15 11:11:37 +00:00
|
|
|
msg.push_back(chunk);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-09-17 20:17:35 +00:00
|
|
|
if( binary_mode ) {
|
|
|
|
if (binary_record_length == -1) {
|
|
|
|
binary_record_length = record_length;
|
|
|
|
} else if (binary_record_length < record_length) {
|
|
|
|
SG_LOG(SG_IO, SG_ALERT,
|
|
|
|
"generic protocol: Requested binary record length shorter than "
|
|
|
|
" requested record representation.");
|
|
|
|
binary_record_length = record_length;
|
|
|
|
}
|
2009-06-18 12:47:31 +00:00
|
|
|
}
|
2004-10-15 11:11:37 +00:00
|
|
|
}
|