/ext/re/re.go

http://github.com/bobappleyard/ts · Go · 51 lines · 42 code · 9 blank · 0 comment · 2 complexity · c40ca8ea11f5a468c5c73d800b8d6ff5 MD5 · raw file

  1. package re
  2. import (
  3. "io"
  4. "regexp"
  5. "unicode/utf8"
  6. "github.com/bobappleyard/ts"
  7. )
  8. func init() {
  9. ts.RegisterExtension("re", pkg)
  10. }
  11. type runeReader struct {
  12. read *ts.Accessor
  13. inner *ts.Object
  14. }
  15. func (r runeReader) ReadRune() (res rune, n int, err error) {
  16. inp := r.inner.Call(r.read)
  17. if inp == ts.Done {
  18. return 0, 0, io.EOF
  19. }
  20. c := inp.ToString()
  21. res, _ = utf8.DecodeRuneInString(c)
  22. return res, 1, nil
  23. }
  24. func pkg(it *ts.Interpreter) map[string] *ts.Object {
  25. var Regex *ts.Class
  26. read := it.Accessor("readChar")
  27. Regex = ts.ObjectClass.Extend(it, "Regex", ts.UserData, []ts.Slot {
  28. ts.MSlot("create", func(o, expr *ts.Object) *ts.Object {
  29. re := regexp.MustCompile(expr.ToString())
  30. o.SetUserData(re)
  31. return ts.Nil
  32. }),
  33. ts.MSlot("match", func(o, src *ts.Object) *ts.Object {
  34. re := o.UserData().(*regexp.Regexp)
  35. r := runeReader{read, src}
  36. return ts.Wrap(re.FindReaderSubmatchIndex(r))
  37. }),
  38. })
  39. return map[string] *ts.Object {
  40. "Regex": Regex.Object(),
  41. }
  42. }