mirror of
				https://github.com/stargieg/bacnet-stack
				synced 2025-10-26 23:35:52 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			241 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			241 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /**************************************************************************
 | |
| *
 | |
| * Copyright (C) 2005 Steve Karg <skarg@users.sourceforge.net>
 | |
| *
 | |
| * Permission is hereby granted, free of charge, to any person obtaining
 | |
| * a copy of this software and associated documentation files (the
 | |
| * "Software"), to deal in the Software without restriction, including
 | |
| * without limitation the rights to use, copy, modify, merge, publish,
 | |
| * distribute, sublicense, and/or sell copies of the Software, and to
 | |
| * permit persons to whom the Software is furnished to do so, subject to
 | |
| * the following conditions:
 | |
| *
 | |
| * The above copyright notice and this permission notice shall be included
 | |
| * in all copies or substantial portions of the Software.
 | |
| *
 | |
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 | |
| * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 | |
| * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 | |
| * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 | |
| * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 | |
| * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 | |
| * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 | |
| *
 | |
| *********************************************************************/
 | |
| #include <stddef.h>
 | |
| #include <stdint.h>
 | |
| #include <stdio.h>
 | |
| #include <string.h>
 | |
| #include <errno.h>
 | |
| #include "config.h"
 | |
| #include "txbuf.h"
 | |
| #include "bacdef.h"
 | |
| #include "bacdcode.h"
 | |
| #include "apdu.h"
 | |
| #include "npdu.h"
 | |
| #include "abort.h"
 | |
| /*#include "arf.h" */
 | |
| /* demo objects */
 | |
| #include "ptransfer.h"
 | |
| #include "mydata.h"
 | |
| #if defined(BACFILE)
 | |
| #include "bacfile.h"
 | |
| #endif
 | |
| #include "handlers.h"
 | |
| 
 | |
| /** @file h_pt_a.c  Handles Confirmed Private Transfer Acknowledgment. */
 | |
| 
 | |
| extern uint8_t IOBufferPT[300]; /* Somewhere to build the encoded result block for Private Transfers */
 | |
| 
 | |
| static void DecodeBlock(
 | |
|     char cBlockNum,
 | |
|     uint8_t * pData)
 | |
| {
 | |
|     int iLen;
 | |
|     uint32_t ulTemp;
 | |
|     int tag_len;
 | |
|     uint8_t tag_number;
 | |
|     uint32_t len_value_type;
 | |
|     BACNET_CHARACTER_STRING bsName;
 | |
|     DATABLOCK Response;
 | |
| 
 | |
|     iLen = 0;
 | |
| 
 | |
|     if (cBlockNum >= MY_MAX_BLOCK)
 | |
|         return;
 | |
| 
 | |
|     tag_len =
 | |
|         decode_tag_number_and_value(&pData[iLen], &tag_number,
 | |
|         &len_value_type);
 | |
|     iLen += tag_len;
 | |
|     if (tag_number != BACNET_APPLICATION_TAG_UNSIGNED_INT)
 | |
|         return;
 | |
| 
 | |
|     iLen += decode_unsigned(&pData[iLen], len_value_type, &ulTemp);
 | |
|     Response.cMyByte1 = (char) ulTemp;
 | |
| 
 | |
|     tag_len =
 | |
|         decode_tag_number_and_value(&pData[iLen], &tag_number,
 | |
|         &len_value_type);
 | |
|     iLen += tag_len;
 | |
|     if (tag_number != BACNET_APPLICATION_TAG_UNSIGNED_INT)
 | |
|         return;
 | |
| 
 | |
|     iLen += decode_unsigned(&pData[iLen], len_value_type, &ulTemp);
 | |
|     Response.cMyByte2 = (char) ulTemp;
 | |
| 
 | |
|     tag_len =
 | |
|         decode_tag_number_and_value(&pData[iLen], &tag_number,
 | |
|         &len_value_type);
 | |
|     iLen += tag_len;
 | |
|     if (tag_number != BACNET_APPLICATION_TAG_REAL)
 | |
|         return;
 | |
| 
 | |
|     iLen += decode_real(&pData[iLen], &Response.fMyReal);
 | |
| 
 | |
|     tag_len =
 | |
|         decode_tag_number_and_value(&pData[iLen], &tag_number,
 | |
|         &len_value_type);
 | |
|     iLen += tag_len;
 | |
|     if (tag_number != BACNET_APPLICATION_TAG_CHARACTER_STRING)
 | |
|         return;
 | |
| 
 | |
|     iLen += decode_character_string(&pData[iLen], len_value_type, &bsName);
 | |
|     strncpy((char *) Response.sMyString, characterstring_value(&bsName),
 | |
|         MY_MAX_STR);
 | |
|     Response.sMyString[MY_MAX_STR] = '\0';      /* Make sure it is nul terminated */
 | |
| 
 | |
|     printf("Private Transfer Read Block Response\n");
 | |
|     printf("Data Block: %d\n", (int) cBlockNum);
 | |
|     printf("  First Byte  : %d\n", (int) Response.cMyByte1);
 | |
|     printf("  Second Byte : %d\n", (int) Response.cMyByte2);
 | |
|     printf("  Real        : %f\n", Response.fMyReal);
 | |
|     printf("  String      : %s\n\n", Response.sMyString);
 | |
| }
 | |
| 
 | |
