comparison lisp/psgml/psgml-api.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children ac2d302a0011
comparison
equal deleted inserted replaced
-1:000000000000 0:376386a54a3c
1 ;;; psgml-api.el --- Extra API functions for PSGML
2 ;; $Id: psgml-api.el,v 1.1.1.1 1996/12/18 03:35:18 steve Exp $
3
4 ;; Copyright (C) 1994 Lennart Staflin
5
6 ;; Author: Lennart Staflin <lenst@lysator.liu.se>
7
8 ;; This program is free software; you can redistribute it and/or
9 ;; modify it under the terms of the GNU General Public License
10 ;; as published by the Free Software Foundation; either version 2
11 ;; of the License, or (at your option) any later version.
12 ;;
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
17 ;;
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program; if not, write to the Free Software
20 ;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22
23 ;;; Commentary:
24
25 ;; Provides some extra functions for the API to PSGML.
26
27
28 ;;; Code:
29
30 (provide 'psgml-api)
31 (require 'psgml)
32 (require 'psgml-parse)
33
34
35 ;;;; Mapping: map and modify
36
37 (defun sgml-map-element-modify (el-fun element)
38 "Apply EL-FUN to ELEMENT and the elements in its content.
39 The EL-FUN may change the buffer. But if it changes the buffer and
40 leaves the element with no start-tag some elements may be ignored."
41 (let ((level ; level in the element tree
42 0)
43 next
44 (tick ; change counter
45 (buffer-modified-tick)))
46 (while element
47 (funcall el-fun element)
48 ;; If the function has modified the buffer, a fresh parse is needed
49 (when (/= tick (buffer-modified-tick))
50 (setq element (sgml-find-element-of (sgml-element-start element)))
51 (setq tick (buffer-modified-tick)))
52 (cond
53 ;; Map content if any
54 ((setq next (sgml-element-content element))
55 (incf level))
56 ;; If in a sub-tree, move to next element
57 (t
58 (while (and (> level 0)
59 (null (setq next (sgml-element-next element))))
60 (setq element (sgml-element-parent element))
61 (decf level))))
62 (setq element next))))
63
64 ;;;; Map content
65
66 (defun sgml-map-content (element element-fun
67 &optional data-fun pi-fun entity-fun)
68 "Map content of ELEMENT, calling ELEMENT-FUN for every element.
69 Also calling DATA-FUN, if non-nil, with data in content."
70 (sgml-pop-all-entities)
71 (sgml-need-dtd)
72 (sgml-element-end element) ; Make sure all content is parsed
73 (save-excursion
74 (sgml-set-parse-state element 'start)
75 (when (eobp) (sgml-pop-entity))
76 (when (eolp) (forward-char 1))
77 (sgml-parse-data (point-max) data-fun pi-fun entity-fun)
78 (let ((c (sgml-tree-content element)))
79 (while c
80 (sgml-pop-all-entities)
81 (funcall element-fun c)
82 (sgml-set-parse-state c 'after)
83 (sgml-parse-data (point-max) data-fun pi-fun entity-fun)
84 (setq c (sgml-tree-next c)))))
85 (sgml-pop-all-entities))
86
87 (defun sgml-parse-data (sgml-goal sgml-data-function sgml-pi-function
88 sgml-entity-function)
89 (let ((sgml-throw-on-element-change 'el-done))
90 (catch sgml-throw-on-element-change
91 (sgml-with-parser-syntax
92 (sgml-parser-loop nil)))))
93
94 ;;;; Entity management
95
96 (defun sgml-push-to-string (string)
97 "Create an entity from STRING and push it on the top of the entity stack.
98 After this the current buffer will be a scratch buffer containing the text
99 of the new entity with point at the first character.
100 Use `sgml-pop-entity' to exit from this buffer."
101 (sgml-push-to-entity (sgml-make-entity "#STRING" 'text string)))
102
103
104
105 ;;; psgml-api.el ends here