PengZheng commented on code in PR #470: URL: https://github.com/apache/celix/pull/470#discussion_r1398088103
########## libs/utils/src/properties.c: ########## @@ -103,12 +131,278 @@ static void updateBuffers(char **key, char ** value, char **output, int outputPo } } -static void parseLine(const char* line, celix_properties_t *props) { - int linePos = 0; +/** + * Create a new string from the provided str by either using strdup or storing the string the short properties + * optimization string buffer. + */ +char* celix_properties_createString(celix_properties_t* properties, const char* str) { + if (str == NULL) { + return (char*)CELIX_PROPERTIES_EMPTY_STRVAL; + } + size_t len = strnlen(str, CELIX_UTILS_MAX_STRLEN) + 1; + size_t left = CELIX_PROPERTIES_OPTIMIZATION_STRING_BUFFER_SIZE - properties->currentStringBufferIndex; + char* result; + if (len < left) { + memcpy(&properties->stringBuffer[properties->currentStringBufferIndex], str, len); + result = &properties->stringBuffer[properties->currentStringBufferIndex]; + properties->currentStringBufferIndex += (int)len; + } else { + result = celix_utils_strdup(str); + } + return result; +} +/** + * Free string, but first check if it a static const char* const string or part of the short properties + * optimization. + */ +static void celix_properties_freeString(celix_properties_t* properties, char* str) { + if (str == CELIX_PROPERTIES_BOOL_TRUE_STRVAL || str == CELIX_PROPERTIES_BOOL_FALSE_STRVAL || + str == CELIX_PROPERTIES_EMPTY_STRVAL) { + // str is static const char* const -> nop + } else if (str >= properties->stringBuffer && + str < (properties->stringBuffer + CELIX_PROPERTIES_OPTIMIZATION_STRING_BUFFER_SIZE)) { + // str is part of the properties string buffer -> nop + } else { + free(str); + } +} + +/** + * Fill entry and optional use the short properties optimization string buffer. + */ +static celix_status_t celix_properties_fillEntry(celix_properties_t* properties, + celix_properties_entry_t* entry, + const celix_properties_entry_t* prototype) { + char convertedValueBuffer[21]; + if (prototype->valueType == CELIX_PROPERTIES_VALUE_TYPE_VERSION) { + entry->valueType = CELIX_PROPERTIES_VALUE_TYPE_VERSION; + entry->typed.versionValue = prototype->typed.versionValue; + bool written = celix_version_fillString(prototype->typed.versionValue, convertedValueBuffer, sizeof(convertedValueBuffer)); + if (written) { + entry->value = celix_properties_createString(properties, convertedValueBuffer); + } else { + entry->value = celix_version_toString(prototype->typed.versionValue); + } + } else if (prototype->valueType == CELIX_PROPERTIES_VALUE_TYPE_LONG) { + entry->valueType = CELIX_PROPERTIES_VALUE_TYPE_LONG; + entry->typed.longValue = prototype->typed.longValue; + int written = snprintf(convertedValueBuffer, sizeof(convertedValueBuffer), "%li", entry->typed.longValue); + if (written < 0 || written <= sizeof(convertedValueBuffer)) { Review Comment: ```suggestion if (written >= 0 || written < sizeof(convertedValueBuffer)) { ``` `written < 0 || written == sizeof(convertedValueBuffer)` should be error. According to `man snprintf`, " a return value of size or more means that the output was truncated". -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@celix.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org