|
1 | 1 | /* lkpselib.c
|
2 | 2 |
|
3 |
| - Copyright 2006-2008 Taco Hoekwater <[email protected]> |
| 3 | + Copyright 2006-2008 Taco Hoekwater <[email protected]> |
4 | 4 |
|
5 | 5 | This file is part of LuaTeX.
|
6 | 6 |
|
|
38 | 38 | #include <kpathsea/str-list.h>
|
39 | 39 | #include <kpathsea/tex-file.h>
|
40 | 40 | #include <kpathsea/paths.h>
|
| 41 | +#include <kpathsea/absolute.h> |
41 | 42 |
|
42 | 43 |
|
43 | 44 | static const unsigned filetypes[] = {
|
@@ -212,13 +213,39 @@ static int find_file(lua_State * L)
|
212 | 213 | ftype == kpse_gf_format || ftype == kpse_any_glyph_format) {
|
213 | 214 | /* ret.format, ret.name, ret.dpi */
|
214 | 215 | 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 | + } |
216 | 230 | } else {
|
217 | 231 | if (mexist > 0)
|
218 | 232 | mexist = 1;
|
219 | 233 | if (mexist < 0)
|
220 | 234 | 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 | + } |
222 | 249 | }
|
223 | 250 | return 1;
|
224 | 251 | }
|
@@ -249,13 +276,39 @@ static int lua_kpathsea_find_file(lua_State * L)
|
249 | 276 | if (ftype == kpse_pk_format || ftype == kpse_gf_format || ftype == kpse_any_glyph_format) {
|
250 | 277 | /* ret.format, ret.name, ret.dpi */
|
251 | 278 | 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 | + } |
253 | 293 | } else {
|
254 | 294 | if (mexist > 0)
|
255 | 295 | mexist = 1;
|
256 | 296 | if (mexist < 0)
|
257 | 297 | 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 | + } |
259 | 312 | }
|
260 | 313 | return 1;
|
261 | 314 |
|
@@ -631,11 +684,53 @@ static int do_lua_kpathsea_lookup(lua_State * L, kpathsea kpse, int idx)
|
631 | 684 | }
|
632 | 685 | }
|
633 | 686 | 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) { |
635 | 729 | ret_list = kpathsea_all_path_search(kpse, user_path, name);
|
636 |
| - } else { |
| 730 | + } else { |
637 | 731 | ret = kpathsea_path_search(kpse, user_path, name, must_exist);
|
638 |
| - } |
| 732 | + } |
| 733 | + } |
639 | 734 | free(user_path);
|
640 | 735 | } else {
|
641 | 736 | /* No user-specified search path, check user format or guess from NAME. */
|
|
0 commit comments