From: Marton Balint <cus@passwd.hu> To: ffmpeg-devel@ffmpeg.org Cc: Marton Balint <cus@passwd.hu> Subject: [FFmpeg-devel] [PATCH 3/4] fftools/graph/graphprint: load CSS and HTML resources from ffmpeg data directories Date: Sat, 17 May 2025 01:09:00 +0200 Message-ID: <20250516231041.4640-3-cus@passwd.hu> (raw) In-Reply-To: <20250516231041.4640-1-cus@passwd.hu> Similar to how it is done for ffpreset files. This allows the users to change the HTML/CSS templates at will. Signed-off-by: Marton Balint <cus@passwd.hu> --- Makefile | 2 +- doc/ffmpeg.texi | 4 ++- fftools/cmdutils.c | 48 +++++++++++++++++++++++++++++++++ fftools/cmdutils.h | 2 ++ fftools/graph/graphprint.c | 16 ++++++++--- fftools/textformat/tf_mermaid.h | 4 +-- 6 files changed, 68 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index e2250f6bc6..ebc50bb510 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ FFLIBS-$(CONFIG_SWSCALE) += swscale FFLIBS := avutil -DATA_FILES := $(wildcard $(SRC_PATH)/presets/*.ffpreset) $(SRC_PATH)/doc/ffprobe.xsd +DATA_FILES := $(wildcard $(SRC_PATH)/presets/*.ffpreset) $(SRC_PATH)/doc/ffprobe.xsd $(SRC_PATH)/fftools/resources/graph.css $(SRC_PATH)/fftools/resources/graph.html SKIPHEADERS = compat/w32pthreads.h diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 35675b5309..8edf188ab9 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -1402,7 +1402,9 @@ Writes execution graph details to the specified file in the format set via -prin @item -print_graphs_format @var{format} (@emph{global}) Sets the output format (available formats are: default, compact, csv, flat, ini, json, xml, mermaid, mermaidhtml) -The default format is json. +The default format is json. The mermarid and mermaidhtml formats need graph.css +and graph.html resources which are searched in the FFMPEG data directories, +similar to ffpreset files. @item -progress @var{url} (@emph{global}) Send program-friendly progress information to @var{url}. diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c index 1de670c2e4..01e57d91e8 100644 --- a/fftools/cmdutils.c +++ b/fftools/cmdutils.c @@ -1005,6 +1005,54 @@ FILE *get_preset_file(AVBPrint *filename, return f; } +int file_read_from_datadir(const char *filename, char **outbuf) +{ + FILE *f; + char *buf = NULL; + long size; + AVBPrint bp; + + av_bprint_init(&bp, 0, AV_BPRINT_SIZE_UNLIMITED); + f = get_datadir_file_fmt(&bp, "%s", filename); + if (!f) + return AVERROR(errno); + + if (fseek(f, 0, SEEK_END)) { + int ret = AVERROR(errno); + fclose(f); + return ret; + } + + size = ftell(f); + if (size < 0 || size >= INT_MAX) { + fclose(f); + return AVERROR(EINVAL); + } + + if (fseek(f, 0, SEEK_SET)) { + int ret = AVERROR(errno); + fclose(f); + return ret; + } + + buf = av_malloc(size + 1); + if (!buf) { + fclose(f); + return AVERROR(ENOMEM); + } + + if (fread(buf, 1, size, f) != size) { + fclose(f); + return AVERROR(EIO); + } + buf[size] = 0; + + fclose(f); + + *outbuf = buf; + return 0; +} + int cmdutils_isalnum(char c) { return (c >= '0' && c <= '9') || diff --git a/fftools/cmdutils.h b/fftools/cmdutils.h index 216a2bcfe7..b324e5fc65 100644 --- a/fftools/cmdutils.h +++ b/fftools/cmdutils.h @@ -504,6 +504,8 @@ int read_yesno(void); FILE *get_preset_file(AVBPrint *filename, const char *preset_name, int is_path, const char *codec_name); +int file_read_from_datadir(const char *filename, char **buf); + /** * Realloc array to hold new_size elements of elem_size. * diff --git a/fftools/graph/graphprint.c b/fftools/graph/graphprint.c index fc94a75797..fbcb7f1b75 100644 --- a/fftools/graph/graphprint.c +++ b/fftools/graph/graphprint.c @@ -41,7 +41,6 @@ #include "libavutil/hwcontext.h" #include "fftools/textformat/avtextformat.h" #include "fftools/textformat/tf_mermaid.h" -#include "fftools/resources/resman.h" typedef enum { SECTION_ID_ROOT, @@ -935,10 +934,19 @@ static int init_graphprint(GraphPrintContext **pgpc, AVBPrint *target_buf) } if (!strcmp(text_formatter->name, "mermaid") || !strcmp(text_formatter->name, "mermaidhtml")) { - gpc->diagram_config.diagram_css = ff_resman_get_string(FF_RESOURCE_GRAPH_CSS); + ret = file_read_from_datadir("graph.css", &gpc->diagram_config.diagram_css); + if (ret < 0) { + av_log(NULL, AV_LOG_ERROR, "graph.css needed for mermaid graph format cannot be opened: %s\n", av_err2str(ret)); + goto fail; + } - if (!strcmp(text_formatter->name, "mermaidhtml")) - gpc->diagram_config.html_template = ff_resman_get_string(FF_RESOURCE_GRAPH_HTML); + if (!strcmp(text_formatter->name, "mermaidhtml")) { + ret = file_read_from_datadir("graph.html", &gpc->diagram_config.html_template); + if (ret < 0) { + av_log(NULL, AV_LOG_ERROR, "graph.html needed for mermaridhtml graph format cannot be opened: %s\n", av_err2str(ret)); + goto fail; + } + } av_diagram_init(tfc, &gpc->diagram_config); } diff --git a/fftools/textformat/tf_mermaid.h b/fftools/textformat/tf_mermaid.h index 6e8f2a9b42..0b34d8ab20 100644 --- a/fftools/textformat/tf_mermaid.h +++ b/fftools/textformat/tf_mermaid.h @@ -28,8 +28,8 @@ typedef enum { typedef struct AVDiagramConfig { AVDiagramType diagram_type; - const char *diagram_css; - const char *html_template; + char *diagram_css; + char *html_template; } AVDiagramConfig; -- 2.43.0 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next prev parent reply other threads:[~2025-05-16 23:11 UTC|newest] Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top 2025-05-16 23:08 [FFmpeg-devel] [PATCH 1/4] fftools/cmdutils: allow arbitrary length paths for preset files Marton Balint 2025-05-16 23:08 ` [FFmpeg-devel] [PATCH 2/4] fftools/cmdutils: factorize loading a file from the datadir Marton Balint 2025-05-16 23:09 ` Marton Balint [this message] 2025-05-17 2:21 ` [FFmpeg-devel] [PATCH 3/4] fftools/graph/graphprint: load CSS and HTML resources from ffmpeg data directories softworkz . 2025-05-17 9:13 ` Marton Balint 2025-05-17 17:22 ` softworkz . 2025-05-17 20:33 ` softworkz . 2025-05-16 23:09 ` [FFmpeg-devel] [PATCH 4/4] Revert "fftools/resources: Add resource manager files with build-time compression" Marton Balint 2025-06-14 14:43 ` Kacper Michajlow 2025-06-14 16:11 ` Marton Balint
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20250516231041.4640-3-cus@passwd.hu \ --to=cus@passwd.hu \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git