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:
|
2014-11-16 03:38:50 +11:00
|
|
|
(require 'cl)
|
2014-08-09 23:02:37 +10:00
|
|
|
|
|
|
|
(defcustom origami-parser-alist
|
|
|
|
'((java-mode . origami-c-style-parser)
|
|
|
|
(c-mode . origami-c-style-parser)
|
|
|
|
(c++-mode . origami-c-style-parser)
|
2014-11-01 21:06:20 +11:00
|
|
|
(cperl-mode . origami-c-style-parser)
|
2014-08-09 23:02:37 +10:00
|
|
|
(emacs-lisp-mode . origami-elisp-parser)
|
2014-08-25 01:53:46 +10:00
|
|
|
(lisp-interaction-mode . origami-elisp-parser)
|
2014-08-26 03:53:52 +10:00
|
|
|
(clojure-mode . origami-clj-parser))
|
2014-08-09 23:02:37 +10:00
|
|
|
"alist mapping major-mode to parser function."
|
|
|
|
:type 'hook
|
|
|
|
:group 'origami)
|
|
|
|
|
2014-11-12 08:48:26 +11:00
|
|
|
(defun origami-get-positions (content regex)
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert content)
|
|
|
|
(beginning-of-buffer)
|
|
|
|
(let (acc)
|
|
|
|
(while (re-search-forward regex nil t)
|
|
|
|
(setq acc (cons (cons (match-string 0) (point)) acc)))
|
|
|
|
(reverse acc))))
|
|
|
|
|
2014-11-16 03:22:45 +11:00
|
|
|
(defun origami-build-pair-tree (create open close positions)
|
2014-11-16 03:38:50 +11:00
|
|
|
(cl-labels ((build (positions)
|
|
|
|
;; this is so horrible, but fast
|
|
|
|
(let (acc beg (should-continue t))
|
|
|
|
(while (and should-continue positions)
|
|
|
|
(cond ((equal (caar positions) open)
|
|
|
|
(if beg ;go down a level
|
|
|
|
(let* ((res (build positions))
|
|
|
|
(new-pos (car res))
|
|
|
|
(children (cdr res)))
|
|
|
|
(setq positions (cdr new-pos))
|
|
|
|
(setq acc (cons (funcall create beg (cdar new-pos) 0 children) acc))
|
|
|
|
(setq beg nil))
|
|
|
|
;; begin a new pair
|
|
|
|
(setq beg (cdar positions))
|
|
|
|
(setq positions (cdr positions))))
|
|
|
|
((equal (caar positions) close)
|
|
|
|
(if beg
|
|
|
|
(progn ;close with no children
|
|
|
|
(setq acc (cons (funcall create beg (cdar positions) 0 nil) acc))
|
|
|
|
(setq positions (cdr positions))
|
|
|
|
(setq beg nil))
|
|
|
|
(setq should-continue nil)))))
|
|
|
|
(cons positions (reverse acc)))))
|
|
|
|
(cdr (build positions))))
|
2014-08-11 00:10:05 +10:00
|
|
|
|
2014-08-09 23:02:37 +10:00
|
|
|
(defun origami-c-style-parser (create)
|
2014-11-12 08:48:26 +11:00
|
|
|
(lambda (content)
|
2014-11-13 08:45:40 +11:00
|
|
|
(let ((positions (origami-get-positions content "[{}]")))
|
2014-11-16 03:38:50 +11:00
|
|
|
(origami-build-pair-tree create "{" "}" positions))))
|
2014-08-09 23:02:37 +10:00
|
|
|
|
2014-08-26 03:53:52 +10:00
|
|
|
(defun origami-lisp-parser (create regex)
|
2014-08-11 01:50:28 +10:00
|
|
|
(lambda (content)
|
|
|
|
(with-temp-buffer
|
2014-11-13 08:45:40 +11:00
|
|
|
(insert content)
|
2014-08-11 01:50:28 +10:00
|
|
|
(beginning-of-buffer)
|
|
|
|
(beginning-of-defun -1)
|
|
|
|
(let (beg end offset acc)
|
|
|
|
(while (< (point) (point-max))
|
|
|
|
(setq beg (point))
|
2014-08-26 03:53:52 +10:00
|
|
|
(search-forward-regexp regex nil t)
|
2014-08-11 01:50:28 +10:00
|
|
|
(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))
|
2014-11-13 08:45:40 +11:00
|
|
|
(reverse acc)))))
|
2014-08-11 00:10:05 +10:00
|
|
|
|
2014-08-26 03:53:52 +10:00
|
|
|
(defun origami-elisp-parser (create)
|
|
|
|
(origami-lisp-parser create "(def\\w*\\s-*\\(\\s_\\|\\w\\|[?!]\\)*\\([ \\t]*(.*?)\\)?"))
|
|
|
|
|
|
|
|
(defun origami-clj-parser (create)
|
|
|
|
(origami-lisp-parser create "(def\\(\\w\\|-\\)*\\s-*\\(\\s_\\|\\w\\|[?!]\\)*\\([ \\t]*\\[.*?\\]\\)?"))
|
|
|
|
|
2014-08-09 23:02:37 +10:00
|
|
|
(provide 'origami-parsers)
|
|
|
|
|
2014-11-13 08:45:40 +11:00
|
|
|
;;; origami-parsers.el ends here
|