Annotation of loncom/interface/printout.pl, revision 1.114
1.1 sakharuk 1: #!/usr/bin/perl
1.37 albertel 2: # CGI-script to run LaTeX, dvips, ps2ps, ps2pdf etc.
3: #
4: #
5: # Copyright Michigan State University Board of Trustees
6: #
7: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
8: #
9: # LON-CAPA is free software; you can redistribute it and/or modify
10: # it under the terms of the GNU General Public License as published by
11: # the Free Software Foundation; either version 2 of the License, or
12: # (at your option) any later version.
13: #
14: # LON-CAPA is distributed in the hope that it will be useful,
15: # but WITHOUT ANY WARRANTY; without even the implied warranty of
16: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17: # GNU General Public License for more details.
18: #
19: # You should have received a copy of the GNU General Public License
20: # along with LON-CAPA; if not, write to the Free Software
21: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22: #
23: # /home/httpd/html/adm/gpl.txt
24: #
25: # http://www.lon-capa.org/
26: #
27:
1.39 sakharuk 28: use lib '/home/httpd/lib/perl';
1.76 albertel 29: use LONCAPA::loncgi;
1.38 sakharuk 30: use File::Path;
1.88 foxr 31: use File::Basename;
1.111 foxr 32: use File::Copy;
1.6 sakharuk 33: use IO::File;
1.7 sakharuk 34: use Image::Magick;
1.97 albertel 35: use Apache::lonhtmlcommon();
1.80 albertel 36: use Apache::lonnet;
1.97 albertel 37: use Apache::loncommon();
1.51 albertel 38: use Apache::lonlocal;
1.97 albertel 39: use Apache::lonmsg();
1.77 foxr 40: use LONCAPA::Enrollment;
1.47 sakharuk 41:
1.59 albertel 42: use strict;
1.77 foxr 43:
1.81 foxr 44:
1.77 foxr 45: # Determine if a user is operating as a student for this course/domain.
46: #Parameters:
1.92 albertel 47: # none
1.77 foxr 48: #Implicit:
49: # $env{request.role} contains the role under which this user operated this
50: # this request.
51: sub is_student {
1.92 albertel 52: return ($env{'request.role'}=~/^st\./);
1.77 foxr 53: }
54:
55: #
56: # Debugging: Dump the environment for debugging.
57: #
58: sub dumpenv {
1.84 albertel 59: print "<br />-------------------<br />";
1.77 foxr 60: foreach my $key (sort (keys %env)) {
1.84 albertel 61: print "<br />$key -> $env{$key}";
1.77 foxr 62: }
1.84 albertel 63: print "<br />-------------------<br />";
1.77 foxr 64: }
65:
66: #
67: # This sub sends a message to the appropriate person if there was an error
68: # rendering the latex At present, there's only one case to consider:
69: # a student printing inside a course results in messages to the course coordinator.
70: #Parmaeters:
71: # identifier - The unique identifier of this cgi request.
1.81 foxr 72: # badresource- Filepath to most likely failing
1.77 foxr 73: # logfile - The contents of the log file (included in the message).
74: # texfile - reference to an array containing the LaTeX input file
75: # (included in the message).
76: #Implicit inputs:
77: # From the environment:
78: # cgi.$identifier.user - User doing the printing.
79: # cgi.$identifier.domain - Domain the user is logged in on with printing.
80: # cgi.$identifier.courseid - Id of the course (if this is a course).
81: # cgi.$identifier.coursedom- Domain in which course was constituted.
82: # cgi.$identifier.resources - List of resource URL's for which the print
83: # was attempted.
84: #
85: sub send_error_mail {
1.81 foxr 86: my ($identifier, $badresource, $logfile, $texfile) = @_;
1.77 foxr 87: my $user = $env{"cgi.$identifier.user"};
88: my $domain = $env{"cgi.$identifier.domain"};
89: my $courseid = $env{"cgi.$identifier.courseid"};
90: my $coursedom= $env{"cgi.$identifier.coursedom"};
91: my $resources= $env{"cgi.$identifier.resources"};
92:
1.81 foxr 93: # resource file->URL
94: #
95: my $badurl = &Apache::lonnet::declutter($badresource);
96:
97: # &dumpenv();
1.77 foxr 98:
99:
100:
101: # Only continue if there is a user, domain, courseid, course domain
102: # and resources:
103:
104: if(defined($user) && defined($domain) && defined($courseid) &&
105: defined($coursedom) && defined($resources) ){
106:
107: # Only mail if the conditions are ripe for it:
108: # The user is a student in the course:
109: #
110:
1.92 albertel 111: if (&is_student()) {
1.77 foxr 112: # build the subject and message body:
1.84 albertel 113: # print "sending message to course coordinators.<br />";
1.81 foxr 114:
115: # Todo: Convert badurl into a url from file path:
116:
117: my $subject = "Error [$badurl] Print failed for $user".'@'.$domain;
1.77 foxr 118: my $message .= "Print failed to render LaTeX for $user".'@'."$domain\n";
119: $message .= " User was attempting to print: \n";
1.91 albertel 120: foreach my $resource (split(/:/,$resources)) {
121: $message .= " $resource\n";
122: }
1.77 foxr 123: $message .= "--------------------LaTeX logfile:------------ \n";
124: $message .= $logfile;
125: $message .= "-----------------LaTeX source file: ------------\n";
126:
127: foreach my $line (@$texfile) {
128: $message .= "$line\n";
129: }
1.81 foxr 130: my (undef, %receivers) = &Apache::lonfeedback::decide_receiver(undef, 0,
131: 1,1,1);
1.84 albertel 132: # print "<br /> sending...section: $env{'request.course.sec'}";
1.81 foxr 133: foreach my $dest (keys %receivers) {
1.84 albertel 134: # print "<br /> dest is $dest";
1.77 foxr 135: my @destinfo = split(/:/,$dest);
136: my $user = $destinfo[0];
137: my $dom = $destinfo[1];
138:
139: &Apache::lonmsg::user_normal_msg($user, $dom,
140: $subject, $message);
141:
142: # No point in looking at the return status as there's no good
143: # error action I can think of right now (log maybe?).
144: }
145: }
146: }
147: }
148:
1.49 albertel 149: $|=1;
1.39 sakharuk 150: if (! &LONCAPA::loncgi::check_cookie_and_load_env()) {
151: print <<END;
152: Content-type: text/html
153:
154: <html>
155: <head><title>Bad Cookie</title></head>
156: <body>
1.40 sakharuk 157: Your cookie information is incorrect.
1.39 sakharuk 158: </body>
159: </html>
160: END
161: return;
162: }
1.51 albertel 163: &Apache::lonlocal::get_language_handle();
164: &Apache::loncommon::content_type(undef,'text/html');
1.101 albertel 165:
166: print(&Apache::loncommon::start_page('Creating PDF'));
1.39 sakharuk 167:
1.40 sakharuk 168: my $identifier = $ENV{'QUERY_STRING'};
1.76 albertel 169: my $texfile = $env{'cgi.'.$identifier.'.file'};
170: my $laystyle = $env{'cgi.'.$identifier.'.layout'};
171: my $numberofcolumns = $env{'cgi.'.$identifier.'.numcol'};
172: my $paper = $env{'cgi.'.$identifier.'.paper'};
173: my $selectionmade = $env{'cgi.'.$identifier.'.selection'};
1.79 albertel 174: my $tableofcontents = $env{'cgi.'.$identifier.'.tableofcontents'};
175: my $tableofindex = $env{'cgi.'.$identifier.'.tableofindex'};
176: my $advanced_role = $env{'cgi.'.$identifier.'.role'};
177: my $number_of_files = $env{'cgi.'.$identifier.'.numberoffiles'}+1;
178: my $student_names = $env{'cgi.'.$identifier.'.studentnames'};
179: my $backref = &Apache::lonnet::unescape($env{'cgi.'.$identifier.'.backref'});
1.43 sakharuk 180:
1.49 albertel 181:
1.44 sakharuk 182: my @names_pack=();
183: if ($student_names=~/_END_/) {
184: @names_pack=split(/_ENDPERSON_/,$student_names);
185: }
1.39 sakharuk 186:
1.94 albertel 187: print "<a href=\"$backref\"><b>Return</b></a> to last resource.<br /><br />";
188:
1.14 sakharuk 189: my $figfile = $texfile;
190: $figfile =~ s/^([^\.]+printout)[^t]+\.tex/$1\.dat/;
191: my $duefile = $texfile;
192: $duefile =~ s/^([^\.]+printout)[^t]+\.tex/$1\.due/;
193: #do we have figures?
1.73 foxr 194: # print "Figure file: $figfile\n";
1.14 sakharuk 195: if (-e $figfile) {
1.73 foxr 196: # print "$figfile exists\n";
1.42 albertel 197: my %done_conversion;
1.69 matthew 198: my $temporary_file=IO::File->new($figfile) || die "Couldn't open fig file $figfile for reading: $!\n";
1.14 sakharuk 199: my @content_of_file = <$temporary_file>;
200: close $temporary_file;
201: my $noteps;
1.49 albertel 202: my %prog_state;
1.92 albertel 203: if ($advanced_role) { %prog_state=&Apache::lonhtmlcommon::Create_PrgWin('','Coverting Images to EPS','Picture Conversion Status',$#content_of_file,'inline','80'); }
1.94 albertel 204: print('<br />');
1.59 albertel 205: foreach my $not_eps (@content_of_file) {
1.49 albertel 206: chomp($not_eps);
1.14 sakharuk 207: if ($not_eps ne '') {
1.112 foxr 208: # print "Converting $not_eps"; # Debugging.
1.44 sakharuk 209: my $status_statement='EPS picture for '.$not_eps;
1.73 foxr 210: # print "$status_statement\n";
1.41 sakharuk 211: $not_eps=~s|\/\.\/|\/|g;
1.14 sakharuk 212: my $eps_f = $not_eps;
1.85 foxr 213: # $eps_f =~ s/\.[^.]*$/\.eps/i;
1.41 sakharuk 214: if ($eps_f=~/\/home\/([^\/]+)\/public_html\//) {
215: $eps_f=~s/\/home\/([^\/]+)\/public_html/$1/;
216: $eps_f = '/home/httpd/prtspool/'.$eps_f;
1.58 sakharuk 217: } elsif ($eps_f=~/$Apache::lonnet::perlvar{'lonDocRoot'}\/res\//) {
218: $eps_f=~m/$Apache::lonnet::perlvar{'lonDocRoot'}\/res\/(.+)/;
1.41 sakharuk 219: $eps_f = '/home/httpd/prtspool/'.$1;
1.58 sakharuk 220: } elsif ($eps_f=~/$Apache::lonnet::perlvar{'lonUsersDir'}\//) {
1.57 sakharuk 221: $eps_f=~/$Apache::lonnet::perlvar{'lonUsersDir'}\/([^\/]+)\/\w\/\w\/\w\/(.+)/;
1.56 sakharuk 222: $eps_f = '/home/httpd/prtspool/'.$1.'/'.$2;
1.41 sakharuk 223: }
1.74 foxr 224: $eps_f =~ s/ /\_/g; # Spaces are problematic for system commands and LaTeX.
1.111 foxr 225: #
226: # If the file is already an .eps or .ps file,
227: # We really just need to copy it from where it was to prtspool
228: # but with the spaces substituted to _'s.
229: #
1.114 ! albertel 230: my ($nsname,$path, $sext) = &fileparse($eps_f, qr/\.(ps|eps)/i);
1.111 foxr 231: if ($sext =~/ps$/i) {
1.112 foxr 232: # print "$not_eps is a postscript file. copy to $path\n";
1.114 ! albertel 233: &File::Path::mkpath($path,0,0777);
! 234: #print("Made path: $path");
! 235: #$not_eps =~ s/^\s+//;
! 236: #$not_eps =~ s/\s+$//;
! 237: #$not_eps =~ s/ /\__/g;
! 238: #print("Copying $not_eps to $eps_f\n");
1.112 foxr 239: copy("$not_eps", "$eps_f");
240: # print "Copy complete\n";
1.111 foxr 241: } else {
242:
243: $eps_f .= '.eps'; # Just append the eps ext.
244: my $path=$eps_f;
245: $path =~ s/\/([^\/]+)\.eps$//;
246: # print "Final file path: $path "; # Debugging
1.114 ! albertel 247: &File::Path::mkpath($path,0,0777);
1.111 foxr 248: $not_eps =~ s/^\s+//;
249: $not_eps =~ s/\s+$//;
250: $not_eps =~ s/ /\\ /g;
251: if ( exists($done_conversion{$not_eps})) { next; }
252: if ($advanced_role) {
253: my $prettyname=$not_eps;
254: $prettyname=~s|/home/([^/]+)/public_html|/priv/$1|;
255: $prettyname=~s|$Apache::lonnet::perlvar{'lonDocRoot'}/|/|;
256: &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,
257: 'Converting to EPS '.$prettyname);
258: }
259: $done_conversion{$not_eps}=1;
260: # print "Converting $not_eps -> $eps_f"; # Debugging
261: system("convert $not_eps $eps_f");
262: # check is eps exist in prtspool
263: if (not -e $eps_f) {
264: # converting an animated gif creates either:
265: # anim.gif.eps.0
266: # or
267: # anim.gif-0.eps
268: for (my $i=0;$i<10000;$i++) {
269: if (-e $eps_f.'.'.$i) {
270: rename($eps_f.'.'.$i, $eps_f);
271: last;
272: }
273: my $anim_eps = $eps_f;
274: $anim_eps =~ s/(\.[^.]*)\.eps$/$1-$i\.eps/i;
275: if (-e $anim_eps) {
276: rename($anim_eps, $eps_f);
277: last;
278: }
1.20 sakharuk 279: }
1.111 foxr 280: }
281:
282: # imagemagick 6.2.0-6.2.7 fails to properly handle
283: # convert anim.gif anim.gif.eps
284: # it creates anim.eps instead.
285: if (not -e $eps_f) {
286: my $eps_f2 = $eps_f;
287: $eps_f2 =~ s/\.[^.]*\.eps$/\.eps/i;
288: if(-e $eps_f2) {
289: rename($eps_f2,$eps_f);
1.98 albertel 290: }
291: }
292: }
293:
1.14 sakharuk 294: }
295: }
1.92 albertel 296: if ($advanced_role) {
1.74 foxr 297: &Apache::lonhtmlcommon::Close_PrgWin('',\%prog_state);
298: }
1.52 albertel 299: unlink($figfile);
1.14 sakharuk 300: }
1.43 sakharuk 301: #print "$texfile\n"; #name of the tex file for debugging only
302: my @texfile=($texfile);
303: if ($number_of_files>1) {
1.49 albertel 304: @texfile=();
305: for (my $i=1;$i<=$number_of_files;$i++) {
1.43 sakharuk 306: my $new_texfile=$texfile;
1.86 foxr 307: $new_texfile=~s/\.tex//;
308: $new_texfile = sprintf("%s_%03d.tex", $new_texfile,$i);
1.43 sakharuk 309: push @texfile,$new_texfile;
310: }
311: }
1.49 albertel 312:
1.44 sakharuk 313: my $ind=-1;
1.49 albertel 314: my %prog_state;
1.92 albertel 315: if ($advanced_role) { %prog_state=&Apache::lonhtmlcommon::Create_PrgWin('','Print Status','Class Print Status',$number_of_files,'inline','80'); }
1.61 albertel 316: print "<br />";
1.88 foxr 317: my $num_files = @texfile;
1.43 sakharuk 318: foreach $texfile (@texfile) {
1.49 albertel 319: my $status_statement='';
320: my $link_text='download PDF';
321: $ind++;
322: my @stud_info=split(/_END_/,$names_pack[$ind]);
323: my @tempo_array=split(/:/,$stud_info[0]);
324: my $name;
1.88 foxr 325: my $name_range='';
1.49 albertel 326: if ($tempo_array[3]) {
327: $name=$tempo_array[3];
1.89 foxr 328: ($name_range) = split(/,/,$name, 2);
1.49 albertel 329: } else {
330: $name=$tempo_array[0].'@'.$tempo_array[1];
1.88 foxr 331: $name_range = $tempo_array[0];
332: }
333: if (($name ne "") && ($name ne '@') ) { # Could be printing codes...
334: $link_text='<b>'.$name.'</b>';
335: $status_statement.=$name;
1.49 albertel 336: }
337: if ($#stud_info>0) {
338: @tempo_array=split(/:/,$stud_info[-1]);
1.48 albertel 339: if ($tempo_array[3]) {
340: $name=$tempo_array[3];
1.89 foxr 341: my ($lastname) = split(/,/, $name,2);
342: $name_range .= "-".$lastname;
1.48 albertel 343: } else {
344: $name=$tempo_array[0].'@'.$tempo_array[1];
1.88 foxr 345: $name_range .= '-'.$tempo_array[0];
346: }
347: if (($name ne "") && ($name ne '@')) {
348: $link_text.=' - <b>'.$name.'</b>';
349: $status_statement.=' - '.$name;
350:
1.48 albertel 351: }
1.88 foxr 352: }
353: if(($num_files > 1) && ($link_text eq 'download PDF')) { # Printing codes
354: $link_text = '<b>'.basename($texfile,'.tex').'.pdf</b>';
355: $status_statement .= basename($texfile);
356: }
357: $name_range =~ s/'//g; # O'Neil -> ONeil e.g.
358: print "<br/>";
1.92 albertel 359: if ($advanced_role) { &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,'Creating PDF for '.$status_statement); }
1.88 foxr 360: # This little piece of dirt puts username ranges into the original tex
361: # Tex filename from which they'll propagate into the other filenames as well.
362: #
1.29 sakharuk 363: if (-e $texfile) {
1.88 foxr 364: if (($name_range ne '') && ($num_files > 1)) {
365: my $newtexfile = $texfile;
366: $newtexfile =~ s/\.tex/$name_range\.tex/;
367: rename($texfile, $newtexfile);
368: $texfile = $newtexfile;
369: }
1.29 sakharuk 370: $texfile =~ m/^(.*)\/([^\/]+)$/;
371: my $name_file = $2;
372: my $path_file = $1.'/';
373: chdir $path_file;
1.88 foxr 374: my $dvi_file= $name_file; $dvi_file =~ s/\.tex/$name_range\.dvi/;
1.59 albertel 375: &busy_wait_command("latex $name_file 1>/dev/null 2>/dev/null",
376: "for $status_statement now LaTeXing file",
377: \%prog_state,$dvi_file);
1.40 sakharuk 378: if ($tableofcontents eq 'yes') {
1.63 sakharuk 379: &busy_wait_command("latex $name_file 1>/dev/null 2>/dev/null",
1.95 foxr 380: "for $status_statement First LaTeX of file for table of contents",
381: \%prog_state,$dvi_file);
382: &busy_wait_command("latex $name_file 1>/dev/null 2>/dev/null",
383: "for $status_statement Second LaTeX of file for table of contents",
1.63 sakharuk 384: \%prog_state,$dvi_file);
1.40 sakharuk 385: } #to create table of contents
1.33 sakharuk 386: my $idxname=$name_file;
387: $idxname=~s/\.tex$/\.idx/;
1.40 sakharuk 388: if ($tableofindex eq 'yes') {
1.63 sakharuk 389: &busy_wait_command("makeindex $idxname",
390: "making index file",
391: \%prog_state,$idxname);
392: &busy_wait_command("latex $name_file 1>/dev/null 2>/dev/null",
393: "for $status_statement now LaTeXing file for index section",
394: \%prog_state,$dvi_file);
1.33 sakharuk 395: } #to create index
1.29 sakharuk 396: #Do we have a latex error in the log file?
1.67 sakharuk 397: my $logfilename = $texfile; $logfilename =~ s/\.tex$/\.log/;
1.69 matthew 398: my $temporary_file=IO::File->new($logfilename) || die "Couldn't open log file $logfilename for reading: $!\n";
1.29 sakharuk 399: my @content_of_file = <$temporary_file>;
400: close $temporary_file;
1.30 sakharuk 401: my $body_log_file = join(' ',@content_of_file);
402: $logfilename =~ s/\.log$/\.html/;
403: $temporary_file = IO::File->new('>'.$logfilename);
404: print $temporary_file '<html><head><title>LOGFILE</title></head><body><pre>'.$body_log_file.'</pre></body></html>'."\n";
1.29 sakharuk 405: if ($body_log_file=~m/!\s+Emergency stop/) {
406: my $whereitbegins = rindex $body_log_file,'STAMPOFPASSEDRESOURCESTART';
407: my $whereitends = rindex $body_log_file,'STAMPOFPASSEDRESOURCEEND';
1.81 foxr 408: my $badresource;
1.83 foxr 409: my $badtext;
1.29 sakharuk 410: if ($whereitbegins!=-1 and $whereitends!=-1) {
1.83 foxr 411: $badtext = substr($body_log_file,$whereitbegins+26, $whereitends-$whereitbegins-26);
1.81 foxr 412: $whereitbegins = rindex $badtext,'located in';
413: if ($whereitbegins != -1) {
414:
415: $badresource = substr($badtext, $whereitbegins+27,
416: length($badtext) - $whereitbegins - 48);
1.84 albertel 417: # print "<br />failing resourcename: $badresource<br />";
1.81 foxr 418: }
1.29 sakharuk 419: }
1.83 foxr 420:
1.75 albertel 421: if ($advanced_role) {
1.83 foxr 422: #LaTeX failed to parse tex file
423: print "<h2>LaTeX could not successfully parse your tex file.</h2>";
424: print "It probably has errors in it.<br />";
425: print "With very high probability this error occured in ".$badtext."<br /><br />";
1.84 albertel 426: print "Here are the error messages in the LaTeX log file<br /><pre>";
1.90 foxr 427:
1.83 foxr 428: my $sygnal = 0;
429: for (my $i=0;$i<=$#content_of_file;$i++) {
430: if ($content_of_file[$i]=~m/^Runaway argument?/ or $content_of_file[$i]=~m/^!/) {
431: $sygnal = 1;
432: }
433: if ($content_of_file[$i]=~m/Here is how much of/) {
434: $sygnal = 0;
435: }
436: if ($sygnal) {
437: print "$content_of_file[$i]";
438: }
439: }
440: print "</pre>\n";
1.84 albertel 441: # print "<br /> Advanced role <br />";
1.35 sakharuk 442: print "<b><big>The link to ";
443: $logfilename=~s/\/home\/httpd//;
444: print "<a href=\"$logfilename\">Your log file </a></big></b>";
445: print "\n";
446: #link tooriginal LaTeX file (included according Michael Hamlin desire)
1.69 matthew 447: my $tex_temporary_file=IO::File->new($texfile) || die "Couldn't open tex file $texfile for reading: $!\n";
1.35 sakharuk 448: my @tex_content_of_file = <$tex_temporary_file>;
449: close $tex_temporary_file;
450: my $body_tex_file = join(' ',@tex_content_of_file);
451: $texfile =~ s/\.tex$/aaaaa\.html/;
452: $tex_temporary_file = IO::File->new('>'.$texfile);
453: print $tex_temporary_file '<html><head><title>LOGFILE</title></head><body><pre>'.$body_tex_file.'</pre></body></html>'."\n";
454: print "<br /><br />";
455: print "<b><big>The link to ";
456: $texfile=~s/\/home\/httpd//;
457: print "<a href=\"$texfile\">Your original LaTeX file </a></big></b>";
458: print "\n";
1.90 foxr 459: my $help_text = &Apache::loncommon::help_open_topic("Print_Resource", "Help on printing");
460: print ("$help_text");
461:
1.77 foxr 462: } else { # Student role...
463: # at this point:
464: # $body_log_file - contains the log file.
465: # $name_file - is the name of the LaTeX file.
466: # $identifier - is the unique LaTeX identifier.l
467:
1.84 albertel 468: print "<br />There are errors in $badtext";
469: print "<br />These errors prevent this resource from printing correctly";
1.77 foxr 470: my $tex_handle = IO::File->new($name_file);
471: my @tex_contents = <$tex_handle>;
1.81 foxr 472: &send_error_mail($identifier, $badresource, $body_log_file, \@tex_contents);
1.90 foxr 473: print "<br />A message has been sent to the instructor describing this failure<br />";
474: my $help_text = &Apache::loncommon::help_open_topic("Print_Resource", "Help on printing");
475: print ("$help_text");
476:
1.36 sakharuk 477: }
1.35 sakharuk 478:
1.29 sakharuk 479: } elsif ($body_log_file=~m/<inserted text>/) {
480: my $whereitbegins = index $body_log_file,'<inserted text>';
1.59 albertel 481: print "You are running LaTeX in <b>batch mode</b>.";
1.30 sakharuk 482: while ($whereitbegins != -1) {
483: my $tempobegin=$whereitbegins;
484: $whereitbegins = rindex $body_log_file,'STAMPOFPASSEDRESOURCESTART',$whereitbegins;
485: my $whereitends = index $body_log_file,'STAMPOFPASSEDRESOURCEEND',$whereitbegins;
1.34 sakharuk 486: print "<br />It has found an error in".substr($body_log_file,$whereitbegins+26,$whereitends-$whereitbegins-26)." <br /> and corrected it.\n";
1.30 sakharuk 487: print "Usually this correction is valid but you probably need to check the indicated resource one more time and implement neccessary corrections by yourself.\n";
488: $whereitbegins = index $body_log_file,'<inserted text>',$tempobegin+10;
489: }
1.29 sakharuk 490: $name_file =~ s/\.tex/\.dvi/;
491: my $new_name_file = $name_file;
492: $new_name_file =~ s/\.dvi/\.ps/;
1.67 sakharuk 493: my $papera=$paper;
1.62 sakharuk 494: if ($papera eq 'letter') {$papera='';}
495: if ($papera ne '') {$papera='-t'.$papera;}
496: my $comma = "dvips $papera -Ppdf -G0 -o $new_name_file";
1.59 albertel 497: &busy_wait_command("$comma $name_file 1>/dev/null 2>/dev/null",
498: "for $status_statement now Converting to PS",
499: \%prog_state,$new_name_file);
1.29 sakharuk 500: if (-e $new_name_file) {
1.102 foxr 501: my $latex_file = $name_file;
502: $latex_file =~ s/\.dvi/\.tex/;
503: &repaginate($new_name_file, $latex_file, $numberofcolumns);
504: #
505: # Now have to re-latex, re dvips again to
506: # get the repaginated postscript.
507: #
508: &busy_wait_command("latex $latex_file 1>/dev/null 2>/dev/null",
509: "for $status_statement first latex to repaginate",
510: \%prog_state, $name_file);
1.105 foxr 511: if ($tableofcontents eq 'yes') {
512: &busy_wait_command("latex $latex_file 1>/dev/null 2>/dev/null",
513: "for $status_statement second latex to repaginate",
514: \%prog_state, $name_file);
515: &busy_wait_command("latex $latex_file 1>/dev/null 2>/dev/null",
516: "for $status_statement third latex to repaginate",
517: \%prog_state, $name_file);
518: }
519: if ($tableofindex eq 'yes') {
520: my $idxname = $latex_file;
521: $idxname =~ s/\.tex$/\.idx/;
522: &busy_wait_command("makindex $idxname",
523: "Re-creating index file",
524: \%prog_state, $idxname);
525: &busy_wait_command("latex $latex_file 1>/dev/null 2>/dev/null",
526: "for $status_statement now Recreting index (latex)",
527: \%prog_state, $dvi_file);
528:
529: }
1.102 foxr 530: &busy_wait_command("$comma $name_file 1>dev/null 2>/dev/null",
531: "for $status_statement dvips to repaginate",
532: \%prog_state, $new_name_file);
533: print "\n<h1>PDF output file (see link below)</h1>\n";
1.29 sakharuk 534: $new_name_file =~ m/^(.*)\./;
1.59 albertel 535: my $ps_file = my $tempo_file = $1.'temporar.ps';
536: my $pdf_file = $1.'.pdf';
1.29 sakharuk 537: if ($laystyle eq 'album' and $numberofcolumns eq '2') {
1.82 albertel 538: my $papera=$paper;
539: if ($papera eq 'letter') {$papera='';}
540: if ($papera ne '') {$papera='-p'.$papera;}
541: $comma = "psnup $papera -2 -s1.0 $new_name_file";
1.59 albertel 542: &busy_wait_command("$comma $tempo_file 1>/dev/null 2>/dev/null",
543: "for $status_statement now Modifying PS layout",
544: \%prog_state,$tempo_file);
1.29 sakharuk 545: } elsif ($laystyle eq 'book' and $numberofcolumns eq '2') {
1.67 sakharuk 546: my $papera=$paper;
547: if ($papera eq 'letter') {$papera='';}
1.62 sakharuk 548: if ($papera ne '') {$papera='-p'.$papera;}
549: $comma = 'pstops '.$papera.' "2:0+1(0.48w,0)"';
1.63 sakharuk 550: &busy_wait_command("$comma $new_name_file $tempo_file 1>/dev/null 2>/dev/null",
551: "for $status_statement now Modifying PS layout",
552: \%prog_state,$tempo_file);
553:
1.29 sakharuk 554: } else {
1.59 albertel 555: $ps_file=$new_name_file;
1.29 sakharuk 556: }
1.59 albertel 557: &busy_wait_command("ps2pdf $ps_file $pdf_file 1>/dev/null 2>/dev/null",
558: "for $status_statement now Converting PS to PDF",
559: \%prog_state, $pdf_file);
560:
1.29 sakharuk 561: my $texlog = $texfile;
562: my $texaux = $texfile;
563: my $texdvi = $texfile;
564: my $texps = $texfile;
565: $texlog =~ s/\.tex/\.log/;
566: $texaux =~ s/\.tex/\.aux/;
567: $texdvi =~ s/\.tex/\.dvi/;
568: $texps =~ s/\.tex/\.ps/;
1.30 sakharuk 569: my @garb = ($texaux,$texdvi,$texps);
1.29 sakharuk 570: # unlink @garb;
571: unlink $duefile;
1.59 albertel 572: print "<a href=\"/prtspool/$pdf_file\">Your PDF document</a>";
1.75 albertel 573: }
574: if ($advanced_role) {
575: print "<br /><br />";
576: print "<b><big>The link to ";
577: $logfilename=~s/\/home\/httpd//;
578: print "<a href=\"$logfilename\">Your log file </a></big></b>";
579: print "\n";
580: #link tooriginal LaTeX file (included according Michael Hamlin desire)
581: my $tex_temporary_file=IO::File->new($texfile) || die "Couldn't open tex file $texfile for reading: $!\n";
582: my @tex_content_of_file = <$tex_temporary_file>;
583: close $tex_temporary_file;
584: my $body_tex_file = join(' ',@tex_content_of_file);
585: $texfile =~ s/\.tex$/aaaaa\.html/;
586: $tex_temporary_file = IO::File->new('>'.$texfile);
587: print $tex_temporary_file '<html><head><title>LOGFILE</title></head><body><pre>'.$body_tex_file.'</pre></body></html>'."\n";
588: print "<br /><br />";
589: print "<b><big>The link to ";
590: $texfile=~s/\/home\/httpd//;
591: print "<a href=\"$texfile\">Your original LaTeX file </a></big></b>";
592: print "\n";
1.29 sakharuk 593: }
594: } else {
595: #LaTeX successfully parsed tex file
596: $name_file =~ s/\.tex/\.dvi/;
597: my $new_name_file = $name_file;
598: $new_name_file =~ s/\.dvi/\.ps/;
1.67 sakharuk 599: my $papera=$paper;
1.62 sakharuk 600: if ($papera eq 'letter') {$papera='';}
601: if ($papera ne '') {$papera='-t'.$papera;}
602: my $comma = "dvips $papera -Ppdf -G0 -o $new_name_file";
1.59 albertel 603: &busy_wait_command("$comma $name_file 1>/dev/null 2>/dev/null",
604: "for $status_statement now Converting to PS",
605: \%prog_state,$new_name_file);
1.29 sakharuk 606: if (-e $new_name_file) {
1.102 foxr 607: my $latex_file = $name_file;
608: $latex_file =~ s/\.dvi/\.tex/;
609: &repaginate($new_name_file, $latex_file, $numberofcolumns);
610: &busy_wait_command("latex $latex_file 1>/dev/null 2>/dev/null",
611: "for $status_statement first latex to repaginate",
612: \%prog_state, $name_file);
1.105 foxr 613: if ($tableofcontents eq 'yes') {
614: &busy_wait_command("latex $latex_file 1>/dev/null 2>/dev/null",
615: "for $status_statement second latex to repaginate",
616: \%prog_state, $name_file);
617: &busy_wait_command("latex $latex_file 1>/dev/null 2>/dev/null",
618: "for $status_statement third latex to repaginate",
619: \%prog_state, $name_file);
620: }
621: if ($tableofindex eq 'yes') {
622: my $idxname = $latex_file;
623: $idxname =~ s/\.tex$/\.idx/;
624: &busy_wait_command("makeindex $idxname",
625: "Re-creating index file",
626: \%prog_state, $idxname);
627: &busy_wait_command("latex $latex_file 1>/dev/null 2>/dev/null",
628: "for $status_statement now Recreting index (latex)",
629: \%prog_state, $dvi_file);
630: }
1.102 foxr 631: &busy_wait_command("$comma $name_file 1>/dev/null 2>/dev/null",
632: "for $status_statement dvips to repaginate",
633: \%prog_state, $new_name_file);
1.61 albertel 634: print "<br />";
1.29 sakharuk 635: $new_name_file =~ m/^(.*)\./;
1.59 albertel 636: my $ps_file = my $tempo_file = $1.'temporar.ps';
637: my $pdf_file = $1.'.pdf';
1.82 albertel 638: $papera=~s/t/p/;
1.29 sakharuk 639: if ($laystyle eq 'album' and $numberofcolumns eq '2') {
1.82 albertel 640: $comma = "psnup $papera -2 -s1.0 $new_name_file";
1.59 albertel 641: &busy_wait_command("$comma $tempo_file 1>/dev/null 2>/dev/null",
642: "for $status_statement now Modifying PS layout",
643: \%prog_state,$tempo_file);
1.29 sakharuk 644: } elsif ($laystyle eq 'book' and $numberofcolumns eq '2') {
1.65 sakharuk 645: $comma = 'pstops '.$papera.' "2:0+1(0.48w,0)"';
1.59 albertel 646: &busy_wait_command("$comma $new_name_file $tempo_file 1>/dev/null 2>/dev/null",
647: "for $status_statement now Modifying PS layout",
648: \%prog_state,$tempo_file);
1.29 sakharuk 649: } else {
1.59 albertel 650: $ps_file=$new_name_file;
651: }
1.67 sakharuk 652: my $addtoPSfile={'legal'=>'<< /PageSize [612 1008] >> setpagedevice',
653: 'tabloid'=>'<< /PageSize [792 1224] >> setpagedevice',
654: 'executive'=>,'<< /PageSize [540 720] >> setpagedevice',
655: 'a2'=>'<< /PageSize [1195.02 1690.09] >> setpagedevice',
656: 'a3'=>'<< /PageSize [842 1195.02] >> setpagedevice',
657: 'a4'=>'<< /PageSize [595.2 842] >> setpagedevice',
658: 'a5'=>'<< /PageSize [421.1 595.2] >> setpagedevice',
659: 'a6'=>'<< /PageSize [298.75 421.1] >> setpagedevice',
660: };
661: if ($paper ne 'letter') {
1.69 matthew 662: open(FFH,'<',$ps_file) || die "Couldn't open ps file $ps_file for reading: $!\n";
1.63 sakharuk 663: my $new_ps_file='new'.$ps_file;
1.69 matthew 664: open(FFHS,'>',$new_ps_file) || die "Couldn't open new ps file $new_ps_file for reading: $!\n";
1.67 sakharuk 665: print FFHS $addtoPSfile->{$paper}."\n";
1.63 sakharuk 666: while (<FFH>) {
667: print FFHS $_;
668: }
1.62 sakharuk 669: close(FFH);
1.63 sakharuk 670: close(FFHS);
671: $ps_file=$new_ps_file;
1.62 sakharuk 672: }
1.59 albertel 673: &busy_wait_command("ps2pdf $ps_file $pdf_file 1>/dev/null 2>/dev/null",
674: "for $status_statement now Converting PS to PDF",
675: \%prog_state,$pdf_file);
676:
1.29 sakharuk 677: my $texlog = $texfile;
678: my $texaux = $texfile;
679: my $texdvi = $texfile;
680: my $texps = $texfile;
681: $texlog =~ s/\.tex/\.log/;
682: $texaux =~ s/\.tex/\.aux/;
683: $texdvi =~ s/\.tex/\.dvi/;
684: $texps =~ s/\.tex/\.ps/;
685: my @garb = ($texlog,$texaux,$texdvi,$texps);
1.22 sakharuk 686: # unlink @garb;
1.29 sakharuk 687: unlink $duefile;
1.68 sakharuk 688: print "<a href=\"/prtspool/$pdf_file\">$link_text - click here to download pdf</a>";
1.29 sakharuk 689: print "\n";
690: }
1.63 sakharuk 691: }
1.29 sakharuk 692: } else {
693: print "LaTeX file $texfile was not created successfully";
1.14 sakharuk 694: }
1.43 sakharuk 695: }
1.45 sakharuk 696: print "<br />";
1.44 sakharuk 697: if ($number_of_files>1) {
1.45 sakharuk 698: my $zipfile=$texfile[0];
699: $zipfile=~s/\.tex/\.zip/;
700: my $statement="zip $zipfile";
1.44 sakharuk 701: foreach my $file (@texfile) {
1.45 sakharuk 702: $file=~s/\.tex/.\pdf/;
703: $statement.=' '.$file;
1.44 sakharuk 704: }
1.49 albertel 705: print("<pre>Zip Output:\n");
706: system($statement);
707: print("</pre>");
1.45 sakharuk 708: $zipfile=~s/\/home\/httpd//;
1.49 albertel 709: print "<br /> A <a href=\"$zipfile\">ZIP file</a> of all the PDFs.";
1.44 sakharuk 710: }
1.92 albertel 711: if ($advanced_role) { &Apache::lonhtmlcommon::Close_PrgWin('',\%prog_state); }
1.97 albertel 712: print(&Apache::loncommon::end_page());
1.59 albertel 713: my $done;
1.102 foxr 714:
1.59 albertel 715: sub REAPER {
716: $done=1;
717: }
718:
719: sub busy_wait_command {
720: my ($command,$message,$progress_win,$output_file)=@_;
721:
722: $SIG{CHLD} = \&REAPER;
723: $done=0;
724: my $pid=open(CMD,"$command |");
1.92 albertel 725: if ($advanced_role) {
1.60 albertel 726: &Apache::lonhtmlcommon::Update_PrgWin('',$progress_win,$message);
727: }
1.59 albertel 728: while(!$done) {
729: sleep 1;
730: my $extra_msg;
731: if ($output_file) {
732: my $size=(stat($output_file))[7];
733: $extra_msg=", $size bytes generated";
734: }
1.92 albertel 735: if ($advanced_role) {
1.60 albertel 736: &Apache::lonhtmlcommon::Update_PrgWin('',$progress_win,
737: $message.$extra_msg);
738: }
1.59 albertel 739: }
740: $SIG{CHLD}='IGNORE';
741: close(CMD);
742: }
1.1 sakharuk 743:
1.102 foxr 744: # Repagninate
1.99 foxr 745: # What we need to do:
746: # - Count the number of pages in each student.
1.102 foxr 747: # - Rewrite the latex file replacing the \specials that
748: # mark the end of student with an appropriate number of newlines.
749: # parameters:
750: # psfile - Postscript filename
751: # latexfile - LaTeX filename
752: # columns - number of columns.
753: sub repaginate {
1.100 foxr 754:
755: # We will try to do this in 2 passes through the postscript since
756: # the postscript is potentially large, to do 2 passes, the first pass
757: # must be able to calculate the total number of document pages so that
758: # at the beginning of the second pass we already know how to replace
759: # %%Pages:
760:
761: # Figure out
762: # 1. Number of pages in the document
763: # 2. Maximum number of pages in a student
764: # 3. Number of pages in each student.
1.99 foxr 765:
1.102 foxr 766: my ($postscript_filename, $latex_filename, $num_columns) = @_;
1.99 foxr 767: open(PSFILE, "<$postscript_filename");
1.100 foxr 768: my $line;
769: my $total_pages; # Total pages in document.
770: my $seen_pages = 0; # There are several %%Pages only the first is useful
771: my @pages_in_student; # For each student his/her initial page count.
772: my $max_pages = 0; # Pages in 'longest' student.
1.102 foxr 773: my $page_number = 0;
1.104 foxr 774: &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,
1.110 albertel 775: &mt("Counting pages for student: [_1]",1));
1.104 foxr 776:
1.100 foxr 777: while ($line = <PSFILE>) {
778:
779: # Check for total pages (%%Pages:)
780:
1.101 albertel 781: if (($line =~ /^%%Pages:/) && (!$seen_pages)) {
1.100 foxr 782: my @pageinfo = split(/ /,$line);
783: $total_pages = $pageinfo[1];
784: $seen_pages = 1;
785: }
786: # Check for %%Page: n m $page_number will be the
787: # biggest of these until we see an endofstudent.
788: # Note that minipages generate spurious %Page: 1 1's so
789: # we only are looking for the largest n (n is page number at the
790: # bottom of the page, m the page number within the document.
791: #
1.102 foxr 792:
1.101 albertel 793: if ($line =~ /^%%Page:/) {
1.100 foxr 794: my @pageinfo = split(/ /, $line);
795: if ($page_number < $pageinfo[1]) {
796: $page_number = $pageinfo[1];
1.110 albertel 797: } elsif ($pageinfo[2] ne 1) {
798: # current page count reset, and it's not because of a
799: # minipage
800: # - save the page_number, reset and, if necessary
801: # update max_pages.
802: push(@pages_in_student, $page_number);
803: &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,
804: &mt("Counting pages for student: [_1]", scalar(@pages_in_student)));
805: if ($page_number > $max_pages) {
806: $max_pages = $page_number;
807: }
808: $page_number = $pageinfo[1];
1.100 foxr 809: }
810: }
811:
812:
813: }
1.110 albertel 814: # file ended so one more student
815: push(@pages_in_student, $page_number);
816: &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,
817: &mt("Counting pages for student: [_1]",scalar(@pages_in_student)));
818: if ($page_number > $max_pages) {
819: $max_pages = $page_number;
820: }
821: $page_number = 0;
822:
1.99 foxr 823: close(PSFILE);
1.102 foxr 824:
825: # If 2 columns, max_pages must go to an even number of columns:
1.103 foxr 826:
1.102 foxr 827:
828: if ($num_columns == 2) {
829: if ($max_pages % 2) {
830: $max_pages++;
831: }
832: }
1.100 foxr 833:
1.102 foxr 834: # Now rewrite the LaTex file, substituting our \special
835: # with an appropriate number of \newpage directives.
836:
837: my $outfilename = $latex_filename."temp";
838:
839: open(LATEXIN, "<$latex_filename");
840: open(LATEXOUT, ">$outfilename");
841:
842:
1.110 albertel 843: my $student_number = 0; # Index of student we're working on.
1.104 foxr 844: &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,
845: "Repaginating student ".$student_number+1);
1.102 foxr 846:
847: while (my $line = <LATEXIN>) {
848: if ($line eq "\\special{ps:ENDOFSTUDENTSTAMP}\n") {
849: # only end of student stamp if next line is ENDOFSTUDENTSTAMP:
850:
851:
852: # End of student replace with 0 or more newpages.
853:
854: my $addlines = $max_pages - $pages_in_student[$student_number];
855: while($addlines) {
1.108 albertel 856: print LATEXOUT '\clearpage \strut \clearpage';
1.105 foxr 857:
1.102 foxr 858: $addlines--;
1.100 foxr 859: }
1.102 foxr 860:
1.100 foxr 861: $student_number++;
1.104 foxr 862: &Apache::lonhtmlcommon::Update_PrgWin('',\%prog_state,
863: "Repaginating student ".$student_number+1);
1.102 foxr 864:
865: } else {
866: print LATEXOUT $line;
1.100 foxr 867: }
868: }
869:
1.102 foxr 870: close(LATEXIN);
871: close(LATEXOUT);
1.108 albertel 872: rename($outfilename, $latex_filename);
1.100 foxr 873:
1.99 foxr 874: }
1.4 sakharuk 875:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>