X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=strings.lisp;h=fd2f37ca071e8dc6a7f8f7b1a849cbf849d19738;hp=6b6d9df01474248c55f72790edd1b905becc4a0d;hb=c2974df32b94d3bd25c32fa2e181b1980da59631;hpb=5738e60dc3724dc7d022d0fd2d5f2dbe337be470 diff --git a/strings.lisp b/strings.lisp index 6b6d9df..fd2f37c 100644 --- a/strings.lisp +++ b/strings.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: strings.lisp,v 1.50 2003/07/21 00:52:56 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -150,22 +150,28 @@ (setq hash (+ hash (char-code (char str i))))) (logand hash bitmask))) -(defun string-not-null? (str) - (and str (not (zerop (length str))))) - -(defun whitespace? (c) - (declare (character c)) - (locally (declare (optimize (speed 3) (safety 0))) - (or (char= c #\Space) (char= c #\Tab) (char= c #\Return) - (char= c #\Linefeed)))) +(defun is-string-empty (str) + (zerop (length str))) + +(defvar *whitespace-chars* '(#\space #\tab #\return #\linefeed)) -(defun not-whitespace? (c) - (not (whitespace? c))) +(defun is-char-whitespace (c) + (declare (character c) (optimize (speed 3) (safety 0))) + (or (char= c #\Space) (char= c #\Tab) (char= c #\Return) + (char= c #\Linefeed))) -(defun string-ws? (str) +(defun is-string-whitespace (str) "Return t if string is all whitespace" - (when (stringp str) - (null (find-if #'not-whitespace? str)))) + (every #'is-char-whitespace str)) + +(defun string-right-trim-whitespace (str) + (string-right-trim *whitespace-chars* str)) + +(defun string-left-trim-whitespace (str) + (string-left-trim *whitespace-chars* str)) + +(defun string-trim-whitespace (str) + (string-trim *whitespace-chars* str)) (defun replaced-string-length (str repl-alist) (declare (simple-string str) @@ -417,7 +423,7 @@ for characters in a string" (+ 10 (- code +char-code-upper-a+)) (- code +char-code-0+)))) -(defun escape-uri-field (query) +(defun uriencode-string (query) "Escape non-alphanumeric characters for URI fields" (declare (simple-string query) (optimize (speed 3) (safety 0) (space 0))) @@ -440,7 +446,7 @@ for characters in a string" (setf (schar str dpos) (hexchar (logand c 15)))) (setf (schar str dpos) ch))))) -(defun unescape-uri-field (query) +(defun uridecode-string (query) "Unescape non-alphanumeric characters for URI fields" (declare (simple-string query) (optimize (speed 3) (safety 0) (space 0))) @@ -565,34 +571,35 @@ for characters in a string" (defun lex-string (string &key (whitespace '(#\space #\newline))) "Separates a string at whitespace and returns a list of strings" - (flet ((whitespace? (char) (member char whitespace :test #'char=))) + (flet ((is-sep (char) (member char whitespace :test #'char=))) (let ((tokens nil)) (do* ((token-start - (position-if-not #'whitespace? string) + (position-if-not #'is-sep string) (when token-end - (position-if-not #'whitespace? string :start (1+ token-end)))) + (position-if-not #'is-sep string :start (1+ token-end)))) (token-end (when token-start - (position-if #'whitespace? string :start token-start)) + (position-if #'is-sep string :start token-start)) (when token-start - (position-if #'whitespace? string :start token-start)))) + (position-if #'is-sep string :start token-start)))) ((null token-start) (nreverse tokens)) (push (subseq string token-start token-end) tokens))))) (defun split-alphanumeric-string (string) "Separates a string at any non-alphanumeric chararacter" - (flet ((whitespace? (char) (non-alphanumericp char))) + (flet ((is-sep (char) (non-alphanumericp char))) (let ((tokens nil)) (do* ((token-start - (position-if-not #'whitespace? string) + (position-if-not #'is-sep string) (when token-end - (position-if-not #'whitespace? string :start (1+ token-end)))) + (position-if-not #'is-sep string :start (1+ token-end)))) (token-end (when token-start - (position-if #'whitespace? string :start token-start)) + (position-if #'is-sep string :start token-start)) (when token-start - (position-if #'whitespace? string :start token-start)))) + (position-if #'is-sep string :start token-start)))) ((null token-start) (nreverse tokens)) (push (subseq string token-start token-end) tokens))))) +