1 ;;; rng-valid.el --- real-time validation of XML using RELAX NG
3 ;; Copyright (C) 2003, 2007, 2008, 2009, 2010
4 ;; Free Software Foundation, Inc.
7 ;; Keywords: XML, RelaxNG
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; For usage information, see the documentation for rng-validate-mode.
28 ;; This file provides a minor mode that continually validates a buffer
29 ;; against a RELAX NG schema. The validation state is used to support
30 ;; schema-sensitive editing as well as validation. Validation is
31 ;; performed while Emacs is idle. XML parsing is done using
32 ;; xmltok.el. This file is responsible for checking that end-tags
33 ;; match their start-tags. Namespace processing is handled by
34 ;; nxml-ns.el. The RELAX NG Compact Syntax schema is parsed into
35 ;; internal form by rng-cmpct.el. This internal form is described by
36 ;; rng-pttrn.el. Validation of the document by matching against this
37 ;; internal form is done by rng-match.el. Handling of W3C XML Schema
38 ;; datatypes is delegated by rng-match.el to rng-xsd.el. The minor
39 ;; mode is intended to be used in conjunction with the nxml major
40 ;; mode, but does not have to be.
42 ;; The major responsibility of this file is to allow validation to
43 ;; happen incrementally. If a buffer has been validated and is then
44 ;; changed, we can often revalidate it without having to completely
45 ;; parse and validate it from start to end. As we parse and validate
46 ;; the buffer, we periodically cache the state. The state has three
47 ;; components: the stack of open elements, the namespace processing
48 ;; state and the RELAX NG validation state. The state is cached as the
49 ;; value of the rng-state text property on the closing greater-than of
50 ;; tags (but at intervals, not on every tag). We keep track of the
51 ;; position up to which cached state is known to be correct by adding
52 ;; a function to the buffer's after-change-functions. This is stored
53 ;; in the rng-validate-up-to-date-end variable. The first way in
54 ;; which we make validation incremental is obvious: we start
55 ;; validation from the first cached state before
56 ;; rng-validate-up-to-date-end.
58 ;; To make this work efficiently, we have to be able to copy the
59 ;; current parsing and validation state efficiently. We do this by
60 ;; minimizing destructive changes to the objects storing the state.
61 ;; When state is changed, we use the old state to create new objects
62 ;; representing the new state rather than destructively modifying the
63 ;; objects representing the old state. Copying the state is just a
64 ;; matter of making a list of three objects, one for each component of
65 ;; the state; the three objects themselves can be shared and do not
68 ;; There's one other idea that is used to make validation incremental.
69 ;; Suppose we have a buffer that's 4000 bytes long and suppose we
70 ;; validated it, caching state at positions 1000, 2000 and 3000. Now
71 ;; suppose we make a change at position 1500 inserting 100 characters.
72 ;; rng-validate-up-to-date-end will be changed to 1500. When Emacs
73 ;; becomes idle and we revalidate, validation will restart using the
74 ;; cached state at position 1000. However, we take advantage of the
75 ;; cached state beyond rng-validate-up-to-date-end as follows. When
76 ;; our validation reaches position 2100 (the current position of the
77 ;; character that was at 2000), we compare our current state with the
78 ;; cached state. If they are the same, then we can stop parsing
79 ;; immediately and set rng-validate-up-to-date-end to the end of the
80 ;; buffer: we already know that the state cached at position 3100 is
81 ;; correct. If they are not the same, then we have to continue
82 ;; parsing. After the change, but before revalidation, we call the
83 ;; region from 1600 to the end of the buffer "conditionally
86 ;; As well as the cached parsing and validation state, we also keep
87 ;; track of the errors in the file. Errors are stored as overlays
88 ;; with a category of rng-error. The number of such overlays in the
89 ;; buffer must always be equal to rng-error-count.
101 ;;; Customizable variables
103 (defgroup relax-ng nil
104 "Validation of XML using RELAX NG."
109 (defface rng-error
'((t (:inherit font-lock-warning-face
)))
110 "Face for highlighting XML errors."
113 (defcustom rng-state-cache-distance
2000
114 "Distance in characters between each parsing and validation state cache."
118 (defcustom rng-validate-chunk-size
8000
119 "Number of characters in a RELAX NG validation chunk.
120 A validation chunk will be the smallest chunk that is at least this
121 size and ends with a tag. After validating a chunk, validation will
122 continue only if Emacs is still idle."
126 (defcustom rng-validate-delay
1.5
127 "Time in seconds that Emacs must be idle before starting a full validation.
128 A full validation continues until either validation is up to date
129 or Emacs is no longer idle."
133 (defcustom rng-validate-quick-delay
0.3
134 "Time in seconds that Emacs must be idle before starting a quick validation.
135 A quick validation validates at most one chunk."
141 (defvar rng-validate-timer nil
)
142 (make-variable-buffer-local 'rng-validate-timer
)
143 ;; ensure that we can cancel the timer even after a kill-all-local-variables
144 (put 'rng-validate-timer
'permanent-local t
)
146 (defvar rng-validate-quick-timer nil
)
147 (make-variable-buffer-local 'rng-validate-quick-timer
)
148 ;; ensure that we can cancel the timer even after a kill-all-local-variables
149 (put 'rng-validate-quick-timer
'permanent-local t
)
151 (defvar rng-error-count nil
152 "Number of errors in the current buffer.
153 Always equal to number of overlays with category `rng-error'.")
154 (make-variable-buffer-local 'rng-error-count
)
156 (defvar rng-message-overlay nil
157 "Overlay in this buffer whose `help-echo' property was last printed.
159 (make-variable-buffer-local 'rng-message-overlay
)
161 (defvar rng-message-overlay-inhibit-point nil
162 "Position at which message from overlay should be inhibited.
163 If point is equal to this and the error overlay around
164 point is `rng-message-overlay', then the `help-echo' property
165 of the error overlay should not be printed with `message'.")
166 (make-variable-buffer-local 'rng-message-overlay-inhibit-point
)
168 (defvar rng-message-overlay-current nil
169 "Non-nil if `rng-message-overlay' is still the current message.")
170 (make-variable-buffer-local 'rng-message-overlay-current
)
172 (defvar rng-open-elements nil
173 "Stack of names of open elements represented as a list.
174 Each member of the list is either t or a (PREFIX . LOCAL-NAME) pair.
175 \(PREFIX . LOCAL-NAME) is pushed for a start-tag; t is pushed
176 for a mismatched end-tag.")
178 (defvar rng-pending-contents nil
179 "Text content of current element that has yet to be processed.
180 Value is a list of segments (VALUE START END) positions in reverse
181 order. VALUE is a string or nil. If VALUE is nil, then the value is
182 the string between START and END. A segment can also be nil
183 indicating an unresolvable entity or character reference.")
185 (defvar rng-collecting-text nil
)
187 (defvar rng-validate-up-to-date-end nil
188 "Last position where validation is known to be up to date.")
189 (make-variable-buffer-local 'rng-validate-up-to-date-end
)
191 (defvar rng-conditional-up-to-date-start nil
192 "Marker for the start of the conditionally up-to-date region.
193 It is nil if there is no conditionally up-to-date region. The
194 conditionally up-to-date region must be such that for any cached
195 state S with position P in the conditionally up-to-date region,
196 if at some point it is determined that S becomes correct for P,
197 then all states with position >= P in the conditionally up to
198 date region must also then be correct and all errors between P
199 and the end of the region must then be correctly marked.")
200 (make-variable-buffer-local 'rng-conditional-up-to-date-start
)
202 (defvar rng-conditional-up-to-date-end nil
203 "Marker for the end of the conditionally up-to-date region.
204 It is nil if there is no conditionally up-to-date region.
205 See the variable `rng-conditional-up-to-date-start'.")
206 (make-variable-buffer-local 'rng-conditional-up-to-date-end
)
208 (defvar rng-parsing-for-state nil
209 "Non-nil means we are currently parsing just to compute the state.
210 Should be dynamically bound.")
212 (defvar rng-validate-mode nil
)
213 (make-variable-buffer-local 'rng-validate-mode
)
216 (make-variable-buffer-local 'rng-dtd
)
219 (defun rng-validate-mode (&optional arg no-change-schema
)
220 "Minor mode performing continual validation against a RELAX NG schema.
222 Checks whether the buffer is a well-formed XML 1.0 document,
223 conforming to the XML Namespaces Recommendation and valid against a
224 RELAX NG schema. The mode-line indicates whether it is or not. Any
225 parts of the buffer that cause it not to be are considered errors and
226 are highlighted with face `rng-error'. A description of each error is
227 available as a tooltip. \\[rng-next-error] goes to the next error
228 after point. Clicking mouse-1 on the word `Invalid' in the mode-line
229 goes to the first error in the buffer. If the buffer changes, then it
230 will be automatically rechecked when Emacs becomes idle; the
231 rechecking will be paused whenever there is input pending.
233 By default, uses a vacuous schema that allows any well-formed XML
234 document. A schema can be specified explictly using
235 \\[rng-set-schema-file-and-validate], or implicitly based on the buffer's
236 file name or on the root element name. In each case the schema must
237 be a RELAX NG schema using the compact schema \(such schemas
238 conventionally have a suffix of `.rnc'). The variable
239 `rng-schema-locating-files' specifies files containing rules
240 to use for finding the schema."
242 (setq rng-validate-mode
244 (not rng-validate-mode
)
245 (> (prefix-numeric-value arg
) 0)))
248 (nxml-with-unmodifying-text-property-changes
249 (rng-clear-cached-state (point-min) (point-max)))
250 ;; 1+ to clear empty overlays at (point-max)
251 (rng-clear-overlays (point-min) (1+ (point-max)))
252 (setq rng-validate-up-to-date-end
(point-min)))
253 (rng-clear-conditional-region)
254 (setq rng-error-count
0)
255 ;; do this here to avoid infinite loop if we set the schema
256 (remove-hook 'rng-schema-change-hook
'rng-validate-clear t
)
257 (cond (rng-validate-mode
260 ;; An error can change the current buffer
261 (when (or (not rng-current-schema
)
262 (and (eq rng-current-schema rng-any-element
)
263 (not no-change-schema
)))
264 (rng-auto-set-schema t
)))
265 (unless rng-current-schema
(rng-set-schema-file-1 nil
))
266 (add-hook 'rng-schema-change-hook
'rng-validate-clear nil t
)
267 (add-hook 'after-change-functions
'rng-after-change-function nil t
)
268 (add-hook 'kill-buffer-hook
'rng-kill-timers nil t
)
269 (add-hook 'echo-area-clear-hook
'rng-echo-area-clear-function nil t
)
270 (add-hook 'post-command-hook
'rng-maybe-echo-error-at-point nil t
)
271 (rng-match-init-buffer)
272 (rng-activate-timers)
273 ;; Start validating right away if the buffer is visible.
274 ;; If it's not visible, don't do this, because the user
275 ;; won't get any progress indication. When the user finds
276 ;; a new file, then the buffer won't be visible
277 ;; when this is invoked.
278 (when (get-buffer-window (current-buffer) 'visible
)
279 (rng-validate-while-idle (current-buffer)))))
282 (force-mode-line-update)
283 (remove-hook 'kill-buffer-hook
'rng-cancel-timers t
)
284 (remove-hook 'post-command-hook
'rng-maybe-echo-error-at-point t
)
285 (remove-hook 'echo-area-clear-hook
'rng-echo-area-clear-function t
)
286 (remove-hook 'after-change-functions
'rng-after-change-function t
))))
288 (defun rng-set-schema-file-and-validate (filename)
289 "Sets the schema and turns on `rng-validate-mode' if not already on.
290 The schema is set like `rng-set-schema'."
291 (interactive "fSchema file: ")
292 (rng-set-schema-file filename
)
293 (or rng-validate-mode
(rng-validate-mode)))
295 (defun rng-set-document-type-and-validate (type-id)
296 (interactive (list (rng-read-type-id)))
297 (and (rng-set-document-type type-id
)
298 (or rng-validate-mode
(rng-validate-mode))))
300 (defun rng-auto-set-schema-and-validate ()
301 "Set the schema for this buffer automatically and turn on `rng-validate-mode'.
302 The schema is set like `rng-auto-set-schema'."
304 (rng-auto-set-schema)
305 (or rng-validate-mode
(rng-validate-mode)))
307 (defun rng-after-change-function (start end pre-change-len
)
308 (setq rng-message-overlay-inhibit-point nil
)
309 (nxml-with-unmodifying-text-property-changes
310 (rng-clear-cached-state start end
))
311 ;; rng-validate-up-to-date-end holds the position before the change
312 ;; Adjust it to reflect the change.
313 (if (< start rng-validate-up-to-date-end
)
314 (setq rng-validate-up-to-date-end
315 (if (<= (+ start pre-change-len
) rng-validate-up-to-date-end
)
316 (+ rng-validate-up-to-date-end
317 (- end start pre-change-len
))
319 ;; Adjust the conditional zone
320 (cond (rng-conditional-up-to-date-start
321 (when (< rng-conditional-up-to-date-start end
)
322 (if (< end rng-conditional-up-to-date-end
)
323 (set-marker rng-conditional-up-to-date-start end
)
324 (rng-clear-conditional-region))))
325 ((< end rng-validate-up-to-date-end
)
326 (setq rng-conditional-up-to-date-end
327 (copy-marker rng-validate-up-to-date-end nil
))
328 (setq rng-conditional-up-to-date-start
329 (copy-marker end t
))))
330 ;; Adjust rng-validate-up-to-date-end
331 (if (< start rng-validate-up-to-date-end
)
332 (setq rng-validate-up-to-date-end start
))
333 ;; Must make rng-validate-up-to-date-end < point-max
334 ;; (unless the buffer is empty).
335 ;; otherwise rng-validate-prepare will say there's nothing to do.
336 (when (>= rng-validate-up-to-date-end
(point-max))
337 (setq rng-validate-up-to-date-end
338 (if (< (point-min) (point-max))
340 ;; Only widen if really necessary.
341 (save-restriction (widen) (max (point-min) (1- (point-max)))))))
342 ;; Arrange to revalidate
343 (rng-activate-timers)
344 ;; Need to do this after activating the timer
345 (force-mode-line-update))
347 (defun rng-compute-mode-line-string ()
348 (cond (rng-validate-timer
349 (concat " Validated:"
351 ;; Use floor rather than round because we want
352 ;; to show 99% rather than 100% for changes near
354 (floor (if (eq (buffer-size) 0)
356 (/ (* (- rng-validate-up-to-date-end
(point-min))
358 (- (point-max) (point-min))))))
360 ((> rng-error-count
0)
362 (propertize "Invalid"
363 'help-echo
"mouse-1: go to first error"
364 'local-map
(make-mode-line-mouse-map
366 'rng-mouse-first-error
))))
369 (defun rng-cancel-timers ()
370 (let ((inhibit-quit t
))
371 (when rng-validate-timer
372 (cancel-timer rng-validate-timer
)
373 (setq rng-validate-timer nil
))
374 (when rng-validate-quick-timer
375 (cancel-timer rng-validate-quick-timer
)
376 (setq rng-validate-quick-timer nil
))))
378 (defun rng-kill-timers ()
379 ;; rng-validate-timer and rng-validate-quick-timer have the
380 ;; permanent-local property, so that the timers can be
381 ;; cancelled even after changing mode.
382 ;; This function takes care of cancelling the timers and
383 ;; then killing the local variables.
384 (when (local-variable-p 'rng-validate-timer
)
385 (when rng-validate-timer
386 (cancel-timer rng-validate-timer
))
387 (kill-local-variable 'rng-validate-timer
))
388 (when (local-variable-p 'rng-validate-quick-timer
)
389 (when rng-validate-quick-timer
390 (cancel-timer rng-validate-quick-timer
))
391 (kill-local-variable 'rng-validate-quick-timer
)))
393 (defun rng-activate-timers ()
394 (unless rng-validate-timer
395 (let ((inhibit-quit t
))
396 (setq rng-validate-timer
397 (run-with-idle-timer rng-validate-delay
399 'rng-validate-while-idle
401 (setq rng-validate-quick-timer
402 (run-with-idle-timer rng-validate-quick-delay
404 'rng-validate-quick-while-idle
405 (current-buffer))))))
407 (defun rng-validate-clear ()
408 (rng-validate-mode 1 t
))
410 ;; These two variables are dynamically bound and used
411 ;; to pass information between rng-validate-while-idle
412 ;; and rng-validate-while-idle-continue-p.
414 (defvar rng-validate-display-point nil
)
415 (defvar rng-validate-display-modified-p nil
)
417 (defun rng-validate-while-idle-continue-p ()
418 ;; input-pending-p and sit-for run timers that are
419 ;; ripe. Binding timer-idle-list to nil prevents
420 ;; this. If we don't do this, then any ripe timers
421 ;; will get run, and we won't get any chance to
422 ;; validate until Emacs becomes idle again or until
423 ;; the other lower priority timers finish (which
424 ;; can take a very long time in the case of
426 (let ((timer-idle-list nil
))
427 (and (not (input-pending-p))
428 ;; Fake rng-validate-up-to-date-end so that the mode line
429 ;; shows progress. Also use this to save point.
430 (let ((rng-validate-up-to-date-end (point)))
431 (goto-char rng-validate-display-point
)
432 (when (not rng-validate-display-modified-p
)
433 (restore-buffer-modified-p nil
))
434 (force-mode-line-update)
435 (let ((continue (sit-for 0)))
436 (goto-char rng-validate-up-to-date-end
)
439 ;; Calling rng-do-some-validation once with a continue-p function, as
440 ;; opposed to calling it repeatedly, helps on initial validation of a
441 ;; large buffer with lots of errors. The overlays for errors will all
442 ;; get added when rng-do-some-validation returns and won't slow the
443 ;; validation process down.
445 (defun rng-validate-while-idle (buffer)
446 (with-current-buffer buffer
447 (if rng-validate-mode
448 (if (let ((rng-validate-display-point (point))
449 (rng-validate-display-modified-p (buffer-modified-p)))
450 (rng-do-some-validation 'rng-validate-while-idle-continue-p
))
451 (force-mode-line-update)
453 ;; must have done kill-all-local-variables
456 (defun rng-validate-quick-while-idle (buffer)
457 (with-current-buffer buffer
458 (if rng-validate-mode
459 (if (rng-do-some-validation)
460 (force-mode-line-update)
462 ;; must have done kill-all-local-variables
465 (defun rng-validate-done ()
466 (when (or (not (current-message))
467 (rng-current-message-from-error-overlay-p))
468 (rng-error-overlay-message (or (rng-error-overlay-after (point))
469 (rng-error-overlay-after (1- (point))))))
471 (force-mode-line-update))
473 (defun rng-do-some-validation (&optional continue-p-function
)
474 "Do some validation work. Return t if more to do, nil otherwise."
478 (nxml-with-invisible-motion
479 (condition-case-no-debug err
480 (and (rng-validate-prepare)
481 (let ((rng-dt-namespace-context-getter '(nxml-ns-get-context)))
482 (nxml-with-unmodifying-text-property-changes
483 (rng-do-some-validation-1 continue-p-function
))))
484 ;; errors signaled from a function run by an idle timer
485 ;; are ignored; if we don't catch them, validation
486 ;; will get mysteriously stuck at a single place
488 (message "Incorrect schema. %s" (nth 1 err
))
489 (rng-validate-mode 0)
492 (message "Internal error in rng-validate-mode triggered at buffer position %d. %s"
494 (error-message-string err
))
495 (rng-validate-mode 0)
498 (defun rng-validate-prepare ()
499 "Prepare to do some validation, initializing point and the state.
500 Return t if there is work to do, nil otherwise."
501 (cond ((= rng-validate-up-to-date-end
(point-min))
502 (rng-set-initial-state)
504 ((= rng-validate-up-to-date-end
(point-max))
506 (t (let ((state (get-text-property (1- rng-validate-up-to-date-end
)
509 (rng-restore-state state
)
510 (goto-char rng-validate-up-to-date-end
))
512 (let ((pos (previous-single-property-change
513 rng-validate-up-to-date-end
517 (or (get-text-property (1- pos
) 'rng-state
)
518 (error "Internal error: state null")))
520 (t (rng-set-initial-state))))))))))
522 (defun rng-dtd-trivial-p (dtd)
523 "Check whether the current dtd is different from the trivial default."
524 (or (null dtd
) (eq dtd xmltok-predefined-entity-alist
)))
526 (defun rng-do-some-validation-1 (&optional continue-p-function
)
527 (let ((limit (+ rng-validate-up-to-date-end
528 rng-validate-chunk-size
))
529 (remove-start rng-validate-up-to-date-end
)
530 (next-cache-point (+ (point) rng-state-cache-distance
))
540 xmltok-namespace-attributes
541 xmltok-dependent-regions
544 (let ((regions (xmltok-forward-prolog)))
545 (rng-clear-overlays 1 (point))
547 (when (eq (aref (car regions
) 0) 'encoding-name
)
548 (rng-process-encoding-name (aref (car regions
) 1)
549 (aref (car regions
) 2)))
550 (setq regions
(cdr regions
))))
551 (unless (equal rng-dtd xmltok-dtd
)
552 (rng-clear-conditional-region))
553 (setq rng-dtd xmltok-dtd
))
555 (setq have-remaining-chars
(rng-forward))
558 (and have-remaining-chars
560 (and continue-p-function
561 (funcall continue-p-function
)
562 (setq limit
(+ limit rng-validate-chunk-size
))
564 (cond ((and rng-conditional-up-to-date-start
565 ;; > because we are getting the state from (1- pos)
566 (> pos rng-conditional-up-to-date-start
)
567 (< pos rng-conditional-up-to-date-end
)
568 (rng-state-matches-current (get-text-property (1- pos
)
570 (when (< remove-start
(1- pos
))
571 (rng-clear-cached-state remove-start
(1- pos
)))
572 ;; sync up with cached validation state
574 ;; do this before settting rng-validate-up-to-date-end
575 ;; in case we get a quit
576 (rng-mark-xmltok-errors)
577 (rng-mark-xmltok-dependent-regions)
578 (setq rng-validate-up-to-date-end
579 (marker-position rng-conditional-up-to-date-end
))
580 (rng-clear-conditional-region)
581 (setq have-remaining-chars
582 (< rng-validate-up-to-date-end
(point-max))))
583 ((or (>= pos next-cache-point
)
585 (setq next-cache-point
(+ pos rng-state-cache-distance
))
586 (rng-clear-cached-state remove-start pos
)
587 (when have-remaining-chars
588 (rng-cache-state (1- pos
)))
589 (setq remove-start pos
)
591 ;; if we have just blank chars skip to the end
592 (when have-remaining-chars
593 (skip-chars-forward " \t\r\n")
594 (when (= (point) (point-max))
595 (rng-clear-overlays pos
(point))
596 (rng-clear-cached-state pos
(point))
597 (setq have-remaining-chars nil
)
599 (when (not have-remaining-chars
)
600 (rng-process-end-document))
601 (rng-mark-xmltok-errors)
602 (rng-mark-xmltok-dependent-regions)
603 (setq rng-validate-up-to-date-end pos
)
604 (when rng-conditional-up-to-date-end
605 (cond ((<= rng-conditional-up-to-date-end pos
)
606 (rng-clear-conditional-region))
607 ((< rng-conditional-up-to-date-start pos
)
608 (set-marker rng-conditional-up-to-date-start
610 have-remaining-chars
))
612 (defun rng-clear-conditional-region ()
613 (when rng-conditional-up-to-date-start
614 (set-marker rng-conditional-up-to-date-start nil
)
615 (setq rng-conditional-up-to-date-start nil
))
616 (when rng-conditional-up-to-date-end
617 (set-marker rng-conditional-up-to-date-end nil
)
618 (setq rng-conditional-up-to-date-end nil
)))
620 (defun rng-clear-cached-state (start end
)
621 "Clear cached state between START and END."
622 (remove-text-properties start end
'(rng-state nil
)))
624 (defun rng-cache-state (pos)
625 "Save the current state in a text property on the character at pos."
626 (put-text-property pos
631 (defun rng-state-matches-current (state)
633 (rng-match-state-equal (car state
))
634 (nxml-ns-state-equal (nth 1 state
))
635 (equal (nth 2 state
) rng-open-elements
)))
637 (defun rng-get-state ()
638 (list (rng-match-state)
642 (defun rng-restore-state (state)
643 (rng-set-match-state (car state
))
644 (setq state
(cdr state
))
645 (nxml-ns-set-state (car state
))
646 (setq rng-open-elements
(cadr state
))
647 (setq rng-pending-contents nil
)
648 (setq rng-collecting-text
(rng-match-text-typed-p)))
650 (defun rng-set-initial-state ()
652 (rng-match-start-document)
653 (setq rng-open-elements nil
)
654 (setq rng-pending-contents nil
)
655 (goto-char (point-min)))
657 (defun rng-clear-overlays (beg end
)
658 (unless rng-parsing-for-state
659 (let ((overlays (overlays-in beg end
)))
661 (let* ((overlay (car overlays
))
662 (category (overlay-get overlay
'category
)))
663 (cond ((eq category
'rng-error
)
664 (let ((inhibit-quit t
))
665 (when (eq overlay rng-message-overlay
)
666 (rng-error-overlay-message nil
))
667 (delete-overlay overlay
)
668 ;; rng-error-count could be nil
669 ;; if overlays left over from a previous use
670 ;; of rng-validate-mode that ended with a change of mode
671 (when rng-error-count
672 (setq rng-error-count
(1- rng-error-count
)))))
673 ((and (eq category
'rng-dependent
)
674 (<= beg
(overlay-start overlay
)))
675 (delete-overlay overlay
))))
676 (setq overlays
(cdr overlays
))))))
678 ;;; Dependent regions
680 (defun rng-mark-xmltok-dependent-regions ()
681 (while xmltok-dependent-regions
682 (apply 'rng-mark-xmltok-dependent-region
683 (car xmltok-dependent-regions
))
684 (setq xmltok-dependent-regions
685 (cdr xmltok-dependent-regions
))))
687 (defun rng-mark-xmltok-dependent-region (fun start end
&rest args
)
688 (let ((overlay (make-overlay start end nil t t
)))
689 (overlay-put overlay
'category
'rng-dependent
)
690 (overlay-put overlay
'rng-funargs
(cons fun args
))))
692 (put 'rng-dependent
'evaporate t
)
693 (put 'rng-dependent
'modification-hooks
'(rng-dependent-region-changed))
694 (put 'rng-dependent
'insert-behind-hooks
'(rng-dependent-region-changed))
696 (defun rng-dependent-region-changed (overlay
700 &optional pre-change-length
)
702 ;; Emacs sometimes appears to call deleted overlays
703 (overlay-start overlay
)
704 (let ((funargs (overlay-get overlay
'rng-funargs
)))
710 (append (list change-start
713 (overlay-start overlay
)
714 (overlay-end overlay
))
716 (rng-after-change-function (overlay-start overlay
)
719 (- (overlay-start overlay
)
721 (delete-overlay overlay
)))
725 (defun rng-mark-xmltok-errors ()
727 (let ((err (car xmltok-errors
)))
728 (rng-mark-not-well-formed (xmltok-error-message err
)
729 (xmltok-error-start err
)
730 (xmltok-error-end err
)))
731 (setq xmltok-errors
(cdr xmltok-errors
))))
733 (defun rng-mark-invalid (message beg end
)
734 (rng-mark-error message beg end
))
736 (defun rng-mark-not-well-formed (message beg end
)
737 ;; Don't try to validate further
738 ;;(rng-set-match-state rng-not-allowed-ipattern)
739 (rng-mark-error message beg end
))
741 (defun rng-mark-error (message beg end
)
742 (unless rng-parsing-for-state
743 (let ((overlays (overlays-in beg end
)))
744 (while (and overlays message
)
745 (let ((o (car overlays
)))
746 (when (and (eq (overlay-get o
'category
) 'rng-error
)
747 (= (overlay-start o
) beg
)
748 (= (overlay-end o
) end
))
751 (concat (overlay-get o
'help-echo
)
755 (setq overlays
(cdr overlays
))))
757 (let ((inhibit-quit t
))
758 (setq rng-error-count
(1+ rng-error-count
))
760 (make-overlay beg end nil t
761 ;; Need to make the rear delimiter advance
762 ;; with the front delimiter when the overlay
763 ;; is empty, otherwise the front delimiter
764 ;; will move past the rear delimiter.
766 ;; Ensure when we have two overlapping messages, the help-echo
767 ;; of the one that starts first is shown
768 (overlay-put overlay
'priority beg
)
769 (overlay-put overlay
'category
'rng-error
)
770 (overlay-put overlay
'help-echo message
))))))
772 (put 'rng-error
'face
'rng-error
)
773 (put 'rng-error
'modification-hooks
'(rng-error-modified))
775 ;; If we don't do this, then the front delimiter can move
776 ;; past the end delimiter.
777 (defun rng-error-modified (overlay after-p beg end
&optional pre-change-len
)
779 (overlay-start overlay
) ; check not deleted
780 (>= (overlay-start overlay
)
781 (overlay-end overlay
)))
782 (let ((inhibit-quit t
))
783 (delete-overlay overlay
)
784 (setq rng-error-count
(1- rng-error-count
)))))
786 (defun rng-echo-area-clear-function ()
787 (setq rng-message-overlay-current nil
))
791 (defun rng-maybe-echo-error-at-point ()
792 (when (or (not (current-message))
793 (rng-current-message-from-error-overlay-p))
794 (rng-error-overlay-message (rng-error-overlay-after (point)))))
796 (defun rng-error-overlay-after (pos)
797 (let ((overlays (overlays-in pos
(1+ pos
)))
800 (let ((overlay (car overlays
)))
801 (when (and (eq (overlay-get overlay
'category
)
804 (< (overlay-start best
)
805 (overlay-start overlay
))))
806 (setq best overlay
)))
807 (setq overlays
(cdr overlays
)))
810 (defun rng-first-error ()
811 "Go to the first validation error.
812 Turn on `rng-validate-mode' if it is not already on."
814 (or rng-validate-mode
(rng-validate-mode))
815 (rng-do-some-validation)
816 (let ((err (rng-find-next-error-overlay (1- (point-min)))))
818 (rng-goto-error-overlay err
)
819 (let ((pos (save-excursion
820 (goto-char (point-min))
821 (rng-next-error 1))))
825 (defun rng-mouse-first-error (event)
826 "Go to the first validation error from a mouse click."
828 (select-window (posn-window (event-start event
)))
831 (defun rng-next-error (arg)
832 "Go to the next validation error after point.
833 Turn on `rng-validate-mode' if it is not already on.
834 A prefix ARG specifies how many errors to move.
835 A negative ARG moves backwards. Just \\[universal-argument] as a prefix
836 means goto the first error."
840 (or rng-validate-mode
(rng-validate-mode))
841 (setq arg
(prefix-numeric-value arg
))
843 (rng-previous-error-1 (- arg
))
844 (rng-next-error-1 arg
))))
846 (defun rng-previous-error (arg)
847 "Go to the previous validation error before point.
848 Turn on `rng-validate-mode' if it is not already on.
849 A prefix ARG specifies how many errors to move.
850 A negative ARG moves forwards. Just \\[universal-argument] as a prefix
851 means goto the first error."
855 (or rng-validate-mode
(rng-validate-mode))
856 (setq arg
(prefix-numeric-value arg
))
858 (rng-next-error-1 (- arg
))
859 (rng-previous-error-1 arg
))))
861 (defun rng-next-error-1 (arg)
864 (while (and (> arg
0)
865 (setq err
(rng-find-next-error-overlay pos
)))
868 (setq pos
(overlay-start err
)))
870 (setq pos
(max pos
(1- rng-validate-up-to-date-end
)))
871 (when (< rng-validate-up-to-date-end
(point-max))
872 (message "Parsing...")
873 (while (let ((more-to-do (rng-do-some-validation)))
874 (while (and (> arg
0)
875 (setq err
(rng-find-next-error-overlay pos
)))
878 (setq pos
(overlay-start err
)))
881 (< rng-validate-up-to-date-end
(point-max)))
882 ;; Display percentage validated.
883 (force-mode-line-update)
884 ;; Force redisplay but don't allow idle timers to run.
885 (let ((timer-idle-list nil
))
888 (max pos
(1- rng-validate-up-to-date-end
)))
891 (rng-goto-error-overlay last-err
)
892 (message "No more errors")
895 (defun rng-previous-error-1 (arg)
898 (while (and (> arg
0)
899 (setq err
(rng-find-previous-error-overlay pos
)))
900 (setq pos
(overlay-start err
))
904 (< rng-validate-up-to-date-end
(min pos
(point-max))))
905 (message "Parsing...")
906 (while (and (rng-do-some-validation)
907 (< rng-validate-up-to-date-end
(min pos
(point-max))))
908 (force-mode-line-update)
909 ;; Force redisplay but don't allow idle timers to run.
910 (let ((timer-idle-list nil
))
912 (while (and (> arg
0)
913 (setq err
(rng-find-previous-error-overlay pos
)))
914 (setq pos
(overlay-start err
))
916 (setq arg
(1- arg
))))
918 (rng-goto-error-overlay last-err
)
919 (message "No previous errors")
922 (defun rng-goto-error-overlay (err)
923 "Goto the start of error overlay ERR and print its message."
924 (goto-char (overlay-start err
))
925 (setq rng-message-overlay-inhibit-point nil
)
926 (rng-error-overlay-message err
))
928 (defun rng-error-overlay-message (err)
930 (unless (or (and (eq rng-message-overlay-inhibit-point
(point))
931 (eq rng-message-overlay err
))
933 (message "%s" (overlay-get err
'help-echo
))
934 (setq rng-message-overlay-current t
)
935 (setq rng-message-overlay-inhibit-point
(point)))
936 (when (rng-current-message-from-error-overlay-p)
938 (setq rng-message-overlay-inhibit-point nil
))
939 (setq rng-message-overlay err
))
941 (defun rng-current-message-from-error-overlay-p ()
942 (and rng-message-overlay-current
944 (equal (overlay-get rng-message-overlay
'help-echo
)
947 (defun rng-find-next-error-overlay (pos)
948 "Return the overlay for the next error starting after POS.
949 Return nil if there is no such overlay or it is out of date.
950 Do not do any additional validation."
951 (when rng-error-count
952 (let (done found overlays
)
955 (let ((overlay (car overlays
)))
956 (setq overlays
(cdr overlays
))
957 (when (and (eq (overlay-get overlay
'category
) 'rng-error
)
959 (= (overlay-start overlay
) pos
)
961 (<= (overlay-end overlay
)
962 rng-validate-up-to-date-end
))
964 (setq found overlay
))))
965 ((or (= pos
(point-max))
966 (> (setq pos
(next-overlay-change pos
))
967 rng-validate-up-to-date-end
))
969 (t (setq overlays
(overlays-in pos
(1+ pos
))))))
972 (defun rng-find-previous-error-overlay (pos)
973 "Return the overlay for the last error starting before POS.
974 Return nil if there is no such overlay or it is out of date.
975 Do not do any additional validation."
976 (when (and rng-error-count
977 (<= pos rng-validate-up-to-date-end
))
978 (let (done found overlays
)
981 (let ((overlay (car overlays
)))
982 (setq overlays
(cdr overlays
))
983 (when (and (eq (overlay-get overlay
'category
) 'rng-error
)
985 (= (overlay-start overlay
) pos
))
987 (setq found overlay
))))
991 (setq pos
(previous-overlay-change pos
))
992 (setq overlays
(overlays-in pos
(1+ pos
))))))
997 (defun rng-forward (&optional limit
)
998 "Move forward over one or more tokens updating the state.
999 If LIMIT is nil, stop after tags.
1000 If LIMIT is non-nil, stop when end of last token parsed is >= LIMIT.
1001 Return nil at end of buffer, t otherwise."
1004 (setq type
(xmltok-forward))
1005 (rng-clear-overlays xmltok-start
(point))
1007 (cond ((eq type
'start-tag
)
1008 (rng-process-start-tag 'start-tag
)
1011 (rng-process-end-tag)
1013 ((eq type
'empty-element
)
1014 (rng-process-start-tag 'empty-element
)
1017 (rng-process-text xmltok-start nil t
)
1020 (rng-process-text xmltok-start nil nil
)
1022 ((memq type
'(entity-ref char-ref
))
1023 (cond (xmltok-replacement
1024 (rng-process-text xmltok-start
1027 xmltok-replacement
))
1028 ((eq type
'char-ref
)
1029 (rng-process-unknown-char))
1031 (rng-process-unknown-entity)))
1033 ((eq type
'cdata-section
)
1034 (rng-process-text (+ xmltok-start
9) ; "<![CDATA["
1035 (- (point) 3) ; "]]>"
1038 ((eq type
'partial-start-tag
)
1039 (rng-process-start-tag 'partial-start-tag
)
1041 ((eq type
'partial-empty-element
)
1042 (rng-process-start-tag 'empty-element
)
1044 ((eq type
'partial-end-tag
)
1045 (rng-process-end-tag 'partial
)
1053 (defun rng-process-start-tag (tag-type)
1054 "TAG-TYPE is `start-tag' for a start-tag, `empty-element' for
1055 an empty element. `partial-empty-element' should be passed
1057 (and rng-collecting-text
(rng-flush-text))
1058 (setq rng-collecting-text nil
)
1059 (setq rng-pending-contents nil
)
1060 (rng-process-namespaces)
1061 (let ((tag (rng-process-tag-name)))
1062 (rng-process-attributes)
1063 ;; set the state appropriately
1064 (cond ((eq tag-type
'empty-element
)
1065 (rng-process-start-tag-close)
1066 ;; deal with missing content with empty element
1067 (when (not (rng-match-empty-content))
1069 (rng-mark-start-tag-close "Empty content not allowed"))
1070 (nxml-ns-pop-state))
1071 ((eq tag-type
'start-tag
)
1072 (rng-process-start-tag-close)
1073 (setq rng-collecting-text
(rng-match-text-typed-p))
1075 ((eq tag-type
'partial-start-tag
)
1076 (rng-process-start-tag-close)
1078 (nxml-ns-pop-state)))))
1080 (defun rng-process-namespaces ()
1081 (let ((nsatts xmltok-namespace-attributes
)
1083 (nxml-ns-push-state)
1085 (let* ((att (car nsatts
))
1086 (value (xmltok-attribute-value att
)))
1088 (let ((ns (nxml-make-namespace value
))
1089 (prefix (and (xmltok-attribute-prefix att
)
1090 (xmltok-attribute-local-name att
))))
1091 (cond ((member prefix prefixes
)
1092 (rng-mark-invalid "Duplicate namespace declaration"
1093 (xmltok-attribute-name-start att
)
1094 (xmltok-attribute-name-end att
)))
1096 (nxml-ns-set-default ns
))
1098 (nxml-ns-set-prefix prefix ns
))
1100 ;; cannot have xmlns:foo=""
1101 (rng-mark-invalid "Namespace prefix cannot be undeclared"
1102 (1- (xmltok-attribute-value-start att
))
1103 (1+ (xmltok-attribute-value-end att
)))))
1104 (setq prefixes
(cons prefix prefixes
)))))
1105 (setq nsatts
(cdr nsatts
)))))
1107 (defun rng-process-tag-name ()
1108 (let* ((prefix (xmltok-start-tag-prefix))
1109 (local-name (xmltok-start-tag-local-name))
1112 (let ((ns (nxml-ns-get-prefix prefix
)))
1113 (cond (ns (cons ns local-name
))
1115 (rng-match-infer-start-tag-namespace
1117 (rng-match-start-tag-open (cons ns local-name
)))
1118 (nxml-ns-set-prefix prefix ns
)
1119 (rng-mark-start-tag-close "Missing xmlns:%s=\"%s\""
1121 (nxml-namespace-name ns
))
1124 (rng-recover-bad-element-prefix)
1126 (cons (nxml-ns-get-default) local-name
))))
1128 (not (rng-match-start-tag-open name
)))
1129 (unless (and (not (car name
))
1130 (let ((ns (rng-match-infer-start-tag-namespace (cdr name
))))
1132 (rng-match-start-tag-open (cons ns local-name
))
1134 (nxml-ns-set-default ns
)
1135 ;; XXX need to check we don't have xmlns=""
1136 (rng-mark-start-tag-close "Missing xmlns=\"%s\""
1137 (nxml-namespace-name ns
))
1139 (rng-recover-start-tag-open name
)))
1140 (cons prefix local-name
)))
1142 (defun rng-process-attributes ()
1143 (let ((atts xmltok-attributes
)
1146 (let* ((att (car atts
))
1147 (prefix (xmltok-attribute-prefix att
))
1148 (local-name (xmltok-attribute-local-name att
))
1151 (let ((ns (nxml-ns-get-prefix prefix
)))
1153 (cons ns local-name
)))
1154 (cons nil local-name
))))
1156 (rng-recover-bad-attribute-prefix att
))
1157 ((member name names
)
1158 (rng-recover-duplicate-attribute-name att
))
1159 ((not (rng-match-attribute-name name
))
1160 (rng-recover-attribute-name att
))
1161 ((rng-match-text-typed-p)
1162 (let ((value (xmltok-attribute-value att
)))
1164 (or (rng-match-attribute-value value
)
1165 (rng-recover-attribute-value att
))
1166 (rng-match-after))))
1167 (t (or (rng-match-end-tag)
1168 (error "Internal error:\
1169 invalid on untyped attribute value"))))
1170 (setq names
(cons name names
)))
1171 (setq atts
(cdr atts
)))))
1173 (defun rng-process-start-tag-close ()
1174 ;; deal with missing attributes
1175 (unless (rng-match-start-tag-close)
1176 (rng-mark-start-tag-close (rng-missing-attributes-message))
1177 (rng-match-ignore-attributes)))
1179 (defun rng-mark-start-tag-close (&rest args
)
1180 (when (not (eq xmltok-type
'partial-start-tag
))
1181 (rng-mark-invalid (apply 'format args
)
1183 (if (eq xmltok-type
'empty-element
)
1188 (defun rng-recover-bad-element-prefix ()
1189 (rng-mark-invalid "Prefix not declared"
1192 (rng-match-unknown-start-tag-open))
1194 (defun rng-recover-bad-attribute-prefix (att)
1195 (rng-mark-invalid "Prefix not declared"
1196 (xmltok-attribute-name-start att
)
1197 (xmltok-attribute-name-colon att
)))
1199 (defun rng-recover-duplicate-attribute-name (att)
1200 (rng-mark-invalid "Duplicate attribute"
1201 (xmltok-attribute-name-start att
)
1202 (xmltok-attribute-name-end att
)))
1204 (defun rng-recover-start-tag-open (name)
1205 (let ((required (rng-match-required-element-name)))
1206 (cond ((and required
1207 (rng-match-start-tag-open required
)
1209 (rng-match-start-tag-open name
))
1210 (rng-mark-invalid (concat "Missing element "
1212 (rng-name-to-string required
)))
1215 ((and (rng-match-optionalize-elements)
1216 (rng-match-start-tag-open name
))
1217 (rng-mark-invalid "Required elements missing"
1220 ((rng-match-out-of-context-start-tag-open name
)
1221 (rng-mark-invalid "Element not allowed in this context"
1225 (rng-match-unknown-start-tag-open)
1226 (rng-mark-invalid "Unknown element"
1228 xmltok-name-end
)))))
1230 (defun rng-recover-attribute-value (att)
1231 (let ((start (xmltok-attribute-value-start att
))
1232 (end (xmltok-attribute-value-end att
)))
1234 (rng-mark-invalid "Empty attribute value invalid" start
(1+ end
))
1235 (rng-mark-invalid "Attribute value invalid" start end
)))
1238 (defun rng-recover-attribute-name (att)
1239 (rng-mark-invalid "Attribute not allowed"
1240 (xmltok-attribute-name-start att
)
1241 (xmltok-attribute-name-end att
)))
1243 (defun rng-missing-attributes-message ()
1244 (let ((required-attributes
1245 (rng-match-required-attribute-names)))
1246 (cond ((not required-attributes
)
1247 "Required attributes missing")
1248 ((not (cdr required-attributes
))
1249 (concat "Missing attribute "
1251 (rng-name-to-string (car required-attributes
) t
))))
1253 (concat "Missing attributes "
1254 (mapconcat (lambda (nm)
1256 (rng-name-to-string nm t
)))
1260 (defun rng-process-end-tag (&optional partial
)
1261 (cond ((not rng-open-elements
)
1262 (rng-mark-not-well-formed "Extra end-tag"
1266 (equal (cons (xmltok-end-tag-prefix)
1267 (xmltok-end-tag-local-name))
1268 (car rng-open-elements
)))
1270 (t (rng-recover-mismatched-end-tag))))
1272 (defun rng-end-element ()
1273 (if rng-collecting-text
1274 (let ((contents (rng-contents-string)))
1275 (cond ((not contents
) (rng-match-after))
1276 ((not (rng-match-element-value contents
))
1277 (let* ((region (rng-contents-region)))
1279 (rng-mark-invalid "Empty content not allowed"
1282 (rng-mark-invalid "Invalid data"
1286 (setq rng-collecting-text nil
)
1287 (setq rng-pending-contents nil
))
1288 (unless (rng-match-end-tag)
1289 (rng-mark-invalid (rng-missing-element-message)
1294 (when (eq (car rng-open-elements
) t
)
1298 (defun rng-missing-element-message ()
1299 (let ((element (rng-match-required-element-name)))
1301 (concat "Missing element "
1302 (rng-quote-string (rng-name-to-string element
)))
1303 "Required child elements missing")))
1305 (defun rng-recover-mismatched-end-tag ()
1306 (let* ((name (cons (xmltok-end-tag-prefix)
1307 (xmltok-end-tag-local-name))))
1308 (cond ((member name
(cdr rng-open-elements
))
1309 (let* ((suppress-error (eq (car rng-open-elements
) t
))
1312 (setq top
(car rng-open-elements
))
1315 (setq missing
(cons top missing
))
1318 (not (equal top name
))))
1319 (unless suppress-error
1320 (rng-mark-missing-end-tags (cdr missing
)))))
1321 ((rng-match-empty-before-p)
1322 (rng-mark-mismatched-end-tag)
1324 (t (rng-mark-mismatched-end-tag)
1325 (setq rng-open-elements
1326 (cons t rng-open-elements
))))))
1328 (defun rng-mark-missing-end-tags (missing)
1329 (rng-mark-not-well-formed
1330 (format "Missing end-tag%s %s"
1331 (if (null (cdr missing
)) "" "s")
1332 (mapconcat (lambda (name)
1342 (+ xmltok-start
2)))
1344 (defun rng-mark-mismatched-end-tag ()
1345 (rng-mark-not-well-formed "Mismatched end-tag"
1349 (defun rng-push-tag (prefix-local-name)
1350 (setq rng-open-elements
1351 (cons prefix-local-name rng-open-elements
)))
1353 (defun rng-pop-tag ()
1354 (setq rng-open-elements
(cdr rng-open-elements
)))
1356 (defun rng-contents-string ()
1357 (let ((contents rng-pending-contents
))
1358 (cond ((not contents
) "")
1359 ((memq nil contents
) nil
)
1360 ((not (cdr contents
))
1361 (rng-segment-string (car contents
)))
1363 (nreverse (mapcar 'rng-segment-string
1366 (defun rng-segment-string (segment)
1368 (apply 'buffer-substring-no-properties
1371 (defun rng-segment-blank-p (segment)
1373 (rng-blank-p (car segment
))
1374 (apply 'rng-region-blank-p
1377 (defun rng-contents-region ()
1378 (if (null rng-pending-contents
)
1380 (let* ((contents rng-pending-contents
)
1381 (head (cdar contents
))
1384 (while (setq contents
(cdr contents
))
1385 (setq start
(car (cdar contents
))))
1388 (defun rng-process-text (start end whitespace
&optional value
)
1389 "Process characters between position START and END as text.
1390 END nil means point. WHITESPACE t means known to be whitespace, nil
1391 means known not to be, anything else means unknown whether whitespace
1392 or not. END must not be nil if WHITESPACE is neither t nor nil.
1393 VALUE is a string or nil; nil means the value is equal to the
1394 string between START and END."
1395 (cond (rng-collecting-text
1396 (setq rng-pending-contents
(cons (list value start
(or end
(point)))
1397 rng-pending-contents
)))
1398 ((not (or (and whitespace
1399 (or (eq whitespace t
)
1402 (rng-region-blank-p start end
))))
1403 (rng-match-mixed-text)))
1404 (rng-mark-invalid "Text not allowed" start
(or end
(point))))))
1406 (defun rng-process-unknown-char ()
1407 (when rng-collecting-text
1408 (setq rng-pending-contents
1409 (cons nil rng-pending-contents
))))
1411 (defun rng-process-unknown-entity ()
1412 (rng-process-unknown-char)
1413 (rng-match-optionalize-elements))
1415 (defun rng-region-blank-p (beg end
)
1418 (= (skip-chars-forward " \n\r\t" end
)
1421 (defun rng-flush-text ()
1422 (while rng-pending-contents
1423 (let ((segment (car rng-pending-contents
)))
1424 (unless (or (rng-segment-blank-p segment
)
1425 (rng-match-mixed-text))
1426 (let ((region (cdr segment
)))
1427 (rng-mark-invalid "In this context text cannot be mixed with elements"
1430 (setq rng-pending-contents
(cdr rng-pending-contents
))))
1432 (defun rng-process-end-document ()
1433 ;; this is necessary to clear empty overlays at (point-max)
1434 (rng-clear-overlays (point) (point))
1435 (let ((start (save-excursion
1436 (skip-chars-backward " \t\r\n")
1438 (cond (rng-open-elements
1439 (unless (eq (car rng-open-elements
) t
)
1440 (rng-mark-not-well-formed "Missing end-tag"
1443 ((not (rng-match-nullable-p))
1444 (rng-mark-not-well-formed "No document element"
1448 (defun rng-process-encoding-name (beg end
)
1449 (unless (let ((charset (buffer-substring-no-properties beg end
)))
1450 (or (nxml-mime-charset-coding-system charset
)
1451 (string= (downcase charset
) "utf-16")))
1452 (rng-mark-not-well-formed "Unsupported encoding" beg end
)))
1454 (defun rng-name-to-string (name &optional attributep
)
1455 (let ((ns (car name
))
1456 (local-name (cdr name
)))
1458 (and (not attributep
)
1459 (eq (nxml-ns-get-default) ns
)))
1461 (let ((prefix (nxml-ns-prefix-for ns
)))
1463 (concat prefix
":" local-name
)
1464 (concat "{" (symbol-name ns
) "}" local-name
))))))
1466 (provide 'rng-valid
)
1468 ;;; rng-valid.el ends here