Skip to content
Snippets Groups Projects
Commit b1c92748 authored by rtoy's avatar rtoy
Browse files

code/extfmts.lisp:

o The optional error parameter doesn't need to be optional in
  DEFINE-EXTERNAL-FORMAT, EF-STRING-TO-OCTETS, EF-OCTETS-TO-STRING,
  EF-ENCODE and EF-DECODE.

code/fd-stream.lisp:
o Update comments for char-to-octets-error and octets-to-char-error.
o Forgot to pass the error handler to char-to-octets in EF-SOUT and
  EF-STRLEN.
parent fa932df0
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; domain. ;;; domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/extfmts.lisp,v 1.27 2010/07/02 02:50:35 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/extfmts.lisp,v 1.28 2010/07/02 16:29:55 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -208,7 +208,7 @@ ...@@ -208,7 +208,7 @@
;; IDENTITY is here to protect against SETF ;; IDENTITY is here to protect against SETF
(identity (svref %slots% ,',(second slot)))))))) (identity (svref %slots% ,',(second slot))))))))
`(macrolet ((octets-to-code ((state input unput error &rest vars) body) `(macrolet ((octets-to-code ((state input unput error &rest vars) body)
`(lambda (,state ,input ,unput &optional ,error) `(lambda (,state ,input ,unput ,error)
(declare (ignorable ,state ,input ,unput ,error) (declare (ignorable ,state ,input ,unput ,error)
(optimize (ext:inhibit-warnings 3))) (optimize (ext:inhibit-warnings 3)))
(let (,@',slotb (let (,@',slotb
...@@ -216,7 +216,7 @@ ...@@ -216,7 +216,7 @@
,@(loop for var in vars collect `(,var (gensym)))) ,@(loop for var in vars collect `(,var (gensym))))
,body))) ,body)))
(code-to-octets ((code state output error &rest vars) body) (code-to-octets ((code state output error &rest vars) body)
`(lambda (,',tmp ,state ,output &optional ,error) `(lambda (,',tmp ,state ,output ,error)
(declare (ignorable ,state ,output ,error) (declare (ignorable ,state ,output ,error)
(optimize (ext:inhibit-warnings 3))) (optimize (ext:inhibit-warnings 3)))
(let (,@',slotb (let (,@',slotb
...@@ -680,7 +680,7 @@ ...@@ -680,7 +680,7 @@
(funcall f state)))) (funcall f state))))
(def-ef-macro ef-string-to-octets (extfmt lisp::lisp +ef-max+ +ef-so+) (def-ef-macro ef-string-to-octets (extfmt lisp::lisp +ef-max+ +ef-so+)
`(lambda (string start end buffer &optional error &aux (ptr 0) (state nil)) `(lambda (string start end buffer error &aux (ptr 0) (state nil))
(declare #|(optimize (speed 3) (safety 0) (space 0) (debug 0))|# (declare #|(optimize (speed 3) (safety 0) (space 0) (debug 0))|#
(type simple-string string) (type simple-string string)
(type kernel:index start end ptr) (type kernel:index start end ptr)
...@@ -715,7 +715,7 @@ ...@@ -715,7 +715,7 @@
(values (if bufferp buffer (lisp::shrink-vector buffer ptr)) ptr)))) (values (if bufferp buffer (lisp::shrink-vector buffer ptr)) ptr))))
(def-ef-macro ef-octets-to-string (extfmt lisp::lisp +ef-max+ +ef-os+) (def-ef-macro ef-octets-to-string (extfmt lisp::lisp +ef-max+ +ef-os+)
`(lambda (octets ptr end state string s-start s-end &optional error `(lambda (octets ptr end state string s-start s-end error
&aux (pos s-start) (count 0) (last-octet 0)) &aux (pos s-start) (count 0) (last-octet 0))
(declare (optimize (speed 3) (safety 0) #|(space 0) (debug 0)|#) (declare (optimize (speed 3) (safety 0) #|(space 0) (debug 0)|#)
(type (simple-array (unsigned-byte 8) (*)) octets) (type (simple-array (unsigned-byte 8) (*)) octets)
...@@ -776,7 +776,7 @@ ...@@ -776,7 +776,7 @@
(def-ef-macro ef-encode (extfmt lisp::lisp +ef-max+ +ef-en+) (def-ef-macro ef-encode (extfmt lisp::lisp +ef-max+ +ef-en+)
`(lambda (string start end result &optional error &aux (ptr 0) (state nil)) `(lambda (string start end result error &aux (ptr 0) (state nil))
(declare #|(optimize (speed 3) (safety 0) (space 0) (debug 0))|# (declare #|(optimize (speed 3) (safety 0) (space 0) (debug 0))|#
(type simple-string string) (type simple-string string)
(type kernel:index start end ptr) (type kernel:index start end ptr)
...@@ -807,7 +807,7 @@ ...@@ -807,7 +807,7 @@
(lisp::shrink-vector result ptr))) (lisp::shrink-vector result ptr)))
(def-ef-macro ef-decode (extfmt lisp::lisp +ef-max+ +ef-de+) (def-ef-macro ef-decode (extfmt lisp::lisp +ef-max+ +ef-de+)
`(lambda (string ptr end result &optional error &aux (pos -1) (count 0) (state nil)) `(lambda (string ptr end result error &aux (pos -1) (count 0) (state nil))
(declare #|(optimize (speed 3) (safety 0) (space 0) (debug 0))|# (declare #|(optimize (speed 3) (safety 0) (space 0) (debug 0))|#
(type simple-string string) (type simple-string string)
(type kernel:index end count) (type kernel:index end count)
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.104 2010/07/02 11:57:53 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.105 2010/07/02 16:29:55 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -270,12 +270,10 @@ ...@@ -270,12 +270,10 @@
;; characters. If NIL, then the external format should handle it ;; characters. If NIL, then the external format should handle it
;; itself, doing whatever is deemed appropriate. If non-NIL, this ;; itself, doing whatever is deemed appropriate. If non-NIL, this
;; should be a function (or symbol) that the external format can ;; should be a function (or symbol) that the external format can
;; funcall to deal with the error. The function should take 4 ;; funcall to deal with the error. The function should take three
;; arguments: a message string, the offending octet, the number of ;; arguments: a message string, the offending octet, and the number
;; octets read so far in decoding, and a function to unput ;; of octets read so far in decoding; if the function returns it
;; characters. If the function returns, it should return the code ;; should return the codepoint of the desired replacement character.
;; of the desired replacement character and the number of octets
;; read (the input parameter).
#+unicode #+unicode
(octets-to-char-error nil) (octets-to-char-error nil)
;; ;;
...@@ -706,7 +704,8 @@ ...@@ -706,7 +704,8 @@
(do-output stream sap 0 tail t) (do-output stream sap 0 tail t)
(setq sap (fd-stream-obuf-sap stream) (setq sap (fd-stream-obuf-sap stream)
tail 0)) tail 0))
(setf (bref sap (1- (incf tail))) byte)))) (setf (bref sap (1- (incf tail))) byte))
(fd-stream-char-to-octets-error stream)))
(setf (fd-stream-obuf-tail stream) tail)))) (setf (fd-stream-obuf-tail stream) tail))))
...@@ -2347,7 +2346,8 @@ ...@@ -2347,7 +2346,8 @@
(fd-stream-co-state stream) (fd-stream-co-state stream)
(lambda (byte) (lambda (byte)
(declare (ignore byte)) (declare (ignore byte))
(incf count))))) (incf count))
(fd-stream-char-to-octets-erroor stream))))
(let* ((co-state (fd-stream-co-state stream)) (let* ((co-state (fd-stream-co-state stream))
(old-ef-state (efstate (cdr (fd-stream-co-state stream)))) (old-ef-state (efstate (cdr (fd-stream-co-state stream))))
(old-state (cons (car co-state) old-ef-state))) (old-state (cons (car co-state) old-ef-state)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment