package hcl /* #include #include #include // for C.freem extern int hcl_go_read_handler (hcl_t hcl, hcl_iocmd_t cmd, void* arg); extern int hcl_go_scan_handler (hcl_t hcl, hcl_iocmd_t cmd, void* arg); extern int hcl_go_print_handler (hcl_t hcl, hcl_iocmd_t cmd, void* arg); int hcl_read_handler_for_go (hcl_t hcl, hcl_iocmd_t cmd, void* arg) { return hcl_go_read_handler(hcl, cmd, arg); } int hcl_scan_handler_for_go (hcl_t hcl, hcl_iocmd_t cmd, void* arg) { return hcl_go_scan_handler(hcl, cmd, arg); } int hcl_print_handler_for_go (hcl_t hcl, hcl_iocmd_t cmd, void* arg) { return hcl_go_print_handler(hcl, cmd, arg); } */ import "C" import ( "fmt" "runtime" "unsafe" ) type IOReadImpl interface { Open(g *HCL, name string, includer_name string) (int, error) Close(fd int) Read(fd int, buf []rune) (int, error) } type IOScanImpl interface { Open(g *HCL) error Close() Read(buf []rune) (int, error) } type IOPrintImpl interface { Open(g *HCL) error Close() Write(data []rune) error WriteBytes(data []byte) error Flush() error } type IOImplSet struct { r IOReadImpl s IOScanImpl p IOPrintImpl } type HCL struct { c *C.hcl_t inst_no int io IOImplSet } type Ext struct { inst_no int } type BitMask C.hcl_bitmask_t var inst_table InstanceTable func deregister_instance(g *HCL) { if g.inst_no >= 0 { inst_table.delete_instance(g.inst_no) g.inst_no = -1 } } func New() (*HCL, error) { var c *C.hcl_t var g *HCL var ext *Ext var errnum C.hcl_errnum_t c = C.hcl_openstd(C.hcl_oow_t(unsafe.Sizeof(*ext)), &errnum) if c == nil { var buf [64]C.hcl_uch_t var ptr *C.hcl_uch_t var err error ptr = C.hcl_errnum_to_errucstr(errnum, &buf[0], C.hcl_oow_t(cap(buf))) err = fmt.Errorf("%s", string(ucstr_to_rune_slice(ptr))) return nil, err } ext = (*Ext)(unsafe.Pointer(C.hcl_getxtn(c))) g = &HCL{c: c, inst_no: -1} runtime.SetFinalizer(g, deregister_instance) g.inst_no = inst_table.add_instance(c, g) ext.inst_no = g.inst_no return g, nil } func (hcl *HCL) Close() { C.hcl_close(hcl.c) deregister_instance(hcl) } func (hcl *HCL) GetLogMask () BitMask { var x C.int var log_mask BitMask = 0 x = C.hcl_getoption(hcl.c, C.HCL_LOG_MASK, unsafe.Pointer(&log_mask)) if x <= -1 { // this must not happen panic (fmt.Errorf("unable to get log mask - %s", hcl.get_errmsg())) } return log_mask } func (hcl *HCL) SetLogMask (log_mask BitMask) { var x C.int x = C.hcl_setoption(hcl.c, C.HCL_LOG_MASK, unsafe.Pointer(&log_mask)); if x <= -1 { // this must not happen panic (fmt.Errorf("unable to set log mask - %s", hcl.get_errmsg())) } } func (hcl *HCL) GetLogTarget () string { var x C.int var tgt *C.char x = C.hcl_getoption(hcl.c, C.HCL_LOG_TARGET_BCSTR, unsafe.Pointer(&tgt)); if x <= -1 { // this must not happen panic (fmt.Errorf("unable to set log target - %s", hcl.get_errmsg())) } return C.GoString(tgt) } func (hcl *HCL) SetLogTarget (target string) { var x C.int var tgt *C.char tgt = C.CString(target) defer C.free(unsafe.Pointer(tgt)) x = C.hcl_setoption(hcl.c, C.HCL_LOG_TARGET_BCSTR, unsafe.Pointer(tgt)); if x <= -1 { // thist must not happen panic (fmt.Errorf("unable to set log target - %s", hcl.get_errmsg())) } } func (hcl *HCL) Ignite(memsize uintptr) error { var x C.int x = C.hcl_ignite(hcl.c, C.hcl_oow_t(memsize)) if x <= -1 { return fmt.Errorf("unable to ignite - %s", hcl.get_errmsg()) } return nil } func (hcl *HCL) AddBuiltinPrims() error { var x C.int x = C.hcl_addbuiltinprims(hcl.c) if x <= -1 { return fmt.Errorf("unable to add built-in primitives - %s", hcl.get_errmsg()) } return nil } func (hcl *HCL) AttachIO(r IOReadImpl, s IOScanImpl, p IOPrintImpl) error { var x C.int var io IOImplSet io = hcl.io hcl.io.r = r hcl.io.s = s hcl.io.p = p x = C.hcl_attachio(hcl.c, C.hcl_ioimpl_t(C.hcl_read_handler_for_go), C.hcl_ioimpl_t(C.hcl_scan_handler_for_go), C.hcl_ioimpl_t(C.hcl_print_handler_for_go)) if x <= -1 { hcl.io = io // restore the io handler set due to attachment failure return fmt.Errorf("unable to attach I/O handlers - %s", hcl.get_errmsg()) } return nil } func (hcl *HCL) FeedString(str string) error { var x C.int var q []C.hcl_uch_t q = string_to_uchars(str) x = C.hcl_feed(hcl.c, &q[0], C.hcl_oow_t(len(q))) if x <= -1 { return fmt.Errorf("unable to feed string - %s", hcl.get_errmsg()) } return nil } func (hcl *HCL) FeedRunes(str []rune) error { var x C.int var q []C.hcl_uch_t q = rune_slice_to_uchars(str) x = C.hcl_feed(hcl.c, &q[0], C.hcl_oow_t(len(q))) if x <= -1 { return fmt.Errorf("unable to feed runes - %s", hcl.get_errmsg()) } return nil } func (hcl *HCL) BeginFeed() error { var x C.int x = C.hcl_beginfeed(hcl.c, nil) if x <= -1 { return fmt.Errorf("unable to begin feeding - %s", hcl.get_errmsg()) } return nil } func (hcl *HCL) EndFeed() error { var x C.int x = C.hcl_endfeed(hcl.c) if x <= -1 { return fmt.Errorf("unable to end feeding - %s", hcl.get_errmsg()) } return nil } func (hcl *HCL) Execute() error { var x C.hcl_oop_t x = C.hcl_execute(hcl.c) if x == nil { return fmt.Errorf("unable to execute - %s", hcl.get_errmsg()) } // TODO: wrap C.hcl_oop_t in a go type // and make this function to return 'x' in the wrapper return nil } func (hcl *HCL) Decode() error { var x C.int x = C.hcl_decode(hcl.c, 0, C.hcl_getbclen(hcl.c)) if x <= -1 { return fmt.Errorf("unable to decode byte codes - %s", hcl.get_errmsg()) } return nil } func (hcl *HCL) get_errmsg () string { return C.GoString(C.hcl_geterrbmsg(hcl.c)) } func (hcl* HCL) set_errmsg(num C.hcl_errnum_t, msg string) { var ptr *C.char ptr = C.CString(msg) defer C.free(unsafe.Pointer(ptr)) C.hcl_seterrbmsg(hcl.c, num, ptr) } func ucstr_to_rune_slice(str *C.hcl_uch_t) []rune { return uchars_to_rune_slice(str, uintptr(C.hcl_count_ucstr(str))) } func uchars_to_rune_slice(str *C.hcl_uch_t, len uintptr) []rune { var res []rune var i uintptr var ptr uintptr // TODO: proper encoding... ptr = uintptr(unsafe.Pointer(str)) res = make([]rune, len) for i = 0; i < len; i++ { res[i] = rune(*(*C.hcl_uch_t)(unsafe.Pointer(ptr))) ptr += unsafe.Sizeof(*str) } return res } func string_to_uchars (str string) []C.hcl_uch_t { var r []rune var c []C.hcl_uch_t var i int // TODO: proper encoding r = []rune(str); c = make([]C.hcl_uch_t, len(r), len(r)) for i = 0; i < len(r); i++ { c[i] = C.hcl_uch_t(r[i]) } return c } func rune_slice_to_uchars (r []rune) []C.hcl_uch_t { var c []C.hcl_uch_t var i int // TODO: proper encoding c = make([]C.hcl_uch_t, len(r), len(r)) for i = 0; i < len(r); i++ { c[i] = C.hcl_uch_t(r[i]) } return c } func c_to_go(c *C.hcl_t) *HCL { var ext *Ext var inst Instance ext = (*Ext)(unsafe.Pointer(C.hcl_getxtn(c))) inst = inst_table.slot_to_instance(ext.inst_no) return inst.g }