Skip to content
This repository was archived by the owner on Mar 6, 2023. It is now read-only.

Commit 58d6ba1

Browse files
committed
kpse find_file and lookup also search in --output-directory
git-svn-id: https://serveur-svn.lri.fr/svn/modhel/luatex/trunk@7523 0b2b3880-5936-4365-a048-eb17d2e5a6bf
1 parent 6472bd7 commit 58d6ba1

File tree

5 files changed

+117
-9
lines changed

5 files changed

+117
-9
lines changed

manual/luatex-tex.tex

+7
Original file line numberDiff line numberDiff line change
@@ -2707,6 +2707,9 @@ \subsubsection{\type {getlocallevel}}
27072707
This is used for the size argument of the formats \type {pk}, \type {gf}, and
27082708
\type {bitmap font}. \stopitemize
27092709
2710+
If \type {--output-directory} is specified and the value is a relative pathname,
2711+
the file is searched first here and if it fails it will be searched in the standard tree.
2712+
27102713
\stopsubsection
27112714
27122715
\startsubsection[title={\type {lookup}}]
@@ -2741,6 +2744,10 @@ \subsubsection{\type {getlocallevel}}
27412744
\LL
27422745
\stoptabulate
27432746
2747+
If \type {--output-directory} is specified and the value is a relative pathname,
2748+
the file is searched first here and then in the standard tree.
2749+
2750+
27442751
\stopsubsection
27452752
27462753
\startsubsection[title={\type {init_prog}}]

manual/luatex.pdf

424 Bytes
Binary file not shown.

source/texk/web2c/luatexdir/ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2022-04-25 Luigi Scarso <[email protected]>
2+
* kpse find_file and lookup also search in --output-directory
3+
4+
2022-04-21 Luigi Scarso <[email protected]>
5+
* Wrong array size extended node_fields_whatsit_pdf_action (HH)
6+
17
2022-04-18 Luigi Scarso <[email protected]>
28
* Fix for Bug: Null-byte in csname not handled correctly (thanks to H. Menke)
39

source/texk/web2c/luatexdir/lua/lkpselib.c

+103-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* lkpselib.c
22
3-
Copyright 2006-2008 Taco Hoekwater <[email protected]>
3+
Copyright 2006-2008 Taco Hoekwater <[email protected]>
44
55
This file is part of LuaTeX.
66
@@ -38,6 +38,7 @@
3838
#include <kpathsea/str-list.h>
3939
#include <kpathsea/tex-file.h>
4040
#include <kpathsea/paths.h>
41+
#include <kpathsea/absolute.h>
4142

4243

