Exemple #1
0
 def descr__unicode__(self, space):
     h_str = support.emjs_to_string(self.handle)
     _check_error(space, h_str)
     # The buffer must hold utf8 version of the string, which
     # might take up to four bytes per character.
     bufsize = support.emjs_length(h_str) * 4
     _check_error(space, bufsize)
     with rffi.scoped_alloc_buffer(bufsize) as buf:
         n = support.emjs_read_strn(h_str, buf.raw, buf.size)
         return space.wrap(buf.str(n).decode("utf-8"))
Exemple #2
0
 def descr__unicode__(self, space):
     h_str = support.emjs_to_string(self.handle)
     _check_error(space, h_str)
     # The buffer must hold utf8 version of the string, which
     # might take up to four bytes per character.
     bufsize = support.emjs_length(h_str) * 4
     _check_error(space, bufsize)
     with rffi.scoped_alloc_buffer(bufsize) as buf:
         n = support.emjs_read_strn(h_str, buf.raw, buf.size)
         return space.wrap(buf.str(n).decode("utf-8"))
Exemple #3
0
 def descr__repr__(self, space):
     bufsize = support.emjs_length(self.handle)
     _check_error(space, bufsize)
     truncated = False
     if bufsize > 17:
         bufsize = 17
         truncated = True
     with rffi.scoped_alloc_buffer(bufsize) as buf:
         n = support.emjs_read_strn(self.handle, buf.raw, buf.size)
         strval = buf.str(n)
     if truncated:
         strval = strval + "..."
     return space.wrap("<js.String '%s'>" % (strval, ))
Exemple #4
0
 def descr__repr__(self, space):
     bufsize = support.emjs_length(self.handle)
     _check_error(space, bufsize)
     truncated = False
     if bufsize > 17:
         bufsize = 17
         truncated = True
     with rffi.scoped_alloc_buffer(bufsize) as buf:
         n = support.emjs_read_strn(self.handle, buf.raw, buf.size)
         strval = buf.str(n)
     if truncated:
         strval = strval + "..."
     return space.wrap("<js.String '%s'>" % (strval,))
Exemple #5
0
def dispatch_callback(dataptr, h_args):
    id = rffi.cast(lltype.Signed, dataptr)
    callback = global_callback_map.get(id)
    if callback is None:
        raise RuntimeError("invalid callback id; was it garbage-collected?")
    space = callback.space
    # Unpack h_args as an extension of the default args from the callback.
    # If the callback wants the value of 'this', pass it as first argument.
    args_w, kw_w = callback.__args__.unpack()
    if kw_w:
        raise RuntimeError("callback function kw args not implemented yet")
    h_args_len = support.emjs_length(h_args)
    all_args_len = len(args_w) + h_args_len
    if callback.wants_this:
        all_args_len += 1
    all_args_w = [None] * all_args_len
    i = 0
    if callback.wants_this:
        h_this = support.emjs_prop_get_str(h_args, "this")
        w_this = _wrap_handle(space, h_this)
        all_args_w[0] = w_this
        i += 1
    for w_arg in args_w:
        all_args_w[i] = w_arg
        i += 1
    for j in xrange(h_args_len):
        w_arg = _wrap_handle(space, support.emjs_prop_get_int(h_args, j))
        all_args_w[i] = w_arg
        i += 1
    # Do the call, propagating return value or error as appropriate.
    try:
        w_res = space.call(callback.w_callback, space.newtuple(all_args_w))
    except OperationError, pyerr:
        # XXX TODO: tunnel the exception through JS and back to Python?
        # XXX TODO: allow the callback to raise js.Error and reflect it
        # properly through to the javascript side.
        # w_jserror = getstate(space).w_jserror
        # if isinstance(pyerr, w_jserror):
        #    with _unwrap_handle(pyerror.args[0]) as h_err:
        #        support.emjs_set_error(h_err)
        # else:
        #    h_msg = make_error_string()
        #    h_data = make_error_pickle()
        #    h_err = new(h_pyerror, [h_msg, h_data])
        #    support.emjs_set_error(h_err)
        #    support.emjs_free(h_err)
        errmsg = pyerr.errorstr(space)
        h_errmsg = support.emjs_make_strn(errmsg, len(errmsg))
        support.emjs_set_error(h_errmsg)
        support.emjs_free(h_errmsg)
        return support.EMJS_ERROR
Exemple #6
0
def dispatch_callback(dataptr, h_args):
    id = rffi.cast(lltype.Signed, dataptr)
    callback = global_callback_map.get(id)
    if callback is None:
        raise RuntimeError("invalid callback id; was it garbage-collected?")
    space = callback.space
    # Unpack h_args as an extension of the default args from the callback.
    # If the callback wants the value of 'this', pass it as first argument.
    args_w, kw_w = callback.__args__.unpack()
    if kw_w:
        raise RuntimeError("callback function kw args not implemented yet")
    h_args_len = support.emjs_length(h_args)
    all_args_len = len(args_w) + h_args_len
    if callback.wants_this:
        all_args_len += 1
    all_args_w = [None] * all_args_len
    i = 0
    if callback.wants_this:
        h_this = support.emjs_prop_get_str(h_args, "this")
        w_this = _wrap_handle(space, h_this)
        all_args_w[0] = w_this
        i += 1
    for w_arg in args_w:
        all_args_w[i] = w_arg
        i += 1
    for j in xrange(h_args_len):
        w_arg = _wrap_handle(space, support.emjs_prop_get_int(h_args, j))
        all_args_w[i] = w_arg
        i += 1
    # Do the call, propagating return value or error as appropriate.
    try:
        w_res = space.call(callback.w_callback, space.newtuple(all_args_w))
    except OperationError, pyerr:
        # XXX TODO: tunnel the exception through JS and back to Python?
        # XXX TODO: allow the callback to raise js.Error and reflect it
        # properly through to the javascript side.
        # w_jserror = getstate(space).w_jserror
        # if isinstance(pyerr, w_jserror):
        #    with _unwrap_handle(pyerror.args[0]) as h_err:
        #        support.emjs_set_error(h_err)
        # else:
        #    h_msg = make_error_string()
        #    h_data = make_error_pickle()
        #    h_err = new(h_pyerror, [h_msg, h_data])
        #    support.emjs_set_error(h_err)
        #    support.emjs_free(h_err)
        errmsg = pyerr.errorstr(space)
        h_errmsg = support.emjs_make_strn(errmsg, len(errmsg))
        support.emjs_set_error(h_errmsg)
        support.emjs_free(h_errmsg)
        return support.EMJS_ERROR
Exemple #7
0
 def descr__len__(self, space):
     res = support.emjs_length(self.handle)
     _check_error(space, res)
     return space.wrap(res)
Exemple #8
0
 def descr__len__(self, space):
     res = support.emjs_length(self.handle)
     _check_error(space, res)
     return space.wrap(res)