mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Compare commits
7 Commits
2025.12.1-
...
nd-preserv
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b4c90fb4d3 | ||
|
|
4cb04802e2 | ||
|
|
35038f3e8d | ||
|
|
08e5260c16 | ||
|
|
825d1d713b | ||
|
|
9753692a9a | ||
|
|
70942e5882 |
@@ -48,13 +48,9 @@ target_sources (xrpl_core PRIVATE
|
|||||||
src/ripple/beast/net/impl/IPAddressV6.cpp
|
src/ripple/beast/net/impl/IPAddressV6.cpp
|
||||||
src/ripple/beast/net/impl/IPEndpoint.cpp
|
src/ripple/beast/net/impl/IPEndpoint.cpp
|
||||||
src/ripple/beast/utility/src/beast_Journal.cpp
|
src/ripple/beast/utility/src/beast_Journal.cpp
|
||||||
src/ripple/beast/utility/src/beast_PropertyStream.cpp)
|
src/ripple/beast/utility/src/beast_PropertyStream.cpp
|
||||||
|
# Enhanced logging - compiles to empty when BEAST_ENHANCED_LOGGING is not defined
|
||||||
# Conditionally add enhanced logging source when BEAST_ENHANCED_LOGGING is enabled
|
src/ripple/beast/utility/src/beast_EnhancedLogging.cpp)
|
||||||
if(DEFINED BEAST_ENHANCED_LOGGING AND BEAST_ENHANCED_LOGGING)
|
|
||||||
target_sources(xrpl_core PRIVATE
|
|
||||||
src/ripple/beast/utility/src/beast_EnhancedLogging.cpp)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
#[===============================[
|
#[===============================[
|
||||||
core sources
|
core sources
|
||||||
@@ -162,12 +158,16 @@ target_link_libraries (xrpl_core
|
|||||||
date::date
|
date::date
|
||||||
Ripple::opts)
|
Ripple::opts)
|
||||||
|
|
||||||
# Link date-tz library when enhanced logging is enabled
|
# date-tz for enhanced logging (always linked, code is #ifdef guarded)
|
||||||
if(DEFINED BEAST_ENHANCED_LOGGING AND BEAST_ENHANCED_LOGGING)
|
if(TARGET date::date-tz)
|
||||||
if(TARGET date::date-tz)
|
target_link_libraries(xrpl_core PUBLIC date::date-tz)
|
||||||
target_link_libraries(xrpl_core PUBLIC date::date-tz)
|
|
||||||
endif()
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# BEAST_ENHANCED_LOGGING: enable for Debug builds OR when explicitly requested
|
||||||
|
# Uses generator expression so it works with multi-config generators (Xcode, VS, Ninja Multi-Config)
|
||||||
|
target_compile_definitions(xrpl_core PUBLIC
|
||||||
|
$<$<OR:$<CONFIG:Debug>,$<BOOL:${BEAST_ENHANCED_LOGGING}>>:BEAST_ENHANCED_LOGGING=1>
|
||||||
|
)
|
||||||
#[=================================[
|
#[=================================[
|
||||||
main/core headers installation
|
main/core headers installation
|
||||||
#]=================================]
|
#]=================================]
|
||||||
|
|||||||
@@ -37,20 +37,11 @@ endif() #git
|
|||||||
set(SOURCE_ROOT_PATH "${CMAKE_CURRENT_SOURCE_DIR}/src/")
|
set(SOURCE_ROOT_PATH "${CMAKE_CURRENT_SOURCE_DIR}/src/")
|
||||||
add_definitions(-DSOURCE_ROOT_PATH="${SOURCE_ROOT_PATH}")
|
add_definitions(-DSOURCE_ROOT_PATH="${SOURCE_ROOT_PATH}")
|
||||||
|
|
||||||
# BEAST_ENHANCED_LOGGING option - adds file:line numbers and formatting to logs
|
# BEAST_ENHANCED_LOGGING - adds file:line numbers and formatting to logs
|
||||||
# Default to ON for Debug builds, OFF for Release
|
# Automatically enabled for Debug builds via generator expression
|
||||||
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
# Can be explicitly controlled with -DBEAST_ENHANCED_LOGGING=ON/OFF
|
||||||
option(BEAST_ENHANCED_LOGGING "Include file and line numbers in log messages" ON)
|
option(BEAST_ENHANCED_LOGGING "Include file and line numbers in log messages (auto: Debug=ON, Release=OFF)" OFF)
|
||||||
else()
|
message(STATUS "BEAST_ENHANCED_LOGGING option: ${BEAST_ENHANCED_LOGGING}")
|
||||||
option(BEAST_ENHANCED_LOGGING "Include file and line numbers in log messages" OFF)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(BEAST_ENHANCED_LOGGING)
|
|
||||||
add_definitions(-DBEAST_ENHANCED_LOGGING=1)
|
|
||||||
message(STATUS "Log line numbers enabled")
|
|
||||||
else()
|
|
||||||
message(STATUS "Log line numbers disabled")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(thread_safety_analysis)
|
if(thread_safety_analysis)
|
||||||
add_compile_options(-Wthread-safety -D_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS -DRIPPLE_ENABLE_THREAD_SAFETY_ANNOTATIONS)
|
add_compile_options(-Wthread-safety -D_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS -DRIPPLE_ENABLE_THREAD_SAFETY_ANNOTATIONS)
|
||||||
|
|||||||
@@ -360,7 +360,8 @@ Logs::format(
|
|||||||
if (!partition.empty())
|
if (!partition.empty())
|
||||||
{
|
{
|
||||||
#ifdef BEAST_ENHANCED_LOGGING
|
#ifdef BEAST_ENHANCED_LOGGING
|
||||||
output += beast::detail::get_log_highlight_color();
|
if (beast::detail::should_log_use_colors())
|
||||||
|
output += beast::detail::get_log_highlight_color();
|
||||||
#endif
|
#endif
|
||||||
output += partition + ":";
|
output += partition + ":";
|
||||||
}
|
}
|
||||||
@@ -392,7 +393,8 @@ Logs::format(
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef BEAST_ENHANCED_LOGGING
|
#ifdef BEAST_ENHANCED_LOGGING
|
||||||
output += "\033[0m";
|
if (beast::detail::should_log_use_colors())
|
||||||
|
output += "\033[0m";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
output += message;
|
output += message;
|
||||||
|
|||||||
@@ -41,6 +41,14 @@ get_log_highlight_color();
|
|||||||
constexpr const char*
|
constexpr const char*
|
||||||
strip_source_root(const char* file)
|
strip_source_root(const char* file)
|
||||||
{
|
{
|
||||||
|
// Handle relative paths from build/ directory (common with ccache)
|
||||||
|
// e.g., "../src/ripple/..." -> "ripple/..."
|
||||||
|
if (file[0] == '.' && file[1] == '.' && file[2] == '/' && file[3] == 's' &&
|
||||||
|
file[4] == 'r' && file[5] == 'c' && file[6] == '/')
|
||||||
|
{
|
||||||
|
return file + 7; // skip "../src/"
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef SOURCE_ROOT_PATH
|
#ifdef SOURCE_ROOT_PATH
|
||||||
constexpr const char* sourceRoot = SOURCE_ROOT_PATH;
|
constexpr const char* sourceRoot = SOURCE_ROOT_PATH;
|
||||||
constexpr auto strlen_constexpr = [](const char* s) constexpr
|
constexpr auto strlen_constexpr = [](const char* s) constexpr
|
||||||
|
|||||||
@@ -17,6 +17,8 @@
|
|||||||
*/
|
*/
|
||||||
//==============================================================================
|
//==============================================================================
|
||||||
|
|
||||||
|
#ifdef BEAST_ENHANCED_LOGGING
|
||||||
|
|
||||||
#include <ripple/beast/utility/EnhancedLogging.h>
|
#include <ripple/beast/utility/EnhancedLogging.h>
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
@@ -112,3 +114,5 @@ log_write_location_string(std::ostream& os, const char* file, int line)
|
|||||||
|
|
||||||
} // namespace detail
|
} // namespace detail
|
||||||
} // namespace beast
|
} // namespace beast
|
||||||
|
|
||||||
|
#endif // BEAST_ENHANCED_LOGGING
|
||||||
|
|||||||
@@ -155,14 +155,43 @@ Journal::ScopedStream::~ScopedStream()
|
|||||||
|
|
||||||
#ifdef BEAST_ENHANCED_LOGGING
|
#ifdef BEAST_ENHANCED_LOGGING
|
||||||
// Add suffix if location is enabled
|
// Add suffix if location is enabled
|
||||||
if (file_ && detail::should_show_location() && !s.empty() && s != "\n")
|
if (file_ && detail::should_show_location() && !s.empty())
|
||||||
{
|
{
|
||||||
std::ostringstream combined;
|
// Single optimized scan from the end
|
||||||
combined << s;
|
size_t const lastNonWhitespace = s.find_last_not_of(" \n\r\t");
|
||||||
if (!s.empty() && s.back() != ' ')
|
|
||||||
combined << " ";
|
// Skip if message is only whitespace (e.g., just "\n" or " \n\n")
|
||||||
detail::log_write_location_string(combined, file_, line_);
|
if (lastNonWhitespace != std::string::npos)
|
||||||
s = combined.str();
|
{
|
||||||
|
// Count only the trailing newlines (tiny range)
|
||||||
|
size_t trailingNewlines = 0;
|
||||||
|
for (size_t i = lastNonWhitespace + 1; i < s.length(); ++i)
|
||||||
|
{
|
||||||
|
if (s[i] == '\n')
|
||||||
|
++trailingNewlines;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build location string once
|
||||||
|
std::ostringstream locStream;
|
||||||
|
detail::log_write_location_string(locStream, file_, line_);
|
||||||
|
std::string const location = locStream.str();
|
||||||
|
|
||||||
|
// Pre-allocate exact size → zero reallocations
|
||||||
|
size_t const finalSize = lastNonWhitespace + 1 + 1 +
|
||||||
|
location.length() + trailingNewlines;
|
||||||
|
|
||||||
|
std::string result;
|
||||||
|
result.reserve(finalSize);
|
||||||
|
|
||||||
|
// Direct string ops (no ostringstream overhead)
|
||||||
|
result.append(s, 0, lastNonWhitespace + 1);
|
||||||
|
result.push_back(' ');
|
||||||
|
result += location;
|
||||||
|
if (trailingNewlines > 0)
|
||||||
|
result.append(trailingNewlines, '\n');
|
||||||
|
|
||||||
|
s = std::move(result); // Move, no copy
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user