4344
static const unsigned filetypes[] = {
@@ -212,13 +213,39 @@ static int find_file(lua_State * L)
212213
ftype == kpse_gf_format || ftype == kpse_any_glyph_format) {
213214
/* ret.format, ret.name, ret.dpi */
214215
kpse_glyph_file_type ret;
215-
lua_pushstring(L, kpse_find_glyph(st, (unsigned) mexist, ftype, &ret));
216+
if (output_directory && !kpse_absolute_p(st, false)) {
217+
char *res ;
218+
char *ftemp = concat3(output_directory, DIR_SEP_STRING, st);
219+
res = kpse_find_glyph(ftemp, 0, ftype, &ret);
220+
if (res && strlen(res)>0) {
221+
lua_pushstring(L, res);
222+
} else {
223+
lua_pushstring(L, kpse_find_glyph(st, (unsigned) mexist, ftype, &ret));
224+
}
225+
xfree(res);
226+
xfree(ftemp);
227+
} else {
228+
lua_pushstring(L, kpse_find_glyph(st, (unsigned) mexist, ftype, &ret));
229+
}
216230
} else {
217231
if (mexist > 0)
218232
mexist = 1;
219233
if (mexist < 0)
220234
mexist = 0;
221-
lua_pushstring(L, kpse_find_file(st, ftype, mexist));
235+
if (output_directory && !kpse_absolute_p(st, false)) {
236+
char *res ;
237+
char *ftemp = concat3(output_directory, DIR_SEP_STRING, st);
238+
res = kpse_find_file(ftemp, ftype, 0);
239+
if (res && strlen(res)>0) {
240+
lua_pushstring(L, res);
241+
} else {
242+
lua_pushstring(L, kpse_find_file(st, ftype, mexist));
243+
}
244+
xfree(res);
245+
xfree(ftemp);
246+
} else {
247+
lua_pushstring(L, kpse_find_file(st, ftype, mexist));
248+
}
222249
}
223250
return 1;
224251
}
@@ -249,13 +276,39 @@ static int lua_kpathsea_find_file(lua_State * L)
249276
if (ftype == kpse_pk_format || ftype == kpse_gf_format || ftype == kpse_any_glyph_format) {
250277
/* ret.format, ret.name, ret.dpi */
251278
kpse_glyph_file_type ret;
252-
lua_pushstring(L, kpathsea_find_glyph(*kp, st, (unsigned) mexist, ftype, &ret));
279+
if (output_directory && !kpse_absolute_p(st, false)) {
280+
char *res ;
281+
char *ftemp = concat3(output_directory, DIR_SEP_STRING, st);
282+
res = kpathsea_find_glyph(*kp, ftemp, (unsigned) mexist, ftype, &ret) ;
283+
if (res && strlen(res)>0) {
284+
lua_pushstring(L, res);
285+
} else {
286+
lua_pushstring(L, kpathsea_find_glyph(*kp, st, (unsigned) mexist, ftype, &ret));
287+
}
288+
xfree(res);
289+
xfree(ftemp);
290+
} else {
291+
lua_pushstring(L, kpathsea_find_glyph(*kp, st, (unsigned) mexist, ftype, &ret));
292+
}
253293
} else {
254294
if (mexist > 0)
255295
mexist = 1;
256296
if (mexist < 0)
257297
mexist = 0;
258-
lua_pushstring(L, kpathsea_find_file(*kp, st, ftype, mexist));
298+
if (output_directory && !kpse_absolute_p(st, false)) {
299+
char *res ;
300+
char *ftemp = concat3(output_directory, DIR_SEP_STRING, st);
301+
res = kpathsea_find_file(*kp, ftemp, ftype, mexist);
302+
if (res && strlen(res)>0) {
303+
lua_pushstring(L, res);
304+
} else {
305+
lua_pushstring(L, kpathsea_find_file(*kp, st, ftype, mexist));
306+
}
307+
xfree(res);
308+
xfree(ftemp);
309+
} else {
310+
lua_pushstring(L, kpathsea_find_file(*kp, st, ftype, mexist));
311+
}
259312
}
260313
return 1;
261314

@@ -631,11 +684,53 @@ static int do_lua_kpathsea_lookup(lua_State * L, kpathsea kpse, int idx)
631684
}
632685
}
633686
user_path = kpathsea_path_expand(kpse, user_path);
634-
if (show_all) {
687+
if (output_directory && !kpse_absolute_p(user_path , false)) {
688+
string ftemp = concat3(output_directory, DIR_SEP_STRING, user_path);
689+
if (show_all) {
690+
string *ret_list1;
691+
string *ret_list2;
692+
unsigned l1 = 0;
693+
unsigned l2 = 0;
694+
ret_list1 = kpathsea_all_path_search(kpse, ftemp, name);
695+
ret_list2 = kpathsea_all_path_search(kpse, user_path, name);
696+
l1 = 0;
697+
while (ret_list1[l1])
698+
l1++;
699+
l2 = 0;
700+
while (ret_list2[l2])
701+
l2++;
702+
ret_list = xmalloc((l1+l2+1)*sizeof(string));
703+
l1 = 0;
704+
while (ret_list1[l1]) {
705+
ret_list[l1] = ret_list1[l1];
706+
l1++;
707+
}
708+
l2 = 0;
709+
while (ret_list2[l2]) {
710+
ret_list[l1] = ret_list2[l2];
711+
l1++;
712+
l2++;
713+
}
714+
ret_list[l1] = NULL;
715+
xfree(ret_list1);
716+
xfree(ret_list2);
717+
} else {
718+
string ret1;
719+
string ret2;
720+
ret1 = kpathsea_path_search(kpse, ftemp, name, must_exist);
721+
ret2 = kpathsea_path_search(kpse, user_path, name, must_exist);
722+
ret = concat3(ret1,NULL,ret2);
723+
xfree(ret1);
724+
xfree(ret2);
725+
}
726+
xfree(ftemp);
727+
} else {
728+
if (show_all) {
635729
ret_list = kpathsea_all_path_search(kpse, user_path, name);
636-
} else {
730+
} else {
637731
ret = kpathsea_path_search(kpse, user_path, name, must_exist);
638-
}
732+
}
733+
}
639734
free(user_path);
640735
} else {
641736
/* No user-specified search path, check user format or guess from NAME. */
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#ifndef luatex_svn_revision_h
22
#define luatex_svn_revision_h
3-
#define luatex_svn_revision 7522
3+
#define luatex_svn_revision 7523
44
#endif

0 commit comments

Comments
 (0)