r2913: *** empty log message ***
[clsql.git] / base / utils.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:         utils.cl
6 ;;;; Purpose:      SQL utility functions
7 ;;;; Programmer:   Kevin M. Rosenberg
8 ;;;; Date Started: Mar 2002
9 ;;;;
10 ;;;; $Id: utils.lisp,v 1.1 2002/09/30 10:19:01 kevin Exp $
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; CLSQL 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 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
20 (in-package :clsql-base-sys)
21
22 (defun number-to-sql-string (num)
23   (etypecase num
24     (integer
25      num)
26     (rational
27      (float-to-sql-string (coerce num 'double-float)))
28     (number
29      (float-to-sql-string num))))
30
31 (defun float-to-sql-string (num)
32   "Convert exponent character for SQL"
33   (let ((str (write-to-string num :readably t)))
34     (cond
35      ((find #\f str)
36       (substitute #\e #\f str))
37      ((find #\d str)
38       (substitute #\e #\d str))
39      ((find #\F str)
40       (substitute #\e #\F str))
41      ((find #\D str)
42       (substitute #\e #\D str))
43      ((find #\S str)
44       (substitute #\e #\S str))
45      (t
46       str))))
47
48   (defun sql-escape (identifier)
49   "Change hyphens to underscores, ensure string"
50   (let* ((unescaped (etypecase identifier
51                       (symbol (symbol-name identifier))
52                       (string identifier)))
53          (escaped (make-string (length unescaped))))
54     (dotimes (i (length unescaped))
55       (setf (char escaped i)
56             (cond ((equal (char unescaped i) #\-)
57                    #\_)
58                   ;; ...
59                   (t
60                    (char unescaped i)))))
61     escaped))
62
63
64 (defun sql-escape-quotes (s)
65   "Escape quotes for SQL string writing"
66   (substitute-string-for-char s #\' "''"))
67
68 (defun substitute-string-for-char (procstr match-char subst-str) 
69 "Substitutes a string for a single matching character of a string"
70   (let ((pos (position match-char procstr)))
71     (if pos
72         (concatenate 'string
73           (subseq procstr 0 pos) subst-str
74           (substitute-string-for-char 
75            (subseq procstr (1+ pos)) match-char subst-str))
76       procstr)))
77
78