view lua/luadyncall/src/dynstruct.lua @ 28:edbbd467f50a

python binding: - update to dyncall 1.1 - Python 3 support (supports both, Python 2 and 3) - using the Capsule API over PyCObject, when available - support for python unicode strings (for both, Python 2 and 3) - doc cleanup ruby binding: - doc cleanup
author Tassilo Philipp
date Tue, 07 Apr 2020 21:16:37 +0200
parents 0cfcc391201f
children
line wrap: on
line source

require "ldynstruct"
require "dyntype"

dynstruct_metatable = {
  __index = function(s, f)
    local typeinfo = rawget(s, "typeinfo")
    local fieldinfo = typeinfo.fields[f]
    if not fieldinfo then error("unknown field "..f.." for type "..typeinfo.name) end
    return ldynstruct.dynpeek( rawget(s, "pointer"), fieldinfo.offset, fieldinfo.typeinfo.signature )
  end,
  __newindex = function(s, f, v)
    local typeinfo = rawget(s, "typeinfo")
    local fieldinfo = typeinfo.fields[f]
    if not fieldinfo then error("unknown field "..f.." for type "..typeinfo.name) end
    ldynstruct.dynpoke( rawget(s, "pointer"), fieldinfo.offset, fieldinfo.typeinfo.signature, v )
  end
}

function newdynstruct(typename)
  local typeinfo = gettypeinfo(typename)
  local object = { pointer = ldynstruct.newstruct( typeinfo.size ), typeinfo = typeinfo }
  setmetatable(object, dynstruct_metatable)
  return object
end

function dyncast(object, typeinfo)
  local pointer
  if type(object) == "userdata" then
    pointer = object
  elseif type(object) == "table" then
    pointer = rawgeti(object, "pointer")
  end
  local object = { pointer = pointer, typeinfo = gettypeinfo(typeinfo) }
  setmetatable(object, dynstruct_metatable)
  return object
end