declare smobs in alloc.c
[bpt/emacs.git] / lisp / nxml / nxml-util.el
CommitLineData
da3e5ebb 1;;; nxml-util.el --- utility functions for nxml-*.el -*- lexical-binding:t -*-
8cd39fb3 2
ba318903 3;; Copyright (C) 2003, 2007-2014 Free Software Foundation, Inc.
8cd39fb3
MH
4
5;; Author: James Clark
3e77f05d 6;; Keywords: wp, hypermedia, languages, XML
8cd39fb3 7
09aa73e6 8;; This file is part of GNU Emacs.
8cd39fb3 9
4936186e 10;; GNU Emacs is free software: you can redistribute it and/or modify
09aa73e6 11;; it under the terms of the GNU General Public License as published by
4936186e
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
8cd39fb3 14
09aa73e6
GM
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
4936186e 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
8cd39fb3
MH
22
23;;; Commentary:
24
25;;; Code:
26
e8ec402f 27(defconst nxml-debug nil
10545bd8 28 "Enable nxml debugging. Effective only at compile time.")
e8ec402f 29
e8ec402f
MO
30(defsubst nxml-debug (format &rest args)
31 (when nxml-debug
32 (apply #'message format args)))
33
34(defmacro nxml-debug-change (name start end)
35 (when nxml-debug
36 `(nxml-debug "%s: %S" ,name
37 (buffer-substring-no-properties ,start ,end))))
38
39(defmacro nxml-debug-set-inside (start end)
40 (when nxml-debug
41 `(let ((overlay (make-overlay ,start ,end)))
42 (overlay-put overlay 'face '(:background "red"))
43 (overlay-put overlay 'nxml-inside-debug t)
44 (nxml-debug-change "nxml-set-inside" ,start ,end))))
45
46(defmacro nxml-debug-clear-inside (start end)
47 (when nxml-debug
8201a87e 48 `(cl-loop for overlay in (overlays-in ,start ,end)
e8ec402f
MO
49 if (overlay-get overlay 'nxml-inside-debug)
50 do (delete-overlay overlay)
51 finally (nxml-debug-change "nxml-clear-inside" ,start ,end))))
52
8cd39fb3
MH
53(defun nxml-make-namespace (str)
54 "Return a symbol for the namespace URI STR.
10545bd8 55STR must be a string. If STR is the empty string, return nil.
8cd39fb3
MH
56Otherwise, return the symbol whose name is STR prefixed with a colon."
57 (if (string-equal str "")
58 nil
59 (intern (concat ":" str))))
60
61(defun nxml-namespace-name (ns)
62 "Return the namespace URI corresponding to the symbol NS.
63This is the inverse of `nxml-make-namespace'."
64 (and ns (substring (symbol-name ns) 1)))
65
e8ec402f 66(defconst nxml-xml-namespace-uri
8cd39fb3
MH
67 (nxml-make-namespace "http://www.w3.org/XML/1998/namespace"))
68
69(defconst nxml-xmlns-namespace-uri
70 (nxml-make-namespace "http://www.w3.org/2000/xmlns/"))
71
e8ec402f 72(defmacro nxml-with-degradation-on-error (context &rest body)
da3e5ebb 73 (declare (indent 1) (debug t))
e8ec402f
MO
74 (if (not nxml-debug)
75 (let ((error-symbol (make-symbol "err")))
76 `(condition-case ,error-symbol
77 (progn ,@body)
78 (error
79 (nxml-degrade ,context ,error-symbol))))
80 `(progn ,@body)))
81
8cd39fb3
MH
82(defmacro nxml-with-invisible-motion (&rest body)
83 "Evaluate body without calling any point motion hooks."
da3e5ebb 84 (declare (indent 0) (debug t))
8cd39fb3
MH
85 `(let ((inhibit-point-motion-hooks t))
86 ,@body))
87
8cd39fb3
MH
88(defun nxml-display-file-parse-error (err)
89 (let* ((filename (nth 1 err))
90 (buffer (find-file-noselect filename))
91 (pos (nth 2 err))
92 (message (nth 3 err)))
93 (pop-to-buffer buffer)
94 ;; What's the right thing to do if the buffer's modified?
95 ;; The position in the saved file could be completely different.
96 (goto-char (if (buffer-modified-p) 1 pos))
97 (error "%s" message)))
98
99(defun nxml-signal-file-parse-error (file pos message &optional error-symbol)
100 (signal (or error-symbol 'nxml-file-parse-error)
101 (list file pos message)))
102
54bd972f
SM
103(define-error 'nxml-error nil)
104(define-error 'nxml-file-parse-error "Error parsing file" 'nxml-error)
8cd39fb3
MH
105
106(provide 'nxml-util)
107
108;;; nxml-util.el ends here