]> git.lyx.org Git - features.git/blob - development/autotests/useSystemFonts.pl
Cmake export tests: Make test fail if there is some non-existant sub-file
[features.git] / development / autotests / useSystemFonts.pl
1 #! /usr/bin/env perl
2 # -*- mode: perl; -*-
3 #
4 # file useSystemFonts.pl
5 # 1.) Copies lyx-files to another location
6 # 2.) While copying,
7 #   2a.) searches for relative references to files and
8 #        replaces them with absolute ones
9 #   2b.) In order to be able to compile with luatex or xetex
10 #        changes default fonts to use non-tex-fonts instead
11 #
12 # Syntax: perl useSystemFonts.pl sourceFile destFile format
13 # Each param represents a path to a file
14 # sourceFile: full path to a lyx file
15 # destFile: destination path
16 #   Each subdocument will be copied into a subdirectory of dirname(destFile)
17 # format: any string of the form '[a-zA-Z0-9]+', e.g. pdf5
18 #
19 # This file is free software; you can redistribute it and/or
20 # modify it under the terms of the GNU General Public
21 # License as published by the Free Software Foundation; either
22 # version 2 of the License, or (at your option) any later version.
23 #
24 # This software is distributed in the hope that it will be useful,
25 # but WITHOUT ANY WARRANTY; without even the implied warranty of
26 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
27 # General Public License for more details.
28 #
29 # You should have received a copy of the GNU General Public
30 # License along with this software; if not, write to the Free Software
31 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
32 #
33 # Copyright (c) 2013 Kornel Benko <kornel@lyx.org>
34 #           (c) 2013 Scott Kostyshak <skotysh@lyx.org>
35
36 use strict;
37
38 BEGIN {
39   use File::Spec;
40   my $p = File::Spec->rel2abs( __FILE__ );
41   $p =~ s/[\/\\]?[^\/\\]+$//;
42   unshift(@INC, "$p");
43 }
44 use File::Basename;
45 use File::Path;
46 use File::Copy "cp";
47 use File::Temp qw/ :POSIX /;
48 use lyxStatus;
49
50 # Prototypes
51 sub printCopiedDocuments($);
52 sub interpretedCopy($$$$);
53 sub copyFoundSubdocuments($);
54 sub copyJob($$);
55 sub isrelativeFix($$$);
56 sub isrelative($$$);
57 sub createTemporaryFileName($$);
58 sub copyJobPending($$);
59 sub addNewJob($$$$$);
60 sub addFileCopyJob($$$$);
61 sub getNewNameOf($$);
62 sub getlangs($$);
63 sub simplifylangs($);
64 sub getLangEntry();
65
66 # convert lyx file to be compilable with xetex
67
68 my ($source, $dest, $format, $fontT, $encodingT, $languageFile, $rest) = @ARGV;
69 my %encodings = ();      # Encoding with TeX fonts, depending on language tag
70
71 diestack("Too many arguments") if (defined($rest));
72 diestack("Sourcefilename not defined") if (! defined($source));
73 diestack("Destfilename not defined") if (! defined($dest));
74 diestack("Format (e.g. pdf4) not defined") if (! defined($format));
75 diestack("Font type (e.g. texF) not defined") if (! defined($fontT));
76 diestack("Encoding (e.g. ascii) not defined") if (! defined($encodingT));
77
78 $source = File::Spec->rel2abs($source);
79 $dest = File::Spec->rel2abs($dest);
80
81 my %font = ();
82 my $lang = "main";
83 if ($source =~ /\/([a-z][a-z](_[A-Z][A-Z])?)[\/_]/) {
84   $lang = $1;
85 }
86
87 my $inputEncoding = undef;
88 if ($fontT eq "systemF") {
89   if ($lang =~ /^(ru|uk|sk|el)$/) {
90     $font{roman} = "DejaVu Serif";
91     $font{sans} = "DejaVu Sans";
92     $font{typewriter} = "DejaVu Sans Mono";
93   }
94   elsif ($lang =~ /^(he)$/) {
95     $font{roman} = "FreeSans";
96     $font{sans} = "FreeSans";
97     $font{typewriter} = "FreeSans";
98   }
99   elsif ($lang eq "fa") {
100     $font{roman} = "FreeFarsi";
101     $font{sans} = "FreeFarsi";
102     $font{typewriter} = "FreeFarsi Monospace";
103   }
104   elsif ($lang eq "zh_CN") {
105     $font{roman} = "WenQuanYi Micro Hei";
106     $font{sans} = "WenQuanYi Micro Hei";
107     $font{typewriter} = "WenQuanYi Micro Hei";
108   }
109   elsif ($lang eq "ko" ) {
110     $font{roman} = "NanumGothic"; # NanumMyeongjo, NanumGothic Eco, NanumGothicCoding
111     $font{sans} = "NanumGothic";
112     $font{typewriter} = "NanumGothic";
113   }
114   elsif ($lang eq "ar" ) {
115     # available in 'fonts-sil-scheherazade' package
116     $font{roman} = "Scheherazade";
117     $font{sans} = "Scheherazade";
118     $font{typewriter} = "Scheherazade";
119   }
120   else {
121     # default system fonts
122     $font{roman} = "FreeSerif";
123     $font{sans} = "FreeSans";
124     $font{typewriter} = "FreeMono";
125   }
126 }
127 elsif ($encodingT ne "default") {
128   # set input encoding to the requested value
129   $inputEncoding = {
130         "search" => '.*', # this will be substituted from '\inputencoding'-line
131         "out" => $encodingT,
132     };
133 }
134 elsif (0) { # set to '1' to enable setting of inputencoding
135   # use tex font here
136   my %encoding = ();
137   if (defined($languageFile)) {
138     # The 2 lines below does not seem to have any effect
139     #&getlangs($languageFile, \%encoding);
140     #&simplifylangs(\%encoding);
141   }
142   if ($format =~ /^(pdf4)$/) { # xelatex
143     # set input encoding to 'ascii' always
144     $inputEncoding = {
145       "search" => '.*', # this will be substituted from '\inputencoding'-line
146       "out" => "ascii",
147     };
148   }
149   elsif ($format =~ /^(dvi3|pdf5)$/) { # (dvi)?lualatex
150     # when to set input encoding to 'ascii'?
151     if (defined($encoding{$lang})) {
152       $inputEncoding = {
153         "search" => '.*', # this will be substituted from '\inputencoding'-line
154         "out" => $encoding{$lang},
155       };
156     }
157   }
158 }
159
160 my $sourcedir = dirname($source);
161 my $destdir = dirname($dest);
162 if (! -d $destdir) {
163   diestack("could not make dir \"$destdir\"") if (! mkpath $destdir);
164 }
165
166 my $destdirOfSubdocuments;
167 {
168   my ($name, $pat, $suffix) = fileparse($source, qr/\.[^.]*/);
169   my $ext = $format . "_$lang";
170   $destdirOfSubdocuments = "$destdir/tmp_$ext" . "_$name"; # Global var, something TODO here
171 }
172
173 if(-d $destdirOfSubdocuments) {
174   rmtree($destdirOfSubdocuments);
175 }
176 mkpath($destdirOfSubdocuments); #  for possibly included files
177
178 my %IncludedFiles = ();
179 my %type2hash = (
180   "copy_only" => "copyonly",
181   "interpret" => "interpret");
182
183 addNewJob($source, $dest, "interpret", {}, \%IncludedFiles);
184
185 copyFoundSubdocuments(\%IncludedFiles);
186
187 #printCopiedDocuments(\%IncludedFiles);
188
189 exit(0);
190 ###########################################################
191
192 sub printCopiedDocuments($)
193 {
194   my ($rFiles) = @_;
195   for my $k (keys %{$rFiles}) {
196     my $rJob = $rFiles->{$k};
197     for my $j ( values %type2hash) {
198       if (defined($rJob->{$j})) {
199         print "$j: $k->$rJob->{$j}, " . $rJob->{$j . "copied"} . "\n";
200       }
201     }
202   }
203 }
204
205 sub interpretedCopy($$$$)
206 {
207   my ($source, $dest, $destdirOfSubdocuments, $rFiles) = @_;
208   my $sourcedir = dirname($source);
209   my $res = 0;
210
211   diestack("could not read \"$source\"") if (!open(FI, $source));
212   diestack("could not write \"$dest\"") if (! open(FO, '>', $dest));
213
214   initLyxStack(\%font, $fontT, $inputEncoding);
215
216   while (my $l = <FI>) {
217     $l =~ s/[\n\r]+$//;
218     #chomp($l);
219     my $rStatus = checkLyxLine($l);
220     if ($rStatus->{found}) {
221       my $rF = $rStatus->{result};
222       if ($rStatus->{"filetype"} eq "replace_only") {
223         # e.g. if no files involved (font chage etc)
224         $l = join('', @{$rF});
225       }
226       else {
227         my $filelist = $rStatus->{filelist};
228         my $fidx = $rStatus->{fileidx};
229         my $separator = $rStatus->{"separator"};
230         my $foundrelative = 0;
231         for my $f (@{$filelist}) {
232           my @isrel = isrelative($f,
233                                   $sourcedir,
234                                   $rStatus->{ext});
235           if ($isrel[0]) {
236             $foundrelative = 1;
237             my $ext = $isrel[1];
238             if ($rStatus->{"filetype"} eq "prefix_only") {
239               $f = getNewNameOf("$sourcedir/$f", $rFiles);
240             }
241             else {
242               my ($newname, $res1);
243               ($newname, $res1) = addFileCopyJob("$sourcedir/$f$ext",
244                                                   "$destdirOfSubdocuments",
245                                                   $rStatus->{"filetype"},
246                                                   $rFiles);
247               print "Added ($res1) file \"$sourcedir/$f$ext\" to be copied to \"$newname\"\n";
248               if ($ext ne "") {
249                 $newname =~ s/$ext$//;
250               }
251               $f = $newname;
252               $res += $res1;
253             }
254           }
255           else {
256             if (! -e "$f") {
257               # Non relative (e.g. with absolute path) file should exist
258               print "File $f not found\n";
259               diestack("");
260             }
261           }
262         }
263         if ($foundrelative) {
264           $rF->[$fidx] = join($separator, @{$filelist});
265           $l = join('', @{$rF});
266         }
267       }
268     }
269     print FO "$l\n";
270   }
271   close(FI);
272   close(FO);
273
274   closeLyxStack();
275   return($res);
276 }
277
278 sub copyFoundSubdocuments($)
279 {
280   my ($rFiles) = @_;
281   my $res = 0;
282   do {
283     $res = 0;
284     my %copylist = ();
285
286     for my $filename (keys  %{$rFiles}) {
287       next if (! copyJobPending($filename, $rFiles));
288       $copylist{$filename} = 1;
289     }
290     for my $f (keys %copylist) {
291       # Second loop needed, because here $rFiles may change
292       my ($res1, @destfiles) = copyJob($f, $rFiles);
293       $res += $res1;
294       for my $destfile (@destfiles) {
295         print "res1 = $res1 for \"$f\" to be copied to $destfile\n";
296       }
297     }
298   } while($res > 0);            #  loop, while $rFiles changed
299 }
300
301 sub copyJob($$)
302 {
303   my ($source, $rFiles) = @_;
304   my $sourcedir = dirname($source);
305   my $res = 0;
306   my @dest = ();
307
308   for my $k (values %type2hash) {
309     if ($rFiles->{$source}->{$k}) {
310       if (! $rFiles->{$source}->{$k . "copied"}) {
311         $rFiles->{$source}->{$k . "copied"} = 1;
312         my $dest = $rFiles->{$source}->{$k};
313         push(@dest, $dest);
314         if ($k eq "copyonly") {
315           diestack("Could not copy \"$source\" to \"$dest\"") if (! cp($source, $dest));
316         }
317         else {
318           interpretedCopy($source, $dest, $destdirOfSubdocuments, $rFiles);
319         }
320         $res += 1;
321       }
322     }
323   }
324   return($res, @dest);
325 }
326
327 # Trivial check
328 sub isrelativeFix($$$)
329 {
330   my ($f, $sourcedir, $ext) = @_;
331
332   return(1, $ext) if  (-e "$sourcedir/$f$ext");
333   return(0,0);
334 }
335
336 sub isrelative($$$)
337 {
338   my ($f, $sourcedir, $ext) = @_;
339
340   if (ref($ext) eq "ARRAY") {
341     for my $ext2 (@{$ext}) {
342       my @res = isrelativeFix($f, $sourcedir, $ext2);
343       if ($res[0]) {
344         return(@res);
345       }
346     }
347     return(0,0);
348   }
349   else {
350     return(isrelativeFix($f, $sourcedir, $ext));
351   }
352 }
353
354 sub createTemporaryFileName($$)
355 {
356   my ($source, $destdir) = @_;
357
358   # get the basename to be used for the template
359   my ($name, $path, $suffix) = fileparse($source, qr/\.[^.]*/);
360   #print "source = $source, name = $name, path = $path, suffix = $suffix\n";
361   my $template = "xx_$name" . "_";
362   my $fname = File::Temp::tempnam($destdir, $template);
363
364   # Append extension from source
365   if ($suffix ne "") {
366     $fname .= "$suffix";
367   }
368   return($fname);
369 }
370
371 # Check, if file not copied yet
372 sub copyJobPending($$)
373 {
374   my ($f, $rFiles) = @_;
375   for my $t (values %type2hash) {
376     if (defined($rFiles->{$f}->{$t})) {
377       return 1 if (! $rFiles->{$f}->{$t . "copied"});
378     }
379   }
380   return 0;
381 }
382
383 sub addNewJob($$$$$)
384 {
385   my ($source, $newname, $hashname, $rJob, $rFiles) = @_;
386
387   $rJob->{$hashname} = $newname;
388   $rJob->{$hashname . "copied"} = 0;
389   $rFiles->{$source} = $rJob;
390 }
391
392 sub addFileCopyJob($$$$)
393 {
394   my ($source, $destdirOfSubdocuments, $filetype, $rFiles) = @_;
395   my ($res, $newname) = (0, undef);
396   my $rJob = $rFiles->{$source};
397
398   my $hashname = $type2hash{$filetype};
399   if (! defined($hashname)) {
400     diestack("unknown filetype \"$filetype\"");
401   }
402   if (!defined($rJob->{$hashname})) {
403     addNewJob($source,
404                createTemporaryFileName($source, $destdirOfSubdocuments),
405                "$hashname", $rJob, $rFiles);
406     $res = 1;
407   }
408   $newname = $rJob->{$hashname};
409   return($newname, $res);
410 }
411
412 sub getNewNameOf($$)
413 {
414   my ($f, $rFiles) = @_;
415   my $resultf = $f;
416
417   if (defined($rFiles->{$f})) {
418     for my $t (values %type2hash) {
419       if (defined($rFiles->{$f}->{$t})) {
420         $resultf = $rFiles->{$f}->{$t};
421         last;
422       }
423     }
424   }
425   return($resultf);
426 }
427
428 sub getlangs($$)
429 {
430   my ($languagefile, $rencoding) = @_;
431
432   if (open(FI, $languagefile)) {
433     while (my $l = <FI>) {
434       if ($l =~ /^Language/) {
435         my ($lng, $enc) = &getLangEntry();
436         if (defined($lng)) {
437           $rencoding->{$lng} = $enc;
438         }
439       }
440     }
441     close(FI);
442   }
443 }
444
445 sub simplifylangs($)
446 {
447   my ($rencoding) = @_;
448   my $base = "";
449   my $enc = "";
450   my $differ = 0;
451   my @klist = ();
452   my @klist2 = ();
453   for my $k (reverse sort keys %{$rencoding}) {
454     my @tag = split('_', $k);
455     if ($tag[0] eq $base) {
456       push(@klist, $k);
457       if ($rencoding->{$k} ne $enc) {
458         $differ = 1;
459       }
460     }
461     else {
462       # new base, check that old base was OK
463       if ($base ne "") {
464         if ($differ == 0) {
465           $rencoding->{$base} = $enc;
466           push(@klist2, @klist);
467         }
468       }
469       @klist = ($k);
470       $base = $tag[0];
471       $enc = $rencoding->{$k};
472       $differ = 0;
473     }
474   }
475   if ($base ne "") {
476     # close handling for last entry too
477     if ($differ == 0) {
478       $rencoding->{$base} = $enc;
479       push(@klist2, @klist);
480     }
481   }
482   for my $k (@klist2) {
483     delete($rencoding->{$k});
484   }
485 }
486
487 sub getLangEntry()
488 {
489   my ($lng, $enc) = (undef, undef);
490   while (my $l = <FI>) {
491     chomp($l);
492     if ($l =~ /^\s*Encoding\s+([^ ]+)\s*$/) {
493       $enc = $1;
494     }
495     elsif ($l =~ /^\s*LangCode\s+([^ ]+)\s*$/) {
496       $lng = $1;
497     }
498     elsif ($l =~ /^\s*End\s*$/) {
499       last;
500     }
501   }
502   if (defined($lng) && defined($enc)) {
503     return($lng, $enc);
504   }
505   else {
506     return(undef, undef);
507   }
508 }