1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
|
/*
* jobs.c -- Recording information about the print jobs
* Copyright (c) 1995-99 Akim Demaille, Miguel Santana
*/
/*
* This file is part of a2ps.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include "a2ps.h"
#include "jobs.h"
#include "routines.h"
#include "xstrrpl.h"
#include "hashtab.h"
#include "useropt.h"
#include "caret.h"
#include "metaseq.h"
#include "message.h"
#include "fonts.h"
#include "faces.h"
#include "prange.h"
#include "stream.h"
#include "fjobs.h"
#include "lister.h"
#include "quotearg.h"
#include "userdata.h"
#include <locale.h>
/* Temporary file names should start with a2_
* Don't make it too big (think of MSDOS), though by definition
* it must be less than 5 chars.
*/
#define a2ps_file_prefix "a2_"
/************************************************************************
* Information about the user *
************************************************************************/
static inline void
a2ps_job_register_user (a2ps_job *job)
{
{
struct userdata u;
userdata_get (&u);
if (u.login)
macro_meta_sequence_add (job, VAR_USER_LOGIN, u.login);
if (u.name)
macro_meta_sequence_add (job, VAR_USER_NAME, u.name);
if (u.comments)
macro_meta_sequence_add (job, VAR_USER_COMMENTS, u.comments);
if (u.home)
macro_meta_sequence_add (job, VAR_USER_HOME, u.home);
userdata_free (&u);
}
{
char *host = xgethostname ();
macro_meta_sequence_add (job, VAR_USER_HOST, host);
free (host);
}
}
/*
* Set the array to NULL values
*/
static void
tmpfiles_reset (struct a2ps_job * job)
{
size_t i;
for (i = 0 ; i < cardinalityof (job->tmp_filenames) ; i ++)
job->tmp_filenames [i] = NULL;
}
/*
* release both name and file of the array of temporary file names
*/
static void
tmpfiles_free (struct a2ps_job * job)
{
size_t i;
for (i = 0 ; i < cardinalityof (job->tmp_filenames) ; i ++)
XFREE (job->tmp_filenames[i]);
}
/*
* Unlink all the (may be existing) temp files
*/
void
a2ps_job_unlink_tmpfiles (struct a2ps_job * job)
{
size_t i;
/* That of the structure */
for (i = 0 ; i < cardinalityof (job->tmp_filenames) ; i ++)
if (job->tmp_filenames[i])
unlink (job->tmp_filenames[i]);
/* That of the files */
da_map (job->jobs, (da_map_func_t) file_job_unlink_tmpfile);
}
/*
* Create a new a2ps_job (corresponding to a single file produced)
* and return it initialized (but default values: config files are
* not read)
*/
a2ps_job *
a2ps_job_new (void)
{
time_t tim;
struct tm *tm;
a2ps_job * res;
char * cp;
res = XMALLOC (a2ps_job, 1);
/* Specify the quotation style. */
set_quoting_style (NULL, escape_quoting_style);
/* Set the NLS on */
setlocale (LC_TIME, "");
#ifdef HAVE_LC_MESSAGES
setlocale (LC_MESSAGES, "");
#endif
setlocale (LC_CTYPE, "");
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
/* Initialize tinyterm and lister. */
lister_initialize (NULL, stdout);
lister_before_set (NULL, 2);
/* Set verbosity level right now to help debugging through the
envvar A2PS_VERBOSITY. */
msg_verbosity = 2;
if ((cp = getenv ("A2PS_VERBOSITY")) && *cp)
msg_verbosity = msg_verbosity_argmatch ("$A2PS_VERBOSITY", cp);
/* The arguments */
res->argv = NULL;
res->argc = 0;
a2ps_common_reset (&res->common);
res->file_command = NULL; /* Command to use to call file(1) */
/*
* Data that library needs (mostly read from config files)
*/
res->media = new_medium_table (); /* Media defined by the user */
/* Short cuts defined by the user */
res->user_options = user_options_table_new ();
/* Honor what the user said in its environment */
if ((cp = getenv ("SIMPLE_BACKUP_SUFFIX")))
simple_backup_suffix = cp;
res->backup_type = get_version ("$VERSION_CONTROL",
getenv ("VERSION_CONTROL"));
/* Get current time information */
tim = time (NULL);
tm = localtime (&tim);
memcpy (&(res->run_tm), tm, sizeof (*tm));
res->sheets = 0;
res->pages = 0;
res->lines_folded = 0;
res->total_files = 0;
res->orientation = portrait;
res->duplex = simplex;
res->columns = 1;
res->rows = 1;
res->madir = madir_rows; /* by default, write horizontally */
res->virtual = 0;
res->copies = 1;
res->margin = 0;
/* Map to know where is the information related to the encodings */
res->encodings_map = encodings_map_new ();
/* Chunk in which PS def of the fonts is stored */
res->ps_encodings = output_new ("PS encodings");
res->page_prefeed = false; /* No page prefeed */
/* Make sure not to be happy to use a not initialized array */
init_face_eo_font (res);
/* virtual file name given to stdin */
res->stdin_filename = (uchar *) xstrdup ("stdin");
/*
* Related to the output
*/
res->output_format = ps; /* By default, make PostScript */
/* Reset the printers modules */
res->printers = a2ps_printers_new (&res->common);
res->output_stream = NULL;
res->folding = true; /* Line folding option */
res->numbering = 0; /* Line numbering option */
res->unprintable_format = caret;/* Replace non printable char by ^M etc. */
res->interpret = true; /* Interpret TAB, FF and BS chars option */
res->print_binaries = false; /* Force printing for binary files */
/* Use default behavior from previous versions here. */
res->file_align = file_align_page;
res->border = true; /* print the surrounding border ? */
res->debug = false; /* No debugging */
res->prolog = xstrdup ("bw"); /* default ps header file */
res->medium_request = NULL; /* default paper is core dump */
res->medium = NULL; /* default paper is core dump */
res->tabsize = 8; /* length of tabulations */
res->lines_requested = 0; /* lines per page */
res->columns_requested = 0; /* columns per page */
res->fontsize = 0.0; /* Size of a char for body font */
res->encoding = NULL; /* What is the current char set ? */
res->requested_encoding_name = NULL; /* Encoding requested by -X */
res->requested_encoding = NULL;/* Encoding requested by -X */
res->saved_encoding = NULL;/* Encoding requested by -X */
res->encodings = encodings_table_new ();
/* Map to know the name of the files describing fonts */
res->fonts_map = fonts_map_new ();
res->font_infos = font_info_table_new ();
/* Title of the job */
res->title = xustrdup ("a2ps output"); /* Default title */
/* Headers and footers */
res->header = UNULL;
res->center_title = UNULL;
res->left_title = UNULL;
res->right_title = UNULL;
res->left_footer = UNULL;
res->footer = UNULL;
res->right_footer = UNULL;
res->water = UNULL;
* res->tag1 = '\0';
* res->tag2 = '\0';
* res->tag3 = '\0';
* res->tag4 = '\0';
/* Definition of the macro meta sequences */
res->macro_meta_sequences = macro_meta_sequence_table_new ();
a2ps_job_register_user (res);
/* Private info for PS generation */
res->status = new_ps_status();
/* Where the diverted output is stored */
res->divertion = output_new ("Main trunk");
/* Null tmp names. */
tmpfiles_reset (res);
/* List of the pages to print */
res->page_range = page_range_new ();
/* List of the jobs */
res->jobs = da_new ("List of the jobs", 10,
da_linear, 10,
(da_print_func_t) file_job_self_print, NULL);
return res;
}
/*
* Finish the initialization
* Typically must be called after that the a2ps.cfg was read
* so that the lib_path is known, so that the files to be
* read at initialization time get read now
*/
void
a2ps_job_finalize (struct a2ps_job * job)
{
/* Finalize the shared mem */
a2ps_common_finalize (&job->common,
macro_meta_sequence_get (job, VAR_USER_HOME));
/* Finalize the printers module */
a2ps_printers_finalize (job->printers);
/* Map to know where is the information related to the encodings */
load_main_encodings_map (job);
/* Now that the encoding.map is read, make sure to update
the encoding. It must be correct */
job->requested_encoding =
get_encoding_by_alias (job, job->requested_encoding_name);
if (!job->requested_encoding)
error (EXIT_FAILURE, 0, _("unknown encoding `%s'"),
quotearg (UNNULL (job->requested_encoding_name)));
/* Get the right medium */
job->medium = a2ps_get_medium (job, job->medium_request);
/* Map to know the name of the files describing fonts */
load_main_fonts_map (job);
}
/*
* Free the a2ps_job struture and its descendants
*/
void
a2ps_job_free (struct a2ps_job * job)
{
if (msg_test (msg_file))
da_self_print (job->jobs, stderr);
free_medium_table (job->media);
/* Free the common mem. Only a2ps_job is responsible for this, the
other only had pointers to this master. They should *not* free
it. */
a2ps_common_free (&job->common);
encodings_map_free (job->encodings_map);
face_eo_font_free (job->face_eo_font);
output_free (job->ps_encodings);
a2ps_printers_free (job->printers);
XFREE (job->stdin_filename);
/* Encoding handling */
encodings_table_free (job->encodings);
/* Fonts handling */
fonts_map_free (job->fonts_map);
font_info_table_free (job->font_infos);
/* Headers */
XFREE (job->title);
XFREE (job->header);
XFREE (job->center_title);
XFREE (job->left_title);
XFREE (job->right_title);
XFREE (job->left_footer);
XFREE (job->footer);
XFREE (job->right_footer);
XFREE (job->water);
free (job->prolog);
free (job->medium_request);
/* Definition of the macro meta sequences */
macro_meta_sequence_table_free (job->macro_meta_sequences);
ps_status_free (job->status);
if (msg_test (msg_file))
output_self_print (job->divertion, stderr);
output_free (job->divertion);
/* Unlink and free the temporary files */
a2ps_job_unlink_tmpfiles (job);
tmpfiles_free (job);
page_range_free (job->page_range);
/* Free the file jobs. Note: their temp files have been freed
* in a2ps_job_unlink_tmpfiles (job) */
da_free (job->jobs, (da_map_func_t) file_job_free);
free (job);
}
|