All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
CA 94129, USA, for further information.
*/
#ifndef iminst_INCLUDED
# define iminst_INCLUDED
#include "iref.h"
#include "imain.h"
#include "gsparam.h"
#ifndef display_callback_DEFINED
# define display_callback_DEFINED
typedef struct display_callback_s display_callback;
#endif
* Define the structure of a search path. Currently there is only one,
* but there might be more someday.
*
* container - an array large enough to hold the specified maximum
* number of directories. Both the array and all the strings in it are
* in the 'foreign' VM space.
* list - the initial interval of container that defines the actual
* search list.
* env - the contents of an environment variable, implicitly added
* at the end of the list; may be 0.
* final - the final set of directories specified in the makefile;
* may be 0.
* first_is_current - 1 if we have inserted "gp_current_directory"
* as the first entry.
* count - the number of elements in the list, excluding a possible
* initial '.', env, and final.
*/
typedef struct gs_file_path_s {
ref container;
ref list;
const char *env;
const char *final;
uint first_is_current;
uint count;
} gs_file_path;
* Here is where we actually define the structure of interpreter instances.
* Clients should not reference any of the members. Note that in order to
* be able to initialize this structure statically, members including
* unions must come last (and be initialized to 0 by default).
*/
struct gs_main_instance_s {
gs_memory_t *heap;
uint memory_clump_size;
ulong name_table_size;
uint run_buffer_size;
int init_done;
int user_errors;
bool search_here_first;
bool run_start;
gs_file_path lib_path;
long base_time[2];
void *readline_data;
ref error_object;
int (*get_codepoint)(stream *s, const char **astr);
display_callback *display;
i_ctx_t *i_ctx_p;
char *saved_pages_initial_arg;
bool saved_pages_test_mode;
gs_c_param_list *param_list;
int mid_run_string;
gs_c_param_list enum_params;
gs_param_enumerator_t enum_iter;
char *enum_keybuf;
int enum_keybuf_max;
};
* Note that any file that uses the following definition of default values
* must include gconfig.h, because of SEARCH_HERE_FIRST.
*/
#define gs_main_instance_default_init_values\
0, 20000, 0, 0,\
-1, 0, SEARCH_HERE_FIRST, 1,
extern const gs_main_instance gs_main_instance_init_values;
#endif