summaryrefslogtreecommitdiff
path: root/source/tools
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2016-04-19 16:54:52 +0200
committerTor Andersson <tor.andersson@artifex.com>2016-05-13 11:42:00 +0200
commitb994d72069d761c8645cc6a0638bde21109c0b40 (patch)
tree2d95cbdb501d81b49210d6c115b51bb5fa9c62a7 /source/tools
parente67981e781fd087d7cd19e2373b3e054375e82ad (diff)
downloadmupdf-b994d72069d761c8645cc6a0638bde21109c0b40.tar.xz
Introduce a general output context.
This makes it possible to redirect standard out and standard error output streams to output streams of your liking. This means that now you can, in gdb, type: (gdb) call pdf_print_obj(ctx, fz_stdout(ctx), obj, 0) (gdb) call fflush(0) or when dealing with an unresolved indirect reference: (gdb) call pdf_print_obj(ctx, fz_stdout(ctx), pdf_resolve_indirect(ctx, ref), 0) (gdb) call fflush(0)
Diffstat (limited to 'source/tools')
-rw-r--r--source/tools/mudraw.c4
-rw-r--r--source/tools/pdfinfo.c2
-rw-r--r--source/tools/pdfpages.c2
-rw-r--r--source/tools/pdfshow.c4
4 files changed, 6 insertions, 6 deletions
diff --git a/source/tools/mudraw.c b/source/tools/mudraw.c
index 2717b5f0..6523380b 100644
--- a/source/tools/mudraw.c
+++ b/source/tools/mudraw.c
@@ -698,7 +698,7 @@ static void dodrawpage(fz_context *ctx, fz_page *page, fz_display_list *list, in
fz_output *out;
if (!strcmp(output, "-"))
- out = fz_new_output_with_file_ptr(ctx, stdout, 0);
+ out = fz_stdout(ctx);
else
{
sprintf(buf, output, pagenum);
@@ -1606,7 +1606,7 @@ int mudraw_main(int argc, char **argv)
out = fz_new_output_with_path(ctx, output, 0);
}
else
- out = fz_new_output_with_file_ptr(ctx, stdout, 0);
+ out = fz_stdout(ctx);
timing.count = 0;
timing.total = 0;
diff --git a/source/tools/pdfinfo.c b/source/tools/pdfinfo.c
index da500f04..0d30b22a 100644
--- a/source/tools/pdfinfo.c
+++ b/source/tools/pdfinfo.c
@@ -1073,7 +1073,7 @@ int pdfinfo_main(int argc, char **argv)
ret = 0;
fz_try(ctx)
{
- out = fz_new_output_with_file_ptr(ctx, stdout, 0);
+ out = fz_stdout(ctx);
pdfinfo_info(ctx, out, filename, password, show, &argv[fz_optind], argc-fz_optind);
}
fz_catch(ctx)
diff --git a/source/tools/pdfpages.c b/source/tools/pdfpages.c
index f13b5541..7f3577da 100644
--- a/source/tools/pdfpages.c
+++ b/source/tools/pdfpages.c
@@ -241,7 +241,7 @@ int pdfpages_main(int argc, char **argv)
ret = 0;
fz_try(ctx)
{
- out = fz_new_output_with_file_ptr(ctx, stdout, 0);
+ out = fz_stdout(ctx);
ret = pdfpages_pages(ctx, out, filename, password, &argv[fz_optind], argc-fz_optind);
}
fz_catch(ctx)
diff --git a/source/tools/pdfshow.c b/source/tools/pdfshow.c
index 98a374b1..988663a4 100644
--- a/source/tools/pdfshow.c
+++ b/source/tools/pdfshow.c
@@ -197,7 +197,7 @@ static void showoutline(void)
fz_var(out);
fz_try(ctx)
{
- out = fz_new_output_with_file_ptr(ctx, stdout, 0);
+ out = fz_stdout(ctx);
fz_print_outline(ctx, out, outline);
}
fz_always(ctx)
@@ -245,7 +245,7 @@ int pdfshow_main(int argc, char **argv)
if (output)
out = fz_new_output_with_path(ctx, output, 0);
else
- out = fz_new_output_with_file_ptr(ctx, stdout, 0);
+ out = fz_stdout(ctx);
fz_var(doc);
fz_try(ctx)