OSDN Git Service

removed unused flag.
[putex/putex.git] / src / texsourc / tex9.c
1 /* Copyright 2014 Clerk Ma
2
3    This program is free software; you can redistribute it and/or modify
4    it under the terms of the GNU General Public License as published by
5    the Free Software Foundation; either version 2 of the License, or
6    (at your option) any later version.
7
8    This program is distributed in the hope that it will be useful, but
9    WITHOUT ANY WARRANTY; without even the implied warranty of
10    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11    General Public License for more details.
12
13    You should have received a copy of the GNU General Public License
14    along with this program; if not, write to the Free Software
15    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16    02110-1301 USA.  */
17
18 #define EXTERN extern
19
20 #include "texd.h"
21
22 /* end of the old tex8.c */
23 /* sec 1284 */
24 void give_err_help (void)
25 {
26   token_show(err_help);
27 }
28 /* sec 0524 */
29 bool open_fmt_file (void)
30 {
31   integer j;
32
33   j = cur_input.loc_field;
34
35 /* For Windows NT, lets allow + instead of & for format specification */
36 /*  User specified a format name on the command line                  */
37   if (buffer[cur_input.loc_field] == '&' || buffer[cur_input.loc_field] == '+')
38   {
39     incr(cur_input.loc_field);
40     j = cur_input.loc_field;
41     buffer[last] = ' ';
42
43     while (buffer[j] != ' ')
44       incr(j);
45
46     pack_buffered_name(0, cur_input.loc_field, j - 1);
47
48     if (w_open_in(fmt_file))
49       goto lab40;
50   
51     if (knuth_flag)
52     {
53       (void) sprintf(log_line, "%s;%s\n", "Sorry, I can't find that format",
54         " will try the default.");
55       show_line(log_line, 1);
56     }
57     else
58     {
59       char *s = log_line;
60
61       name_of_file[name_length + 1] = '\0';
62       (void) sprintf(s, "%s (%s);%s\n", "Sorry, I can't find that format",
63         name_of_file + 1, " will try the default."); 
64       name_of_file[name_length + 1] = ' ';
65       s += strlen(s);
66       (void) sprintf(s, "(Perhaps your %s environment variable is not set correctly)\n",
67         "TEXFORMATS");
68       s += strlen(s);
69       {
70         char *t;            /* extra info 97/June/13 */
71
72         if ((t = grabenv("TEXFORMATS")) != NULL)
73         {
74           sprintf(s, "(%s=%s)\n", "TEXFORMATS", t);
75         }
76         else
77         {
78           sprintf(s, "%s environment variable not set\n", "TEXFORMATS");
79         }
80       }
81       show_line(log_line, 1); // show all three lines at once
82     }
83
84 #ifndef _WINDOWS
85     fflush(stdout);
86 #endif
87   }
88
89 /* Try the default format (either because no format specified or failed) */
90   pack_buffered_name(format_default_length - 4, 1, 0);
91
92   if (!w_open_in(fmt_file))
93   {
94     if (knuth_flag)
95     {
96       (void) sprintf(log_line, "%s!\n", "I can't find the default format file");
97       show_line(log_line, 1);
98     }
99     else
100     {
101       char *s = log_line;
102
103       name_of_file[name_length + 1] = '\0';
104       (void) sprintf(s, "%s (%s)!\n", "I can't find the default format file", name_of_file + 1);
105       name_of_file[name_length + 1] = ' ';
106       s += strlen(s);
107       (void) sprintf(s, "(Perhaps your %s environment variable is not set correctly)\n", "TEXFORMATS");
108       s += strlen(s);
109       {
110         char *t;            /* extra info 97/June/13 */
111
112         if ((t = grabenv("TEXFORMATS")) != NULL)
113         {
114           sprintf(s, "(%s=%s)\n", "TEXFORMATS", t);
115         }
116         else
117         {
118           sprintf(s, "%s environment variable not set\n", "TEXFORMATS");
119         }
120       }
121       show_line(log_line, 1);   // show all three lines at once
122     }
123
124     return false;
125   }
126
127 lab40:
128   cur_input.loc_field = j;
129
130   return true;
131 }
132 /**************************************************************************/
133 void print_char_string (unsigned char *s)
134 {
135   while (*s > 0)
136     print_char(*s++);
137 }
138 void show_font_info (void);   // now in local.c
139 extern int closed_already;     // make sure we don't try this more than once
140 /* The following needs access to zdvibuf of ALLOCATEDVIBUF 94/Mar/24 */
141 /* done in closefilesandterminate_regmem  in coerce.h */
142 /* sec 1333 */
143 void close_files_and_terminate (void)
144 {
145   integer k; 
146
147   if (closed_already++)
148   {
149     show_line("close_files_and_terminated already ", 0);
150     return;     // sanity check
151   }
152
153   if (trace_flag)
154     show_line("\nclose_files_and_terminate ", 0);
155
156 /* close all open files */
157   for (k = 0; k <= 15; k++)
158     if (write_open[k])
159     {
160       (void) a_close(write_file[k]);
161     }
162
163 #ifdef STAT
164   if (tracing_stats > 0 || verbose_flag != 0)  /* 93/Nov/30 - bkph */
165     if (log_opened)
166     {
167 /* used to output paragraph breaking statistics here */
168       (void) fprintf(log_file, "%c\n", ' ');
169       (void) fprintf(log_file, "\n");
170       (void) fprintf(log_file, "%s%s\n", "Here is how much of TeX's memory", " you used:");
171       (void) fprintf(log_file, "%c%ld%s", ' ', (long)str_ptr - init_str_ptr, " string");
172       if (str_ptr != init_str_ptr + 1)
173         (void) putc('s',  log_file);
174 #ifdef ALLOCATESTRING
175       if (show_current)
176         (void) fprintf(log_file, "%s%ld\n", " out of ", (long) current_max_strings - init_str_ptr);
177       else
178 #endif
179         (void) fprintf(log_file, "%s%ld\n", " out of ", (long) max_strings - init_str_ptr);
180
181 #ifdef ALLOCATESTRING
182       if (show_current)
183         (void) fprintf(log_file, "%c%ld%s%ld\n", ' ', (long) pool_ptr - init_pool_ptr, " string characters out of ", (long) current_pool_size - init_pool_ptr);
184       else
185 #endif
186         (void) fprintf(log_file, "%c%ld%s%ld\n", ' ', (long) pool_ptr - init_pool_ptr, " string characters out of ", (long) pool_size - init_pool_ptr);
187
188 #ifdef ALLOCATEMAIN
189       if (show_current)
190         (void) fprintf(log_file, "%c%ld%s%ld\n", ' ', (long) lo_mem_max - mem_min + mem_end - hi_mem_min + 2, " words of memory out of ", (long)current_mem_size);
191       else
192 #endif
193         (void) fprintf(log_file, "%c%ld%s%ld\n", ' ', (long) lo_mem_max - mem_min + mem_end - hi_mem_min + 2, " words of memory out of ", (long)mem_end + 1 - mem_min);
194       (void) fprintf(log_file, "%c%ld%s%ld\n", ' ', (long) cs_count, " multiletter control sequences out of ", (long)(hash_size + hash_extra));
195       (void) fprintf(log_file, "%c%ld%s%ld%s", ' ', (long) fmem_ptr, " words of font info for ", (long) font_ptr - 0, " font");
196       if (font_ptr != 1)
197         (void) putc('s',  log_file);
198
199 #ifdef ALLOCATEFONT
200       if (show_current)
201         (void) fprintf(log_file, "%s%ld%s%ld\n", ", out of ", (long)current_font_mem_size, " for ", (long)font_max - 0);
202       else
203 #endif
204         (void) fprintf(log_file, "%s%ld%s%ld\n", ", out of ", (long)font_mem_size, " for ", (long)font_max - 0);
205       (void) fprintf(log_file, "%c%ld%s", ' ', (long)hyph_count, " hyphenation exception");
206       if (hyph_count != 1)
207         (void) putc('s',  log_file);
208
209       (void) fprintf(log_file, "%s%ld\n",  " out of ", (long) hyphen_prime);
210       (void) fprintf(log_file, " ");
211       (void) fprintf(log_file, "%ld%s", (long)max_in_stack, "i,");
212       (void) fprintf(log_file, "%ld%s", (long)max_nest_stack, "n,");
213       (void) fprintf(log_file, "%ld%s", (long)max_param_stack, "p,");
214       (void) fprintf(log_file, "%ld%s", (long)max_buf_stack + 1, "b,");
215       (void) fprintf(log_file, "%ld%s", (long)max_save_stack + 6, "s");
216       (void) fprintf(log_file, " stack positions out of ");
217
218 #ifdef ALLOCATESAVESTACK
219       if (show_current)
220         (void) fprintf(log_file, "%ld%s", (long)current_stack_size, "i,");
221       else
222 #endif
223         (void) fprintf(log_file, "%ld%s", (long)stack_size, "i,");
224
225 #ifdef ALLOCATENESTSTACK
226       if (show_current)
227         (void) fprintf(log_file, "%ld%s", (long)current_nest_size, "n,");
228       else
229 #endif
230         (void) fprintf(log_file, "%ld%s", (long)nest_size, "n,");
231
232 #ifdef ALLOCATEPARAMSTACK
233       if (show_current)
234         (void) fprintf(log_file, "%ld%s", (long)current_param_size, "p,");
235       else
236 #endif
237         (void) fprintf(log_file, "%ld%s", (long)param_size, "p,");
238
239 #ifdef ALLOCATEBUFFER
240       if (show_current)
241         (void) fprintf(log_file, "%ld%s", (long)current_buf_size, "b,");
242       else
243 #endif
244         (void) fprintf(log_file, "%ld%s", (long)buf_size, "b,");
245
246 #ifdef ALLOCATESAVESTACK
247       if (show_current)
248         (void) fprintf(log_file, "%ld%s", (long)current_save_size, "s");
249       else
250 #endif
251         (void) fprintf(log_file, "%ld%s", (long)save_size, "s");
252       (void) fprintf(log_file, "\n");
253
254       if (!knuth_flag)
255         fprintf(log_file, " (i = in_stack, n = nest_stack, p = param_stack, b = buf_stack, s = save_stack)\n");
256
257       if (!knuth_flag)
258         fprintf(log_file, " %d inputs open max out of %d\n", high_in_open, max_in_open);
259
260 /*  Modified 98/Jan/14 to leave out lines with zero counts */
261       if (show_line_break_stats && first_pass_count > 0) /* 96/Feb/8 */
262       {
263         int first_count, secondcount, thirdcount;
264
265         (void) fprintf(log_file, "\nSuccess at breaking %d paragraph%s:", first_pass_count, (first_pass_count == 1) ? "" : "s");
266
267         if (single_line > 0)
268           (void) fprintf(log_file, "\n %d single line `paragraph%s'", single_line, (single_line == 1) ? "" : "s");  /* 96/Apr/23 */
269
270         first_count = first_pass_count - single_line - second_pass_count;
271
272         if (first_count < 0)
273           first_count = 0;
274
275         secondcount = second_pass_count - final_pass_count;
276         thirdcount = final_pass_count - paragraph_failed;
277
278         if (first_pass_count > 0)
279           (void) fprintf(log_file, "\n %d first pass (\\pretolerance = %d)", first_pass_count, pretolerance);
280
281         if (second_pass_count > 0)
282           (void) fprintf(log_file, "\n %d second pass (\\tolerance = %d)", second_pass_count, tolerance);
283
284         if (final_pass_count > 0 || emergency_stretch > 0)
285         {
286           (void) fprintf(log_file, "\n %d third pass (\\emergencystretch = %lgpt)", final_pass_count, (double) emergency_stretch / 65536.0);
287         }
288
289         if (paragraph_failed > 0)
290           (void) fprintf(log_file, "\n %d failed", paragraph_failed);
291
292         (void) putc('\n', log_file);
293
294         if (overfull_hbox > 0)
295           (void) fprintf(log_file, "\n %d overfull \\hbox%s", overfull_hbox, (overfull_hbox > 1) ? "es" : "");
296
297         if (underfull_hbox > 0)
298           (void) fprintf(log_file, "\n %d underfull \\hbox%s", underfull_hbox, (underfull_hbox > 1) ? "es" : "");
299
300         if (overfull_vbox > 0)
301           (void) fprintf(log_file, "\n %d overfull \\vbox%s", overfull_vbox, (overfull_vbox > 1) ? "es" : "");
302
303         if (underfull_vbox > 0)
304           (void) fprintf(log_file, "\n %d underfull \\vbox%s", underfull_vbox, (underfull_vbox > 1) ? "es" : "");
305
306         if (overfull_hbox || underfull_hbox || overfull_vbox || underfull_vbox)
307           (void) putc('\n', log_file);
308       }
309   } /* end of if (log_opened) */ 
310 #endif /* STAT */
311
312   if (pdf_output_flag)
313   {
314     if (total_pages == 0)
315     {
316       print_nl("No pages of output.");
317     }
318     else
319     {
320       HPDF_SaveToFile(yandy_pdf, pdf_file_name);
321       
322       print_nl("Output written on ");
323
324       if (full_file_name_flag && pdf_file_name != NULL)
325         print_char_string((unsigned char *) pdf_file_name);
326       else
327         slow_print(output_file_name);
328
329       print_string(" (");
330       print_int(total_pages);
331       print_string(" page");
332
333       if (total_pages != 1)
334         print_char('s');
335
336       //print_string(", ");
337       //print_int(dvi_offset + dvi_ptr);
338       //print_int(yandy_pdf->mmgr->mpool->used_size);
339       //print_string(" bytes).");
340       print_string(").");
341       b_close(dvi_file);
342     }
343
344     HPDF_Free(yandy_pdf);
345   }
346   else
347   {
348     while (cur_s > -1)
349     {
350       if (cur_s > 0) 
351         dvi_out(142);
352       else
353       {
354         dvi_out(eop);
355         incr(total_pages);
356       }
357
358       decr(cur_s);
359     }
360
361     if (total_pages == 0)
362       print_nl("No pages of output.");
363     else
364     {
365       dvi_out(post);
366       dvi_four(last_bop);
367       last_bop = dvi_offset + dvi_ptr - 5;
368       dvi_four(25400000L);
369       dvi_four(473628672L);
370       prepare_mag();
371       dvi_four(mag);
372       dvi_four(max_v);
373       dvi_four(max_h);
374       dvi_out(max_push / 256);
375       dvi_out(max_push % 256);
376
377       if (total_pages >= 65536)    // 99/Oct/10 dvi_t 16 bit problem
378       {
379         sprintf(log_line, "\nWARNING: page count (dvi_t) in DVI file will be %ld not %ld\n",
380           (total_pages % 65536), total_pages);
381
382         if (log_opened)
383           (void) fputs (log_line, log_file);
384
385         show_line(log_line, 1);
386       }
387
388       dvi_out((total_pages / 256) % 256);
389       dvi_out(total_pages % 256);
390
391       if (show_fonts_used && log_opened)     /* 97/Dec/24 */
392         show_font_info();           // now in local.c
393
394       while (font_ptr > 0)
395       {
396         if (font_used[font_ptr])
397           dvi_font_def(font_ptr);
398
399         decr(font_ptr);
400       }
401
402       dvi_out(post_post);
403       dvi_four(last_bop);
404       dvi_out(id_byte);
405       k = 4 + ((dvi_buf_size - dvi_ptr) % 4);
406
407       while (k > 0)
408       {
409         dvi_out(223);
410         decr(k);
411       }
412
413       if (trace_flag) /* 93/Dec/28 - bkph */
414       {
415         sprintf(log_line, "\ndviwrite %d", dvi_gone);
416         show_line(log_line, 0);
417       }
418
419       if (dvi_limit == half_buf)
420         write_dvi(half_buf, dvi_buf_size - 1);
421
422       if (dvi_ptr > 0)
423         write_dvi(0, dvi_ptr - 1); 
424
425       print_nl("Output written on ");
426
427       if (full_file_name_flag && dvi_file_name != NULL)
428         print_char_string((unsigned char *) dvi_file_name);
429       else
430         slow_print(output_file_name);
431
432       print_string(" (");
433       print_int(total_pages);
434       print_string(" page");
435
436       if (total_pages != 1)
437         print_char('s');
438
439       print_string(", ");
440       print_int(dvi_offset + dvi_ptr);
441       print_string(" bytes).");
442       b_close(dvi_file);
443     }
444   }
445
446   if (log_opened)
447   {
448     (void) putc('\n', log_file);
449     (void) a_close(log_file);
450     selector = selector - 2;
451
452     if (selector == term_only)
453     {
454       print_nl("Transcript written on ");
455
456       if (full_file_name_flag && log_file_name != NULL)
457         print_char_string((unsigned char *) log_file_name);
458       else
459         slow_print(texmf_log_name);
460
461       print_char('.');
462     }
463   }
464
465   print_ln();
466
467   if ((edit_name_start != 0) && (interaction > 0))
468   {
469     call_edit(str_pool, edit_name_start, edit_name_length, edit_line);
470   }
471 }
472 #ifdef DEBUG
473 /* sec 1338 */
474 void debug_help (void) 
475 {/* 888 10 */ 
476   integer k, l, m, n; 
477   while (true) {
478  ; 
479     print_nl(" debug # (-1 to exit):");
480 #ifndef _WINDOWS
481     fflush(stdout); 
482 #endif
483     read(stdin, m);  // ???
484     if (m < 0)return; 
485     else if (m == 0)
486     dumpcore(); 
487     else {
488       read(stdin, n);  // ???
489       switch(m)
490       {case 1 : 
491   print_word(mem[n]); 
492   break; 
493       case 2 : 
494   print_int(mem[n].hh.v.LH); 
495   break; 
496       case 3 : 
497   print_int(mem[n].hh.v.RH); 
498   break; 
499       case 4 : 
500   print_word(eqtb[n]); 
501   break; 
502       case 5 : 
503 #ifdef SHORTFONTINFO
504   print_scaled(font_info[n].sc);  print_char(' ');
505   print_int(font_info[n].qqq.b0);  print_char(':');
506   print_int(font_info[n].qqq.b1);  print_char(':');
507   print_int(font_info[n].qqq.b2);  print_char(':');
508   print_int(font_info[n].qqq.b3);  
509 #else
510   print_word(font_info[n]); 
511 #endif
512   break; 
513       case 6 : 
514   print_word(save_stack[n]); 
515   break; 
516       case 7 : 
517   show_box(n); 
518   break; 
519       case 8 : 
520   {
521     breadth_max = 10000; 
522 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
523 #ifdef ALLOCATESTRING
524 /* About to output node list make some space in string pool 97/Mar/9 */
525   if (pool_ptr + 32000 > current_pool_size)
526     str_pool = realloc_str_pool (increment_pool_size);
527 /* We don't bother to check whether this worked */
528 #endif
529 #ifdef ALLOCATESTRING
530     depth_threshold = current_pool_size - pool_ptr - 10; 
531 #else
532 /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
533     depth_threshold = pool_size - pool_ptr - 10; 
534 #endif
535     show_node_list(n); 
536   } 
537   break; 
538       case 9 : 
539   show_token_list(n, 0, 1000); 
540   break; 
541       case 10 : 
542   slow_print(n); 
543   break; 
544       case 11 : 
545   check_mem(n > 0); 
546   break; 
547       case 12 : 
548   search_mem(n); 
549   break; 
550       case 13 : 
551   {
552     read(stdin, l);  // ???
553     print_cmd_chr(n, l); 
554   } 
555   break; 
556       case 14 : 
557   {
558     register integer for_end; 
559     k = 0; 
560     for_end = n; 
561     if (k <= for_end) 
562       do print(buffer[k]); 
563     while(k++ < for_end);
564   } 
565   break; 
566       case 15 : 
567   {
568     font_in_short_display = 0; 
569     short_display(n); 
570   } 
571   break; 
572       case 16 : 
573   panicking = !panicking; 
574   break; 
575   default: 
576   print(63);    /* ? */
577   break; 
578       } 
579     } 
580   } 
581
582 #endif /* DEBUG */