2014-08-09 23:02:37 +10:00
|
|
|
;;; origami-parsers.el --- Collection of parsers -*- lexical-binding: t -*-
|
|
|
|
|
|
|
|
;; Author: Greg Sexton <gregsexton@gmail.com>
|
|
|
|
;; Version: 1.0
|
|
|
|
;; Keywords: parsers
|
|
|
|
;; URL: https://github.com/gregsexton/
|
|
|
|
|
|
|
|
;; The MIT License (MIT)
|
|
|
|
|
|
|
|
;; Copyright (c) 2014 Greg Sexton
|
|
|
|
|
|
|
|
;; Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
;; of this software and associated documentation files (the "Software"), to deal
|
|
|
|
;; in the Software without restriction, including without limitation the rights
|
|
|
|
;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
;; copies of the Software, and to permit persons to whom the Software is
|
|
|
|
;; furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
;; The above copyright notice and this permission notice shall be included in
|
|
|
|
;; all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
;; THE SOFTWARE.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'parser)
|
|
|
|
|
|
|
|
(defcustom origami-parser-alist
|
|
|
|
'((java-mode . origami-c-style-parser)
|
|
|
|
(c-mode . origami-c-style-parser)
|
|
|
|
(c++-mode . origami-c-style-parser)
|
|
|
|
(emacs-lisp-mode . origami-elisp-parser)
|
|
|
|
(lisp-interaction-mode . origami-elisp-parser))
|
|
|
|
"alist mapping major-mode to parser function."
|
|
|
|
:type 'hook
|
|
|
|
:group 'origami)
|
|
|
|
|
2014-08-11 00:10:05 +10:00
|
|
|
(defun origami-pair (start children end create)
|
|
|
|
;; TODO: make this a macro so I don't have to pass in the thunk?
|
|
|
|
"CHILDREN should be a zero-arg lambda -- a thunk -- returning a
|
|
|
|
parser to allow for recursive nesting of a parser. CREATE is a
|
|
|
|
function that should build state taking the beginning, end and
|
|
|
|
children of the pair."
|
2014-08-11 01:14:14 +10:00
|
|
|
(parser-do (initial-pos <- (parser-position))
|
|
|
|
(begin <- start)
|
2014-08-11 00:10:05 +10:00
|
|
|
(children <- (funcall children))
|
|
|
|
(end <- end)
|
2014-08-11 01:14:14 +10:00
|
|
|
(parser-return (funcall create initial-pos end (- begin initial-pos) children))))
|
2014-08-11 00:10:05 +10:00
|
|
|
|
2014-08-09 23:02:37 +10:00
|
|
|
(defun origami-c-style-parser (create)
|
2014-08-11 00:10:05 +10:00
|
|
|
(let ((pair (origami-pair (parser-char "{")
|
2014-08-09 23:02:37 +10:00
|
|
|
(lambda () (origami-c-style-parser create))
|
|
|
|
(parser-char "}")
|
|
|
|
create)))
|
|
|
|
(parser-0+ (parser-conj
|
|
|
|
(parser-do
|
|
|
|
(parser-drop-until-regex "[{}]")
|
|
|
|
(parser-1? pair))
|
|
|
|
pair))))
|
|
|
|
|
2014-08-11 00:10:05 +10:00
|
|
|
(defun origami-elisp-parser (create)
|
2014-08-11 01:50:28 +10:00
|
|
|
(lambda (content)
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert (parser-content-string content))
|
|
|
|
(beginning-of-buffer)
|
|
|
|
(beginning-of-defun -1)
|
|
|
|
(let (beg end offset acc)
|
|
|
|
(while (< (point) (point-max))
|
|
|
|
(setq beg (point))
|
|
|
|
(search-forward-regexp "(def\\w*\\s-*\\(\\s_\\|\\w\\)*" nil t)
|
|
|
|
(setq offset (- (point) beg))
|
|
|
|
(end-of-defun)
|
|
|
|
(backward-char)
|
|
|
|
(setq end (point))
|
2014-08-11 01:54:21 +10:00
|
|
|
(when (> offset 0)
|
|
|
|
(setq acc (cons (funcall create beg end offset nil) acc)))
|
2014-08-11 01:50:28 +10:00
|
|
|
(beginning-of-defun -1))
|
|
|
|
(list (reverse acc))))))
|
2014-08-11 00:10:05 +10:00
|
|
|
|
2014-08-09 23:02:37 +10:00
|
|
|
(provide 'origami-parsers)
|
|
|
|
|
|
|
|
;;; parser.el ends here
|