gecko-dev/js2/semantics/Main.lisp

109 lines
4.4 KiB
Common Lisp
Raw Normal View History

1999-11-03 03:58:07 +00:00
;;; The contents of this file are subject to the Mozilla Public
;;; License Version 1.1 (the "License"); you may not use this file
;;; except in compliance with the License. You may obtain a copy of
;;; the License at http://www.mozilla.org/MPL/
;;;
;;; Software distributed under the License is distributed on an "AS
;;; IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
;;; implied. See the License for the specific language governing
;;; rights and limitations under the License.
;;;
;;; The Original Code is the Language Design and Prototyping Environment.
;;;
;;; The Initial Developer of the Original Code is Netscape Communications
;;; Corporation. Portions created by Netscape Communications Corporation are
2002-02-04 21:13:45 +00:00
;;; Copyright (C) 1999-2002 Netscape Communications Corporation. All
1999-11-03 03:58:07 +00:00
;;; Rights Reserved.
;;;
;;; Contributor(s): Waldemar Horwat <waldemar@acm.org>
2002-02-04 21:13:45 +00:00
;;;
;;; Alternatively, the contents of this file may be used under the terms of
;;; either the GNU General Public License Version 2 or later (the "GPL"), or
;;; the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
;;; in which case the provisions of the GPL or the LGPL are applicable instead
;;; of those above. If you wish to allow use of your version of this file only
;;; under the terms of either the GPL or the LGPL, and not to allow others to
;;; use your version of this file under the terms of the MPL, indicate your
;;; decision by deleting the provisions above and replace them with the notice
;;; and other provisions required by the GPL or the LGPL. If you do not delete
;;; the provisions above, a recipient may use your version of this file under
;;; the terms of any one of the MPL, the GPL or the LGPL.
1999-01-30 01:19:00 +00:00
;;;
;;; ECMAScript semantic loader
;;;
1999-11-03 03:58:07 +00:00
;;; Waldemar Horwat (waldemar@acm.org)
1999-01-30 01:19:00 +00:00
;;;
#+allegro (shadow 'state)
#+allegro (shadow 'type)
1999-12-08 00:34:29 +00:00
#+lispworks (shadow 'define-action)
#+lispworks (shadow 'type)
2002-10-29 01:12:45 +00:00
#+clisp (progn
(setf (ext:package-lock "SYSTEM") nil)
(setf (ext:package-lock "COMMON-LISP") nil)
(setf (ext:package-lock "CLOS") nil))
(setq *read-default-float-format* 'double-float)
1999-01-30 01:19:00 +00:00
(defparameter *semantic-engine-filenames*
'("Utilities" "Markup" "RTF" "HTML" "GrammarSymbol" "Grammar" "Parser" "Metaparser" "Lexer" "Calculus" "CalculusMarkup"))
(defparameter *semantics-filenames*
'("JS20/Parser" "JS20/Lexer" "JS20/RegExp" "JS20/Kernel"))
1999-01-30 01:19:00 +00:00
(defparameter *semantic-engine-directory*
1999-12-08 00:34:29 +00:00
(make-pathname
#+lispworks :host #+lispworks (pathname-host *load-truename*)
:directory (pathname-directory #-mcl *load-truename*
#+mcl (truename *loading-file-source-file*))))
1999-12-03 22:49:36 +00:00
; Convert a filename string possibly containing slashes into a Lisp relative pathname.
(defun filename-to-relative-pathname (filename)
(let ((directories nil))
(loop
(let ((slash (position #\/ filename)))
(if slash
(let ((dir-name (subseq filename 0 slash)))
(push (if (equal dir-name "..") :up dir-name) directories)
(setq filename (subseq filename (1+ slash))))
(return (if directories
2001-04-12 04:31:46 +00:00
(make-pathname :directory (cons :relative (nreverse directories)) :name filename #+lispworks :type #+lispworks "lisp")
1999-12-08 00:34:29 +00:00
#-lispworks filename
#+lispworks (make-pathname :name filename :type "lisp"))))))))
1999-12-03 22:49:36 +00:00
; Convert a filename string possibly containing slashes relative to *semantic-engine-directory*
; into a Lisp absolute pathname.
(defun filename-to-semantic-engine-pathname (filename)
(merge-pathnames (filename-to-relative-pathname filename) *semantic-engine-directory*))
(defun operate-on-files (f files &rest options)
(with-compilation-unit ()
(dolist (filename files)
(apply f (filename-to-semantic-engine-pathname filename) :verbose t options))))
(defun compile-semantic-engine ()
(operate-on-files #'compile-file *semantic-engine-filenames* :load t))
1999-01-30 01:19:00 +00:00
(defun load-semantic-engine ()
(operate-on-files #-allegro #'load #+allegro #'load-compiled *semantic-engine-filenames*))
(defun load-semantics ()
1999-12-07 22:04:58 +00:00
(operate-on-files #-allegro #'load #+allegro #'load-compiled *semantics-filenames*))
1999-01-30 01:19:00 +00:00
(defmacro with-local-output ((stream filename) &body body)
`(with-open-file (,stream (filename-to-semantic-engine-pathname ,filename)
1999-01-30 01:19:00 +00:00
:direction :output
:if-exists :supersede)
,@body))
(load-semantic-engine)
(load-semantics)