r4668: *** empty log message ***
[kmrcl.git] / strings.lisp
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          strings.lisp
6 ;;;; Purpose:       Strings utility functions for KMRCL package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Apr 2000
9 ;;;;
10 ;;;; $Id: strings.lisp,v 1.11 2003/04/29 00:23:21 kevin Exp $
11 ;;;;
12 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; KMRCL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19
20 (in-package :kmrcl)
21
22 ;;; Strings
23
24 (defmacro string-append (outputstr &rest args)
25   `(setq ,outputstr (concatenate 'string ,outputstr ,@args)))
26
27 (defun list-to-string (lst)
28   "Converts a list to a string, doesn't include any delimiters between elements"
29   (format nil "~{~A~}" lst))
30
31 (defun count-string-words (str)
32   (declare (simple-string str)
33            (optimize (speed 3) (safety 0)))
34   (let ((n-words 0)
35         (in-word nil))
36     (declare (fixnum n-words))
37     (dotimes (i (length str))
38       (let ((ch (char str i)))
39         (declare (character ch))
40         (if (alphanumericp ch)
41             (unless in-word
42               (incf n-words)
43               (setq in-word t))
44           (setq in-word nil))))
45     n-words))
46
47 #+excl
48 (defun delimited-string-to-list (string &optional (separator #\space))
49   (excl:delimited-string-to-list string separator))
50
51 #-excl
52 (defun delimited-string-to-list (sequence &optional (separator #\space))
53   "Split a string by a delimitor"
54   (loop
55       with start = 0
56       for end = (position separator sequence :start start)
57       collect (subseq sequence start end)
58       until (null end)
59       do
60     (setf start (1+ end))))
61
62 #+excl
63 (defun list-to-delimited-string (list &optional (separator #\space))
64   (excl:list-to-delimited-string list separator))
65
66 #-excl
67 (defun list-to-delimited-string (list &optional (separator #\space))
68   (if (consp list)
69       (let ((fmt (format nil "~~A~~{~A~~A~~}" separator)))
70         (format nil fmt (first list) (rest list)))
71       ""))
72
73 (defun string-invert (str)
74   "Invert case of a string"
75   (declare (optimize (speed 3) (compilation-speed 0) (debug 0) (safety 0))
76            (simple-string str))
77   (let ((up nil) (down nil))
78     (block skip
79       (loop for char of-type character across str do
80             (cond ((upper-case-p char) (if down (return-from skip str) (setf up t)))
81                   ((lower-case-p char) (if up   (return-from skip str) (setf down t)))))
82       (if up (string-downcase str) (string-upcase str)))))
83
84 (defun add-sql-quotes (s)
85   (substitute-string-for-char s #\' "''"))
86
87 (defun escape-backslashes (s)
88   (substitute-string-for-char s #\\ "\\\\"))
89
90 (defun substitute-string-for-char (procstr match-char subst-str) 
91   "Substitutes a string for a single matching character of a string"
92   (substitute-chars-strings procstr (list (cons match-char subst-str))))
93
94 (defun string-substitute (string substring replacement-string)
95   "String substitute by Larry Hunter. Obtained from Google"
96   (let ((substring-length (length substring))
97         (last-end 0)
98         (new-string ""))
99     (do ((next-start
100           (search substring string)
101           (search substring string :start2 last-end)))
102         ((null next-start)
103          (concatenate 'string new-string (subseq string last-end)))
104       (setq new-string
105         (concatenate 'string
106           new-string
107           (subseq string last-end next-start)
108           replacement-string))
109       (setq last-end (+ next-start substring-length)))))
110
111 (defun string-trim-last-character (s)
112   "Return the string less the last character"
113   (aif (plusp (length s))
114        (subseq s 0 (1- it))
115        s))
116
117 (defun string-hash (str &optional (bitmask 65535))
118   (let ((hash 0))
119     (declare (fixnum hash)
120              (simple-string str))
121     (dotimes (i (length str))
122       (declare (fixnum i))
123       (setq hash (+ hash (char-code (char str i)))))
124     (logand hash bitmask)))
125
126 (defun string-not-null? (str)
127   (and str (not (zerop (length str)))))
128   
129 (defun whitespace? (c) 
130   (declare (character c))
131   (locally (declare (optimize (speed 3) (safety 0)))
132     (or (char= c #\Space) (char= c #\Tab) (char= c #\Return)
133         (char= c #\Linefeed))))
134
135 (defun not-whitespace? (c)
136   (not (whitespace? c)))
137
138 (defun string-ws? (str)
139   "Return t if string is all whitespace"
140   (when (stringp str)
141     (null (find-if #'not-whitespace? str))))
142
143 (defun replaced-string-length (str repl-alist)
144   (declare (string str))
145   (let* ((orig-len (length str))
146          (new-len orig-len))
147     (declare (fixnum orig-len new-len))
148     (dotimes (i orig-len)
149       (declare (fixnum i))
150       (let* ((c (char str i))
151              (match (assoc c repl-alist :test #'char=)))
152         (declare (character c))
153         (when match
154           (incf new-len (1- (length (cdr match)))))))
155     new-len))
156
157 (defun substitute-chars-strings (str repl-alist)
158   "Replace all instances of a chars with a string. repl-alist is an assoc
159 list of characters and replacement strings."
160   (declare (simple-string str))
161   (do* ((orig-len (length str))
162         (new-string (make-string (replaced-string-length str repl-alist)))
163         (spos 0 (1+ spos))
164         (dpos 0))
165       ((>= spos orig-len)
166        new-string)
167     (declare (fixnum spos dpos) (simple-string new-string))
168     (let* ((c (char str spos))
169            (match (assoc c repl-alist :test #'char=)))
170       (declare (character c))
171       (if match
172           (let* ((subst (cdr match))
173                  (len (length subst)))
174             (declare (fixnum len))
175             (dotimes (j len)
176               (declare (fixnum j))
177               (setf (char new-string dpos) (char subst j))
178               (incf dpos)))
179         (progn
180           (setf (char new-string dpos) c)
181           (incf dpos))))))
182
183 (defun escape-xml-string (string)
184   "Escape invalid XML characters"
185   (substitute-chars-strings 
186    string '((#\& . "&amp;") (#\> . "&gt;") (#\< . "&lt;"))))
187
188
189 (defun make-usb8-array (len)
190   (make-array len :adjustable nil
191               :fill-pointer nil
192               :element-type '(unsigned-byte 8)))
193
194 (defun usb8-array-to-string (vec)
195   (let* ((len (length vec))
196          (str (make-string len)))
197     (declare (fixnum len)
198              (simple-string str)
199              (optimize (speed 3)))
200     (dotimes (i len)
201       (declare (fixnum i))
202       (setf (schar str i) (code-char (aref vec i))))
203     str))
204
205 (defun string-to-usb8-array (str)
206   (let* ((len (length str))
207          (vec (make-usb8-array len)))
208     (declare (fixnum len)
209              (type (array fixnum (*)) vec)
210              (optimize (speed 3)))
211     (dotimes (i len)
212       (declare (fixnum i))
213       (setf (aref vec i) (char-code (schar str i))))
214     vec))
215