Fixed rpm_ack_decode_service_request() to handle empty structures without returning an error.
Added BBMD getters and setters, and revised registration functions to return something approximating a goodness value.
This commit is contained in:
@@ -41,21 +41,74 @@
|
|||||||
/* timer used to renew Foreign Device Registration */
|
/* timer used to renew Foreign Device Registration */
|
||||||
static uint16_t BBMD_Timer_Seconds;
|
static uint16_t BBMD_Timer_Seconds;
|
||||||
|
|
||||||
/** Register as a Foreign Device
|
#if defined(BACDL_BIP) && BBMD_ENABLED
|
||||||
|
static long bbmd_timetolive_seconds = 60000;
|
||||||
|
static long bbmd_port = 0xBAC0;
|
||||||
|
static long bbmd_address = 0;
|
||||||
|
static int bbmd_result = 0;
|
||||||
|
|
||||||
|
/* Simple setters for BBMD registration variables. */
|
||||||
|
|
||||||
|
/** Sets the IPv4 address for BBMD registration.
|
||||||
|
* If not set here or provided by Environment variables,
|
||||||
|
* no BBMD registration will occur.
|
||||||
|
* @param address - IPv4 address (long) of BBMD to register with,
|
||||||
|
* in network byte order.
|
||||||
|
*/
|
||||||
|
void set_bbmd_address( long address )
|
||||||
|
{
|
||||||
|
bbmd_address = address;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Set the port for BBMD registration.
|
||||||
|
* Default if not set is 0xBAC0.
|
||||||
|
* @param port - The port number (provided in network byte order).
|
||||||
|
*/
|
||||||
|
void set_bbmd_port( int port )
|
||||||
|
{
|
||||||
|
bbmd_port = port;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Set the Lease Time (Time-to-Live) for BBMD registration.
|
||||||
|
* Default if not set is 60000 (1000 minutes).
|
||||||
|
* @param ttl_secs - The Lease Time, in seconds.
|
||||||
|
*/
|
||||||
|
void set_bbmd_ttl( int ttl_secs )
|
||||||
|
{
|
||||||
|
bbmd_timetolive_seconds = ttl_secs;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/** Get the result of the last attempt to register with the indicated BBMD.
|
||||||
|
* @return Positive number (of bytes sent) if registration was successful,
|
||||||
|
* 0 if no registration request was made, or
|
||||||
|
* -1 if registration attempt failed.
|
||||||
|
*/
|
||||||
|
int get_bbmd_result( void )
|
||||||
|
{
|
||||||
|
return bbmd_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Register as a Foreign Device with the designated BBMD.
|
||||||
* @ingroup DataLink
|
* @ingroup DataLink
|
||||||
|
* The BBMD's address, port, and lease time must be provided by
|
||||||
|
* internal variables or Environment variables.
|
||||||
|
* If no address for the BBMD is provided, no BBMD registration will occur.
|
||||||
|
*
|
||||||
* The Environment Variables depend on defines BACDL_BIP and BBMD_ENABLED:
|
* The Environment Variables depend on defines BACDL_BIP and BBMD_ENABLED:
|
||||||
* - BACNET_BBMD_PORT - 0..65534, defaults to 47808
|
* - BACNET_BBMD_PORT - 0..65534, defaults to 47808
|
||||||
* - BACNET_BBMD_TIMETOLIVE - 0..65535 seconds, defaults to 60000
|
* - BACNET_BBMD_TIMETOLIVE - 0..65535 seconds, defaults to 60000
|
||||||
* - BACNET_BBMD_ADDRESS - dotted IPv4 address
|
* - BACNET_BBMD_ADDRESS - dotted IPv4 address
|
||||||
|
* @return Positive number (of bytes sent) on success,
|
||||||
|
* 0 if no registration request is sent, or
|
||||||
|
* -1 if registration fails.
|
||||||
*/
|
*/
|
||||||
void dlenv_register_as_foreign_device(
|
int dlenv_register_as_foreign_device(
|
||||||
void)
|
void)
|
||||||
{
|
{
|
||||||
|
int retval = 0;
|
||||||
#if defined(BACDL_BIP) && BBMD_ENABLED
|
#if defined(BACDL_BIP) && BBMD_ENABLED
|
||||||
char *pEnv = NULL;
|
char *pEnv = NULL;
|
||||||
long bbmd_timetolive_seconds = 60000;
|
|
||||||
long bbmd_port = 0xBAC0;
|
|
||||||
long bbmd_address = 0;
|
|
||||||
|
|
||||||
pEnv = getenv("BACNET_BBMD_PORT");
|
pEnv = getenv("BACNET_BBMD_PORT");
|
||||||
if (pEnv) {
|
if (pEnv) {
|
||||||
@@ -74,20 +127,28 @@ void dlenv_register_as_foreign_device(
|
|||||||
pEnv = getenv("BACNET_BBMD_ADDRESS");
|
pEnv = getenv("BACNET_BBMD_ADDRESS");
|
||||||
if (pEnv) {
|
if (pEnv) {
|
||||||
bbmd_address = bip_getaddrbyname(pEnv);
|
bbmd_address = bip_getaddrbyname(pEnv);
|
||||||
if (bbmd_address) {
|
|
||||||
struct in_addr addr;
|
|
||||||
addr.s_addr = bbmd_address;
|
|
||||||
fprintf(stderr,
|
|
||||||
"Registering with BBMD at %s:%ld for %ld seconds\n",
|
|
||||||
inet_ntoa(addr), bbmd_port, bbmd_timetolive_seconds);
|
|
||||||
bvlc_register_with_bbmd(bbmd_address, htons((uint16_t) bbmd_port),
|
|
||||||
(uint16_t) bbmd_timetolive_seconds);
|
|
||||||
BBMD_Timer_Seconds = bbmd_timetolive_seconds;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
if (bbmd_address) {
|
||||||
|
struct in_addr addr;
|
||||||
|
addr.s_addr = bbmd_address;
|
||||||
|
fprintf(stderr,
|
||||||
|
"Registering with BBMD at %s:%ld for %ld seconds\n",
|
||||||
|
inet_ntoa(addr), bbmd_port, bbmd_timetolive_seconds);
|
||||||
|
retval = bvlc_register_with_bbmd(bbmd_address,
|
||||||
|
htons((uint16_t) bbmd_port),
|
||||||
|
(uint16_t) bbmd_timetolive_seconds);
|
||||||
|
if ( retval < 0 )
|
||||||
|
fprintf(stderr,
|
||||||
|
"FAILED to Register with BBMD at %s \n", inet_ntoa(addr) );
|
||||||
|
BBMD_Timer_Seconds = bbmd_timetolive_seconds;
|
||||||
|
}
|
||||||
|
|
||||||
|
bbmd_result = retval;
|
||||||
#endif
|
#endif
|
||||||
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/** Datalink maintenance timer
|
/** Datalink maintenance timer
|
||||||
* @ingroup DataLink
|
* @ingroup DataLink
|
||||||
*
|
*
|
||||||
@@ -102,9 +163,16 @@ void dlenv_maintenance_timer(
|
|||||||
} else {
|
} else {
|
||||||
BBMD_Timer_Seconds -= elapsed_seconds;
|
BBMD_Timer_Seconds -= elapsed_seconds;
|
||||||
}
|
}
|
||||||
|
#if defined(BACDL_BIP) && BBMD_ENABLED
|
||||||
if (BBMD_Timer_Seconds == 0) {
|
if (BBMD_Timer_Seconds == 0) {
|
||||||
dlenv_register_as_foreign_device();
|
int retval;
|
||||||
|
retval = dlenv_register_as_foreign_device();
|
||||||
|
/* If that failed, maybe just a network issue.
|
||||||
|
* Retry again later. */
|
||||||
|
if ( retval < 0 )
|
||||||
|
BBMD_Timer_Seconds = bbmd_timetolive_seconds;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -125,7 +125,8 @@ int rpm_ack_decode_service_request(
|
|||||||
bacapp_decode_application_data(apdu, apdu_len,
|
bacapp_decode_application_data(apdu, apdu_len,
|
||||||
value);
|
value);
|
||||||
}
|
}
|
||||||
if (len <= 0) {
|
/* If len == 0 then it's an empty structure, which is OK. */
|
||||||
|
if (len < 0) {
|
||||||
/* problem decoding */
|
/* problem decoding */
|
||||||
/* calling function will free the memory */
|
/* calling function will free the memory */
|
||||||
return BACNET_STATUS_ERROR;
|
return BACNET_STATUS_ERROR;
|
||||||
@@ -227,7 +228,7 @@ void rpm_ack_print_data(
|
|||||||
(unsigned) listOfProperties->propertyIdentifier);
|
(unsigned) listOfProperties->propertyIdentifier);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
if (listOfProperties->propertyArrayIndex != BACNET_ARRAY_ALL) {
|
if (listOfProperties->propertyArrayIndex != (int32_t) BACNET_ARRAY_ALL) {
|
||||||
#if PRINT_ENABLED
|
#if PRINT_ENABLED
|
||||||
fprintf(stdout, "[%d]", listOfProperties->propertyArrayIndex);
|
fprintf(stdout, "[%d]", listOfProperties->propertyArrayIndex);
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user