Commit bbac8458 authored by Claes Sjofors's avatar Claes Sjofors

Merge branch 'master' of newton:/data1/x0-0-0/pwr

parents 61dbf96a 2adf1b8a
...@@ -490,83 +490,80 @@ cdh_AttrValueToString ( ...@@ -490,83 +490,80 @@ cdh_AttrValueToString (
{ {
pwr_tStatus sts = CDH__SUCCESS; pwr_tStatus sts = CDH__SUCCESS;
char timbuf[24]; char timbuf[24];
static char sval[512];
sval[0] = '\0';
switch (Type) { switch (Type) {
case pwr_eType_Boolean: case pwr_eType_Boolean:
if (*(pwr_tBoolean *) Value) if (*(pwr_tBoolean *) Value)
strcpy(sval, "1"); strcpy(String, "1");
else else
strcpy(sval, "0"); strcpy(String, "0");
break; break;
case pwr_eType_Float32: case pwr_eType_Float32:
sprintf(sval, "%g", *(pwr_tFloat32 *) Value); snprintf(String, MaxSize, "%g", *(pwr_tFloat32 *) Value);
break; break;
case pwr_eType_Float64: case pwr_eType_Float64:
sprintf(sval, "%g", *(pwr_tFloat64 *) Value); snprintf(String, MaxSize, "%g", *(pwr_tFloat64 *) Value);
break; break;
case pwr_eType_Char: case pwr_eType_Char:
if (*(pwr_tChar *) Value == 0) if (*(pwr_tChar *) Value == 0)
*sval = '\0'; *String = '\0';
else else
sprintf(sval, "%c", *(pwr_tChar *) Value); sprintf(String, "%c", *(pwr_tChar *) Value);
break; break;
case pwr_eType_Int8: case pwr_eType_Int8:
sprintf(sval, "%d", *(pwr_tInt8 *) Value); snprintf(String, MaxSize, "%d", *(pwr_tInt8 *) Value);
break; break;
case pwr_eType_Int16: case pwr_eType_Int16:
sprintf(sval, "%hd", *(pwr_tInt16 *) Value); snprintf(String, MaxSize, "%hd", *(pwr_tInt16 *) Value);
break; break;
case pwr_eType_Int32: case pwr_eType_Int32:
case pwr_eType_Status: case pwr_eType_Status:
case pwr_eType_NetStatus: case pwr_eType_NetStatus:
case pwr_eType_Enum: case pwr_eType_Enum:
sprintf(sval, "%d", *(pwr_tInt32 *) Value); snprintf(String, MaxSize, "%d", *(pwr_tInt32 *) Value);
break; break;
case pwr_eType_Int64: case pwr_eType_Int64:
sprintf(sval, pwr_dFormatInt64, *(pwr_tInt64 *) Value); snprintf(String, MaxSize, pwr_dFormatInt64, *(pwr_tInt64 *) Value);
break; break;
case pwr_eType_UInt8: case pwr_eType_UInt8:
sprintf(sval, "%u", *(pwr_tUInt8 *) Value); snprintf(String, MaxSize, "%u", *(pwr_tUInt8 *) Value);
break; break;
case pwr_eType_UInt16: case pwr_eType_UInt16:
sprintf(sval, "%hu", *(pwr_tUInt16 *) Value); snprintf(String, MaxSize, "%hu", *(pwr_tUInt16 *) Value);
break; break;
case pwr_eType_UInt32: case pwr_eType_UInt32:
case pwr_eType_Mask: case pwr_eType_Mask:
sprintf(sval, "%u", *(pwr_tUInt32 *) Value); snprintf(String, MaxSize, "%u", *(pwr_tUInt32 *) Value);
break; break;
case pwr_eType_UInt64: case pwr_eType_UInt64:
sprintf(sval, pwr_dFormatUInt64, *(pwr_tUInt64 *) Value); snprintf(String, MaxSize, pwr_dFormatUInt64, *(pwr_tUInt64 *) Value);
break; break;
case pwr_eType_Time: case pwr_eType_Time:
if (ODD(time_AtoAscii(Value, time_eFormat_DateAndTime, timbuf, sizeof(timbuf)))) { if (ODD(time_AtoAscii(Value, time_eFormat_DateAndTime, timbuf, sizeof(timbuf)))) {
strcpy(sval, timbuf); strncpy(String, timbuf, MaxSize);
} else { } else {
sprintf(sval, "*** Bad time value ***"); strncpy(String, "*** Bad time value ***", MaxSize);
sts = CDH__INVTIME; sts = CDH__INVTIME;
} }
break; break;
case pwr_eType_DeltaTime: case pwr_eType_DeltaTime:
if (ODD(time_DtoAscii(Value, 1, timbuf, sizeof(timbuf)))) { if (ODD(time_DtoAscii(Value, 1, timbuf, sizeof(timbuf)))) {
strcpy(sval, timbuf); strncpy(String, timbuf, MaxSize);
} else { } else {
sprintf(sval, "*** Bad delta time value ***"); strncpy(String, "*** Bad delta time value ***", MaxSize);
sts = CDH__INVDELTATIME; sts = CDH__INVDELTATIME;
} }
break; break;
case pwr_eType_String: case pwr_eType_String:
case pwr_eType_Text: case pwr_eType_Text:
sprintf(sval,"%s", (char *) Value); snprintf(String, MaxSize, "%s", (char *) Value);
break; break;
case pwr_eType_ProString: { case pwr_eType_ProString: {
int len = strlen( (char *)Value); int len = MAX(strlen( (char *)Value), MaxSize);
int i; int i;
strcpy( sval, ""); strcpy( String, "");
for ( i = 0; i < len; i++) for ( i = 0; i < len; i++)
strcat( sval, "*"); strcat( String, "*");
break; break;
} }
default: default:
...@@ -574,7 +571,7 @@ cdh_AttrValueToString ( ...@@ -574,7 +571,7 @@ cdh_AttrValueToString (
break; break;
} }
strncpy(String, sval, MaxSize); String[MaxSize-1] = 0;
return sts; return sts;
} }
...@@ -3217,4 +3214,4 @@ pwr_tUInt32 cdh_AttrElemSize( pwr_sParInfo *info) ...@@ -3217,4 +3214,4 @@ pwr_tUInt32 cdh_AttrElemSize( pwr_sParInfo *info)
return cdh_AttrSize( info) / info->Elements; return cdh_AttrSize( info) / info->Elements;
} }
/*@}*/ /*@}*/
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment