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.
*/
#include "errno_.h"
#include "memory_.h"
#include "string_.h"
#include "ctype_.h"
#include "ghost.h"
#include "gp.h"
#include "oper.h"
#include "ialloc.h"
#include "idict.h"
#include "dstack.h"
#include "iname.h"
#include "ipacked.h"
#include "ivmspace.h"
#include "store.h"
#include "igstate.h"
#include "memento.h"
#include "iscan.h"
static inline bool
r_is_ex_oper(const ref *rp)
{
return (r_has_attr(rp, a_executable) &&
(r_btype(rp) == t_operator || r_type(rp) == t_oparray));
}
static int
zbind(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
uint depth = 1;
ref defn;
register os_ptr bsp;
check_op(1);
switch (r_type(op)) {
case t_array:
if (!r_has_attr(op, a_write)) {
return 0;
}
case t_mixedarray:
case t_shortarray:
defn = *op;
break;
case t_oparray:
defn = *op->value.const_refs;
break;
default:
return_op_typecheck(op);
}
push(1);
*op = defn;
bsp = op;
* We must not make the top-level procedure read-only,
* but we must bind it even if it is read-only already.
*
* Here are the invariants for the following loop:
* `depth' elements have been pushed on the ostack;
* For i < depth, p = ref_stack_index(&o_stack, i):
* *p is an array (or packedarray) ref.
*/
while (depth) {
while (r_size(bsp)) {
ref_packed *const tpp = (ref_packed *)bsp->value.packed;
r_dec_size(bsp, 1);
if (r_is_packed(tpp)) {
ushort elt = *tpp;
if (r_packed_is_exec_name(&elt)) {
ref nref;
ref *pvalue;
name_index_ref(imemory, packed_name_index(&elt),
&nref);
if ((pvalue = dict_find_name(&nref)) != 0 &&
r_is_ex_oper(pvalue)
) {
store_check_dest(bsp, pvalue);
* Always save the change, since this can only
* happen once.
*/
ref_do_save(bsp, tpp, "bind");
*tpp = pt_tag(pt_executable_operator) +
op_index(pvalue);
}
}
bsp->value.packed = tpp + 1;
} else {
ref *const tp = bsp->value.refs++;
switch (r_type(tp)) {
case t_name:
if (r_has_attr(tp, a_executable)) {
ref *pvalue;
if ((pvalue = dict_find_name(tp)) != 0 &&
r_is_ex_oper(pvalue)
) {
store_check_dest(bsp, pvalue);
ref_assign_old(bsp, tp, pvalue, "bind");
}
}
break;
case t_array:
if (!r_has_attr(tp, a_write))
break;
case t_mixedarray:
case t_shortarray:
if (r_has_attr(tp, a_executable)) {
r_clear_attrs(tp, a_write);
if (bsp >= ostop) {
ref temp;
int code;
temp = *tp;
osp = bsp;
code = ref_stack_push(&o_stack, 1);
if (code < 0) {
ref_stack_pop(&o_stack, depth);
return_error(code);
}
bsp = osp;
*bsp = temp;
} else
*++bsp = *tp;
depth++;
}
}
}
}
bsp--;
depth--;
if (bsp < osbot) {
osp = bsp;
ref_stack_pop_block(&o_stack);
bsp = osp;
}
}
osp = bsp;
return 0;
}
static int
zserialnumber(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
push(1);
make_int(op, gp_serialnumber());
return 0;
}
static int
zrealtime(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
long secs_ns[2];
gs_lib_ctx_t *libctx = gs_lib_ctx_get_interp_instance(imemory);
gp_get_realtime(secs_ns);
secs_ns[1] -= libctx->real_time_0[1];
secs_ns[0] -= libctx->real_time_0[0];
push(1);
make_int(op, secs_ns[0] * 1000 + secs_ns[1] / 1000000);
return 0;
}
static int
zusertime(i_ctx_t *i_ctx_p)
{
gs_context_state_t *current = (gs_context_state_t *)i_ctx_p;
os_ptr op = osp;
long secs_ns[2];
gp_get_usertime(secs_ns);
if (!current->usertime_inited) {
current->usertime_inited = true;
current->usertime_0[0] = secs_ns[0];
current->usertime_0[1] = secs_ns[1];
}
secs_ns[0] -= current->usertime_0[0];
secs_ns[1] -= current->usertime_0[1];
push(1);
make_int(op, secs_ns[0] * 1000 + secs_ns[1] / 1000000);
return 0;
}
static int
zgetenv(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
char *str;
byte *value;
int len = 0;
check_op(1);
check_read_type(*op, t_string);
str = ref_to_string(op, imemory, "getenv key");
if (str == 0)
return_error(gs_error_VMerror);
if (gp_getenv(str, (char *)0, &len) > 0) {
ifree_string((byte *) str, r_size(op) + 1, "getenv key");
make_false(op);
return 0;
}
value = ialloc_string(len, "getenv value");
if (value == 0) {
ifree_string((byte *) str, r_size(op) + 1, "getenv key");
return_error(gs_error_VMerror);
}
DISCARD(gp_getenv(str, (char *)value, &len));
ifree_string((byte *) str, r_size(op) + 1, "getenv key");
value = iresize_string(value, len, len - 1,
"getenv value");
push(1);
make_string(op - 1, a_all | icurrent_space, len - 1, value);
make_true(op);
return 0;
}
static int
zdefaultpapersize(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
byte *value;
int len = 0, i;
if (gp_defaultpapersize((char *)0, &len) > 0) {
push(1);
make_false(op);
return 0;
}
value = ialloc_string(len, "defaultpapersize value");
if (value == 0) {
return_error(gs_error_VMerror);
}
DISCARD(gp_defaultpapersize((char *)value, &len));
for (i = 0;i < (len - 1); i++)
value[i] = tolower(value[i]);
value = iresize_string(value, len, len - 1,
"defaultpapersize value");
push(2);
make_string(op - 1, a_all | icurrent_space, len - 1, value);
make_true(op);
return 0;
}
static int
zmakeoperator(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
op_array_table *opt;
uint count;
ref *tab;
check_op(2);
check_type(op[-1], t_name);
check_proc(*op);
switch (r_space(op)) {
case avm_global:
opt = &i_ctx_p->op_array_table_global;
break;
case avm_local:
opt = &i_ctx_p->op_array_table_local;
break;
default:
return_error(gs_error_invalidaccess);
}
count = opt->count;
tab = opt->table.value.refs;
* restore doesn't reset op_array_table.count, but it does
* remove entries from op_array_table.table. Since we fill
* the table in order, we can detect that a restore has occurred
* by checking whether what should be the most recent entry
* is occupied. If not, we scan backwards over the vacated entries
* to find the true end of the table.
*/
while (count > 0 && r_has_type(&tab[count - 1], t_null))
--count;
if (count == r_size(&opt->table))
return_error(gs_error_limitcheck);
ref_assign_old(&opt->table, &tab[count], op, "makeoperator");
opt->nx_table[count] = name_index(imemory, op - 1);
op_index_ref(imemory, opt->base_index + count, op - 1);
opt->count = count + 1;
pop(1);
return 0;
}
static int
zoserrno(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
push(1);
make_int(op, errno);
return 0;
}
static int
zsetoserrno(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
check_op(1);
check_type(*op, t_integer);
errno = op->value.intval;
pop(1);
return 0;
}
static int
zoserrorstring(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
const char *str;
int code;
uint len;
byte ch;
check_op(1);
check_type(*op, t_integer);
str = gp_strerror((int)op->value.intval);
if (str == 0 || (len = strlen(str)) == 0) {
make_false(op);
return 0;
}
check_ostack(1);
code = string_to_ref(str, op, iimemory, ".oserrorstring");
if (code < 0)
return code;
while ((len = r_size(op)) != 0 &&
((ch = op->value.bytes[--len]) == '\r' || ch == '\n')
)
r_dec_size(op, 1);
push(1);
make_true(op);
return 0;
}
static int
zsetdebug(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
check_op(2);
check_read_type(op[-1], t_string);
check_type(*op, t_boolean);
{
int i;
for (i = 0; i < r_size(op - 1); i++)
gs_debug[op[-1].value.bytes[i] & 127] =
op->value.boolval;
}
pop(2);
return 0;
}
static int
zmementolistnewblocks(i_ctx_t *i_ctx_p)
{
Memento_listNewBlocks();
return 0;
}
* instead of the GS default behavior. cmyk_to_rgb and Type 1 char fill
* method are two that have come up so far. This operator allows a PS
* program to control the behavior without needing to recompile.
*/
static int
zsetCPSImode(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
check_op(1);
check_type(*op, t_boolean);
gs_setcpsimode(imemory, op->value.boolval);
if (op->value.boolval) {
i_ctx_p->scanner_options |= SCAN_CPSI_MODE;
}
else {
i_ctx_p->scanner_options &= ~(int)SCAN_CPSI_MODE;
}
pop(1);
return 0;
}
static int
zgetCPSImode(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
push(1);
make_bool(op, gs_currentcpsimode(imemory));
return 0;
}
static int
zsetscanconverter(i_ctx_t *i_ctx_p)
{
int val;
os_ptr op = osp;
check_op(1);
if (r_has_type(op, t_boolean))
val = (int)op->value.boolval;
else if (r_has_type(op, t_integer))
val = op->value.intval;
else
return_op_typecheck(op);
gs_setscanconverter(igs, val);
pop(1);
return 0;
}
static int
zgetscanconverter(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
push(1);
make_int(op, gs_getscanconverter(imemory));
return 0;
}
const op_def zmisc_a_op_defs[] =
{
{"1bind", zbind},
{"1getenv", zgetenv},
{"0.defaultpapersize", zdefaultpapersize},
{"2.makeoperator", zmakeoperator},
{"0.oserrno", zoserrno},
{"1.oserrorstring", zoserrorstring},
{"0realtime", zrealtime},
{"0serialnumber", zserialnumber},
{"2.setdebug", zsetdebug},
{"0.mementolistnewblocks", zmementolistnewblocks},
{"1.setoserrno", zsetoserrno},
{"0usertime", zusertime},
op_def_end(0)
};
const op_def zmisc_b_op_defs[] =
{
{"1.setCPSImode", zsetCPSImode},
{"0.getCPSImode", zgetCPSImode},
{"1.setscanconverter", zsetscanconverter},
{"0.getscanconverter", zgetscanconverter},
op_def_end(0)
};