功能: 服务端生成完整报告并保护单任务

- 使用 libxlsxwriter 常量内存导出 Excel\n- 增加全局任务占用提示与原始数据持久化\n- 保留运行时任务数据并更新接口文档
This commit is contained in:
cloud
2026-08-05 16:47:31 +08:00
parent 07274797af
commit 99ed321d24
2292 changed files with 134317 additions and 126 deletions
+52
View File
@@ -0,0 +1,52 @@
Pod::Spec.new do |s|
s.name = "libxlsxwriter"
s.version = "1.1.5"
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.8"
s.description = <<-DESC
Libxlsxwriter is a C library that can be used to write text, numbers, formulas and hyperlinks to multiple worksheets in an Excel 2007+ XLSX file.
It supports features such as:
* 100% compatible Excel XLSX files.
* Full Excel formatting.
* Merged cells.
* Defined names.
* Autofilters.
* Charts.
* Data validation and drop down lists.
* Conditional formatting.
* Worksheet PNG/JPEG/GIF images.
* Cell comments.
* Support for adding Macros.
* Memory optimisation mode for writing large files.
* Source code available on [GitHub](https://github.com/jmcnamara/libxlsxwriter).
* FreeBSD license.
* ANSI C.
* Works with GCC, Clang, Xcode, MSVC 2015, ICC, TCC, MinGW, MingGW-w64/32.
* Works on Linux, FreeBSD, OpenBSD, OS X, iOS and Windows. Also works on MSYS/MSYS2 and Cygwin.
* Compiles for 32 and 64 bit.
* Compiles and works on big and little endian systems.
* The only dependency is on `zlib`.
DESC
s.homepage = "http://libxlsxwriter.github.io"
s.documentation_url = "http://libxlsxwriter.github.io"
s.license = "FreeBSD"
s.author = { "John McNamara" => "jmcnamara@cpan.org" }
s.source = { :git => "https://github.com/jmcnamara/libxlsxwriter.git", :tag => "RELEASE_" + s.version.to_s }
s.source_files = "src/*.c", "third_party/**/{zip.c,ioapi.c,tmpfileplus.c,md5.c}", "include/**/*.h"
s.preserve_paths = [ 'third_party/**/*.h' ]
s.header_dir = "xlsxwriter"
s.header_mappings_dir = "include"
s.library = "z"
s.compiler_flags = "-DNOCRYPT=1", "-DNOUNCRYPT=1"
s.pod_target_xcconfig = { 'USER_HEADER_SEARCH_PATHS' => '${PODS_ROOT}/libxlsxwriter/include' }
s.module_map = "cocoapods/libxlsxwriter.modulemap"
s.prepare_command = <<-CMD
cp cocoapods/libxlsxwriter-umbrella.h include/xlsxwriter/libxlsxwriter-umbrella.h
CMD
end