aboutsummaryrefslogtreecommitdiff
path: root/lib/cmark/wrappers
diff options
context:
space:
mode:
authorFelix (xq) Queißner <git@mq32.de>2020-06-22 20:53:39 +0200
committerFelix (xq) Queißner <git@mq32.de>2020-06-22 20:53:39 +0200
commit8dbfb0890560fd1cd698d06fa05ac868c4db8576 (patch)
tree57d138d7e9967473b8ed52863dabeb739a34ac8e /lib/cmark/wrappers
parent058aeef80e8a33d0e385f284b23eeb117f5ec547 (diff)
downloadkristall-8dbfb0890560fd1cd698d06fa05ac868c4db8576.tar.gz
Removes 'cruft' from cmark. We only care for the source anyways.
Diffstat (limited to 'lib/cmark/wrappers')
-rwxr-xr-xlib/cmark/wrappers/wrapper.py37
-rwxr-xr-xlib/cmark/wrappers/wrapper.rb15
-rw-r--r--lib/cmark/wrappers/wrapper.rkt208
3 files changed, 0 insertions, 260 deletions
diff --git a/lib/cmark/wrappers/wrapper.py b/lib/cmark/wrappers/wrapper.py
deleted file mode 100755
index 98e7f2b..0000000
--- a/lib/cmark/wrappers/wrapper.py
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/env python
-
-# Example for using the shared library from python
-# Will work with either python 2 or python 3
-# Requires cmark library to be installed
-
-from ctypes import CDLL, c_char_p, c_long
-import sys
-import platform
-
-sysname = platform.system()
-
-if sysname == 'Darwin':
- libname = "libcmark.dylib"
-elif sysname == 'Windows':
- libname = "cmark.dll"
-else:
- libname = "libcmark.so"
-cmark = CDLL(libname)
-
-markdown = cmark.cmark_markdown_to_html
-markdown.restype = c_char_p
-markdown.argtypes = [c_char_p, c_long, c_long]
-
-opts = 0 # defaults
-
-def md2html(text):
- if sys.version_info >= (3,0):
- textbytes = text.encode('utf-8')
- textlen = len(textbytes)
- return markdown(textbytes, textlen, opts).decode('utf-8')
- else:
- textbytes = text
- textlen = len(text)
- return markdown(textbytes, textlen, opts)
-
-sys.stdout.write(md2html(sys.stdin.read()))
diff --git a/lib/cmark/wrappers/wrapper.rb b/lib/cmark/wrappers/wrapper.rb
deleted file mode 100755
index 2359366..0000000
--- a/lib/cmark/wrappers/wrapper.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env ruby
-require 'ffi'
-
-module CMark
- extend FFI::Library
- ffi_lib ['libcmark', 'cmark']
- attach_function :cmark_markdown_to_html, [:string, :int, :int], :string
-end
-
-def markdown_to_html(s)
- len = s.bytesize
- CMark::cmark_markdown_to_html(s, len, 0)
-end
-
-STDOUT.write(markdown_to_html(ARGF.read()))
diff --git a/lib/cmark/wrappers/wrapper.rkt b/lib/cmark/wrappers/wrapper.rkt
deleted file mode 100644
index 1ecce17..0000000
--- a/lib/cmark/wrappers/wrapper.rkt
+++ /dev/null
@@ -1,208 +0,0 @@
-#lang racket/base
-
-;; requires racket >= 5.3 because of submodules
-
-;; Lowlevel interface
-
-(module low-level racket/base
-
- (require ffi/unsafe ffi/unsafe/define)
-
- (provide (all-defined-out))
-
- (define-ffi-definer defcmark (ffi-lib "libcmark"))
-
- (define _cmark_node_type
- (_enum '(;; Error status
- none
- ;; Block
- document block-quote list item code-block
- html-block custom-block
- paragraph heading thematic-break
- ;; ?? first-block = document
- ;; ?? last-block = thematic-break
- ;; Inline
- text softbreak linebreak code html-inline custom-inline
- emph strong link image
- ;; ?? first-inline = text
- ;; ?? last-inline = image
- )))
- (define _cmark_list_type
- (_enum '(no_list bullet_list ordered_list)))
- (define _cmark_delim_type
- (_enum '(no_delim period_delim paren_delim)))
- (define _cmark_opts
- (_bitmask
- '(sourcepos = 2 ; include sourcepos attribute on block elements
- hardbreaks = 4 ; render `softbreak` elements as hard line breaks
- safe = 8 ; suppress raw HTML and unsafe links
- nobreaks = 16 ; render `softbreak` elements as spaces
- normalize = 256 ; legacy (no effect)
- validate-utf8 = 512 ; validate UTF-8 in the input
- smart = 1024 ; straight quotes to curly, ---/-- to em/en dashes
- )))
-
- (define-cpointer-type _node)
-
- (defcmark cmark_markdown_to_html
- (_fun [bs : _bytes] [_int = (bytes-length bs)] _cmark_opts
- -> [r : _bytes] -> (begin0 (bytes->string/utf-8 r) (free r))))
-
- (defcmark cmark_parse_document
- (_fun [bs : _bytes] [_int = (bytes-length bs)] _cmark_opts
- -> _node))
-
- (defcmark cmark_render_html
- (_fun _node _cmark_opts
- -> [r : _bytes] -> (begin0 (bytes->string/utf-8 r) (free r))))
-
- (defcmark cmark_node_new (_fun _cmark_node_type -> _node))
- (defcmark cmark_node_free (_fun _node -> _void))
-
- (defcmark cmark_node_next (_fun _node -> _node/null))
- (defcmark cmark_node_previous (_fun _node -> _node/null))
- (defcmark cmark_node_parent (_fun _node -> _node/null))
- (defcmark cmark_node_first_child (_fun _node -> _node/null))
- (defcmark cmark_node_last_child (_fun _node -> _node/null))
-
- (defcmark cmark_node_get_user_data (_fun _node -> _racket))
- (defcmark cmark_node_set_user_data (_fun _node _racket -> _bool))
- (defcmark cmark_node_get_type (_fun _node -> _cmark_node_type))
- (defcmark cmark_node_get_type_string (_fun _node -> _bytes))
- (defcmark cmark_node_get_literal (_fun _node -> _string))
- (defcmark cmark_node_set_literal (_fun _node _string -> _bool))
- (defcmark cmark_node_get_heading_level (_fun _node -> _int))
- (defcmark cmark_node_set_heading_level (_fun _node _int -> _bool))
- (defcmark cmark_node_get_list_type (_fun _node -> _cmark_list_type))
- (defcmark cmark_node_set_list_type (_fun _node _cmark_list_type -> _bool))
- (defcmark cmark_node_get_list_delim (_fun _node -> _cmark_delim_type))
- (defcmark cmark_node_set_list_delim (_fun _node _cmark_delim_type -> _bool))
- (defcmark cmark_node_get_list_start (_fun _node -> _int))
- (defcmark cmark_node_set_list_start (_fun _node _int -> _bool))
- (defcmark cmark_node_get_list_tight (_fun _node -> _bool))
- (defcmark cmark_node_set_list_tight (_fun _node _bool -> _bool))
- (defcmark cmark_node_get_fence_info (_fun _node -> _string))
- (defcmark cmark_node_set_fence_info (_fun _node _string -> _bool))
- (defcmark cmark_node_get_url (_fun _node -> _string))
- (defcmark cmark_node_set_url (_fun _node _string -> _bool))
- (defcmark cmark_node_get_title (_fun _node -> _string))
- (defcmark cmark_node_set_title (_fun _node _string -> _bool))
- (defcmark cmark_node_get_start_line (_fun _node -> _int))
- (defcmark cmark_node_get_start_column (_fun _node -> _int))
- (defcmark cmark_node_get_end_line (_fun _node -> _int))
- (defcmark cmark_node_get_end_column (_fun _node -> _int))
-
- (defcmark cmark_node_unlink (_fun _node -> _void))
- (defcmark cmark_node_insert_before (_fun _node _node -> _bool))
- (defcmark cmark_node_insert_after (_fun _node _node -> _bool))
- (defcmark cmark_node_prepend_child (_fun _node _node -> _bool))
- (defcmark cmark_node_append_child (_fun _node _node -> _bool))
- (defcmark cmark_consolidate_text_nodes (_fun _node -> _void))
-
- (defcmark cmark_version (_fun -> _int))
- (defcmark cmark_version_string (_fun -> _string))
-
- )
-
-;; Rackety interface
-
-(module high-level racket/base
-
- (require (submod ".." low-level) ffi/unsafe)
-
- (provide cmark-markdown-to-html)
- (define (cmark-markdown-to-html str [options '(normalize smart)])
- (cmark_markdown_to_html (if (bytes? str) str (string->bytes/utf-8 str))
- options))
-
- (require (for-syntax racket/base racket/syntax))
- (define-syntax (make-getter+setter stx)
- (syntax-case stx ()
- [(_ name) (with-syntax ([(getter setter)
- (map (λ(op) (format-id #'name "cmark_node_~a_~a"
- op #'name))
- '(get set))])
- #'(cons getter setter))]))
- (define-syntax-rule (define-getters+setters name [type field ...] ...)
- (define name (list (list 'type (make-getter+setter field) ...) ...)))
- (define-getters+setters getters+setters
- [heading heading_level] [code-block fence_info]
- [link url title] [image url title]
- [list list_type list_delim list_start list_tight])
-
- (provide cmark->sexpr)
- (define (cmark->sexpr node)
- (define text (cmark_node_get_literal node))
- (define type (cmark_node_get_type node))
- (define children
- (let loop ([node (cmark_node_first_child node)])
- (if (not node) '()
- (cons (cmark->sexpr node) (loop (cmark_node_next node))))))
- (define info
- (cond [(assq type getters+setters)
- => (λ(gss) (map (λ(gs) ((car gs) node)) (cdr gss)))]
- [else '()]))
- (define (assert-no what-not b)
- (when b (error 'cmark->sexpr "unexpected ~a in ~s" what-not type)))
- (cond [(memq type '(document paragraph heading block-quote list item
- emph strong link image))
- (assert-no 'text text)
- (list type info children)]
- [(memq type '(text code code-block html-block html-inline
- softbreak linebreak thematic-break))
- (assert-no 'children (pair? children))
- (list type info text)]
- [else (error 'cmark->sexpr "unknown type: ~s" type)]))
-
- (provide sexpr->cmark)
- (define (sexpr->cmark sexpr) ; assumes valid input, as generated by the above
- (define (loop sexpr)
- (define type (car sexpr))
- (define info (cadr sexpr))
- (define data (caddr sexpr))
- (define node (cmark_node_new type))
- (let ([gss (assq type getters+setters)])
- (when gss
- (unless (= (length (cdr gss)) (length info))
- (error 'sexpr->cmark "bad number of info values in ~s" sexpr))
- (for-each (λ(gs x) ((cdr gs) node x)) (cdr gss) info)))
- (cond [(string? data) (cmark_node_set_literal node data)]
- [(not data) (void)]
- [(list? data)
- (for ([child (in-list data)])
- (cmark_node_append_child node (sexpr->cmark child)))]
- [else (error 'sexpr->cmark "bad data in ~s" sexpr)])
- node)
- (define root (loop sexpr))
- (register-finalizer root cmark_node_free)
- root)
-
- ;; Registers a `cmark_node_free` finalizer
- (provide cmark-parse-document)
- (define (cmark-parse-document str [options '(normalize smart)])
- (define root (cmark_parse_document
- (if (bytes? str) str (string->bytes/utf-8 str))
- options))
- (register-finalizer root cmark_node_free)
- root)
-
- (provide cmark-render-html)
- (define (cmark-render-html root [options '(normalize smart)])
- (cmark_render_html root options)))
-
-#; ;; sample use
-(begin
- (require 'high-level racket/string)
- (cmark-render-html
- (cmark-parse-document
- (string-join '("foo"
- "==="
- ""
- "> blah"
- ">"
- "> blah *blah* `bar()` blah:"
- ">"
- "> function foo() {"
- "> bar();"
- "> }")
- "\n"))))