优化了xml修改和表格逆生成功能

This commit is contained in:
lnk
2026-07-14 15:14:54 +08:00
parent 70c1534d96
commit 6bfaa32db4
74 changed files with 15935 additions and 1804129 deletions

View File

@@ -1,10 +1,35 @@
@echo off
setlocal EnableExtensions
rem ============================================================================
rem Build script for the PQ mapping/parser/tracing tool.
rem
rem Purpose:
rem 1. Compile sources from the source directory.
rem 2. Write bin\pq_tool.exe by default, or write the output path passed as %1.
rem 3. Require a 32-bit i686 MinGW compiler because the executable and
rem RocketMQ runtime DLLs must use the same 32-bit architecture.
rem
rem Inputs:
rem %1 Optional output exe path.
rem PQ_BUILD_TEMP Optional temp directory, useful when the system temp drive
rem has too little free space.
rem
rem Outputs:
rem Success: generated exe and optional DLL warnings.
rem Failure: non-zero errorlevel and a printed error message.
rem
rem Keep this file ASCII-only. cmd.exe parses batch files with the active code
rem page, and UTF-8 Chinese comments can break command parsing on some systems.
rem ============================================================================
rem ROOT is the directory containing this script. All relative paths are based on
rem the project root after pushd.
set "ROOT=%~dp0"
pushd "%ROOT%" >nul
set "SRC_DIR=%ROOT%source"
rem Prefer the known 32-bit MinGW g++; otherwise fall back to g++ from PATH.
set "DEFAULT_CXX=C:\Users\lnk\Downloads\mingw32\bin\g++.exe"
if exist "%DEFAULT_CXX%" (
set "CXX=%DEFAULT_CXX%"
@@ -12,6 +37,8 @@ if exist "%DEFAULT_CXX%" (
set "CXX=g++"
)
rem The first argument controls the output path, so a test build can coexist with
rem the normal bin\pq_tool.exe.
set "OUT=%~1"
if "%OUT%"=="" set "OUT=bin\pq_tool.exe"
if not exist "bin" mkdir "bin"
@@ -21,6 +48,7 @@ if not exist "%SRC_DIR%\main.cpp" (
exit /b 1
)
rem Redirect TMP/TEMP when the caller provides a valid build temp directory.
if not "%PQ_BUILD_TEMP%"=="" (
if exist "%PQ_BUILD_TEMP%" (
set "TMP=%PQ_BUILD_TEMP%"
@@ -31,6 +59,7 @@ if not "%PQ_BUILD_TEMP%"=="" (
)
)
rem -dumpmachine returns values such as i686-w64-mingw32. Reject x86_64 here.
echo [INFO] Compiler: %CXX%
for /f "delims=" %%M in ('"%CXX%" -dumpmachine 2^>nul') do set "TARGET=%%M"
echo [INFO] Target: %TARGET%
@@ -43,6 +72,8 @@ if errorlevel 1 (
)
echo [INFO] Output: %OUT%
rem Delete the old output before compiling. If deletion fails, the program is
rem usually still running or the file is locked by another process.
if exist "%OUT%" (
del /f "%OUT%" >nul 2>nul
if exist "%OUT%" (
@@ -52,6 +83,12 @@ if exist "%OUT%" (
)
)
rem Compile units:
rem main.cpp CLI entry, JSON/XML mapping parser, Excel XML output.
rem interface.cpp Win32 GUI, page interaction, preview, reverse XML output.
rem mq.cpp HTTP ledger/ICD fetch, RocketMQ loader, trace data storage.
rem icd_mapper.cpp Imports ICD descriptions into unmatched-origin workbook rows.
rem tinyxml2.cpp XML parsing/printing library.
"%CXX%" ^
-std=gnu++17 ^
-O2 ^
@@ -69,12 +106,15 @@ if errorlevel 1 (
exit /b 1
)
rem Confirm that the compiler really produced the output file.
if not exist "%OUT%" (
echo [ERR] Build command finished but output file was not created: %OUT%
popd >nul
exit /b 1
)
rem These DLLs are loaded dynamically at runtime. The program can still start
rem without them, but MQ tracing will fall back to runtime\json\mq_outbox_*.jsonl.
if not exist "bin\rocketmq-client-cpp.dll" (
echo [WARN] bin\rocketmq-client-cpp.dll is missing. MQ runtime will not load.
)