| static void ProcessPTA(
 | |
|     BACNET_PRIVATE_TRANSFER_DATA * data)
 | |
| {
 | |
|     int iLen;   /* Index to current location in data */
 | |
|     uint32_t uiErrorCode;
 | |
|     char cBlockNumber;
 | |
|     uint32_t ulTemp;
 | |
|     int tag_len;
 | |
|     uint8_t tag_number;
 | |
|     uint32_t len_value_type;
 | |
| 
 | |
|     iLen = 0;
 | |
| 
 | |
|     /* Error code is returned for read and write operations */
 | |
| 
 | |
|     tag_len =
 | |
|         decode_tag_number_and_value(&data->serviceParameters[iLen],
 | |
|         &tag_number, &len_value_type);
 | |
|     iLen += tag_len;
 | |
|     if (tag_number != BACNET_APPLICATION_TAG_UNSIGNED_INT) {
 | |
| #if PRINT_ENABLED
 | |
|         printf("CPTA: Bad Encoding!\n");
 | |
| #endif
 | |
|         return;
 | |
|     }
 | |
|     iLen +=
 | |
|         decode_unsigned(&data->serviceParameters[iLen], len_value_type,
 | |
|         &uiErrorCode);
 | |
| 
 | |
|     if (data->serviceNumber == MY_SVC_READ) {   /* Read I/O block so should be full block of data or error */
 | |
|         /* Decode the error type and if necessary block number and then fetch the info */
 | |
| 
 | |
|         if (uiErrorCode == MY_ERR_OK) {
 | |
|             /* Block Number */
 | |
|             tag_len =
 | |
|                 decode_tag_number_and_value(&data->serviceParameters[iLen],
 | |
|                 &tag_number, &len_value_type);
 | |
|             iLen += tag_len;
 | |
|             if (tag_number != BACNET_APPLICATION_TAG_UNSIGNED_INT) {
 | |
| #if PRINT_ENABLED
 | |
|                 printf("CPTA: Bad Encoding!\n");
 | |
| #endif
 | |
|                 return;
 | |
|             }
 | |
| 
 | |
|             iLen +=
 | |
|                 decode_unsigned(&data->serviceParameters[iLen], len_value_type,
 | |
|                 &ulTemp);
 | |
|             cBlockNumber = (char) ulTemp;
 | |
|             DecodeBlock(cBlockNumber, &data->serviceParameters[iLen]);
 | |
|         } else {        /* Read error */
 | |
|             printf
 | |
|                 ("Private Transfer read operation returned error code: %lu\n",
 | |
|                 (unsigned long) uiErrorCode);
 | |
|             return;
 | |
|         }
 | |
|     } else {    /* Write I/O block - should just be an OK type message */
 | |
|         printf("Private Transfer write operation returned error code: %lu\n",
 | |
|             (unsigned long) uiErrorCode);
 | |
|     }
 | |
| }
 | |
| 
 | |
| 
 | |
| 
 | |
| /*
 | |
|  * This is called when we receive a private transfer packet ack.
 | |
|  * We parse the response which the remote application generated
 | |
|  * and decide what to do next...
 | |
|  */
 | |
| 
 | |
| void handler_conf_private_trans_ack(
 | |
|     uint8_t * service_request,
 | |
|     uint16_t service_len,
 | |
|     BACNET_ADDRESS * src,
 | |
|     BACNET_CONFIRMED_SERVICE_ACK_DATA * service_data)
 | |
| {
 | |
|     BACNET_PRIVATE_TRANSFER_DATA data;
 | |
|     int len;
 | |
| 
 | |
| /*
 | |
|  * Note:
 | |
|  * We currently don't look at the source address and service data
 | |
|  * but we probably should to verify that the ack is oneit is what
 | |
|  * we were expecting. But this is just to silence some compiler
 | |
|  * warnings from Borland.
 | |
|  */
 | |
|     src = src;
 | |
|     service_data = service_data;
 | |
| 
 | |
|     len = 0;
 | |
| 
 | |
| 
 | |
| 
 | |
| #if PRINT_ENABLED
 | |
|     printf("Received Confirmed Private Transfer Ack!\n");
 | |
| #endif
 | |
| 
 | |
|     len = ptransfer_decode_service_request(service_request, service_len, &data);        /* Same decode for ack as for service request! */
 | |
|     if (len < 0) {
 | |
| #if PRINT_ENABLED
 | |
|         printf("cpta: Bad Encoding!\n");
 | |
| #endif
 | |
|     }
 | |
| 
 | |
|     ProcessPTA(&data);  /* See what to do with the response */
 | |
| 
 | |
|     return;
 | |
| }
 | |
| 
 | |
| #if 0
 | |
| void PTErrorHandler(
 | |
|     BACNET_ADDRESS * src,
 | |
|     uint8_t invoke_id,
 | |
|     BACNET_ERROR_CLASS error_class,
 | |
|     BACNET_ERROR_CODE error_code)
 | |
| {
 | |
|     /* FIXME: verify src and invoke id */
 | |
|     (void) src;
 | |
|     (void) invoke_id;
 | |
|     printf("BACnet Error: %s: %s\r\n",
 | |
|         bactext_error_class_name((int) error_class),
 | |
|         bactext_error_code_name((int) error_code));
 | |
|     Error_Detected = true;
 | |
| }
 | |
| #endif
 | 
