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
|
from rpython.rtyper.lltypesystem import rffi, lltype
from pypy.interpreter.error import OperationError, oefmt
from pypy.objspace.std.dictmultiobject import W_DictMultiObject
from pypy.module._hpy_universal.apiset import API
from pypy.module._hpy_universal import llapi
@API.func("HPy HPyDict_New(HPyContext *ctx)")
def HPyDict_New(space, handles, ctx):
w_dict = space.newdict()
return handles.new(w_dict)
@API.func("int HPyDict_Check(HPyContext *ctx, HPy h)", error_value='CANNOT_FAIL')
def HPyDict_Check(space, handles, ctx, h):
w_obj = handles.deref(h)
w_obj_type = space.type(w_obj)
res = (space.is_w(w_obj_type, space.w_dict) or
space.issubtype_w(w_obj_type, space.w_dict))
return API.int(res)
@API.func("HPy HPyDict_Copy(HPyContext *ctx, HPy h)")
def HPyDict_Copy(space, handles, ctx, h):
if not h:
raise oefmt(space.w_SystemError, "NULL handle passed to HPyDict_Copy")
w_obj = handles.deref(h)
w_obj_type = space.type(w_obj)
if not (space.is_w(w_obj_type, space.w_dict) or
space.issubtype_w(w_obj_type, space.w_dict)):
raise oefmt(space.w_SystemError, "non-dict passed to HPyDict_Copy")
w_ret = space.call_method(space.w_dict, "copy", w_obj)
return handles.new(w_ret)
@API.func("HPy HPyDict_Keys(HPyContext *ctx, HPy h)")
def HPyDict_Keys(space, handles, ctx, h):
if not h:
raise oefmt(space.w_SystemError, "NULL handle passed to HPyDict_Keys")
w_obj = handles.deref(h)
w_obj_type = space.type(w_obj)
if not (space.is_w(w_obj_type, space.w_dict) or
space.issubtype_w(w_obj_type, space.w_dict)):
raise oefmt(space.w_SystemError, "non-dict passed to HPyDict_Keys")
w_k = space.call_method(space.w_dict, "keys", w_obj)
w_ret = space.call_function(space.w_list, w_k)
return handles.new(w_ret)
|