r2753: move files
[clsql.git] / db-mysql / mysql-sql.cl
diff --git a/db-mysql/mysql-sql.cl b/db-mysql/mysql-sql.cl
new file mode 100644 (file)
index 0000000..f3fb656
--- /dev/null
@@ -0,0 +1,260 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; *************************************************************************
+;;;; FILE IDENTIFICATION
+;;;;
+;;;; Name:          mysql-sql.cl
+;;;; Purpose:       High-level MySQL interface using UFFI
+;;;; Programmers:   Kevin M. Rosenberg based on
+;;;;                Original code by Pierre R. Mai 
+;;;; Date Started:  Feb 2002
+;;;;
+;;;; $Id: mysql-sql.cl,v 1.1 2002/09/18 07:43:40 kevin Exp $
+;;;;
+;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
+;;;; and Copyright (c) 1999-2001 by Pierre R. Mai
+;;;;
+;;;; CLSQL users are granted the rights to distribute and use this software
+;;;; as governed by the terms of the Lisp Lesser GNU Public License
+;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
+;;;; *************************************************************************
+
+(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
+
+;;;; Modified by Kevin Rosenberg, Feb 20002
+;;;; -- Added support for Allegro CL and Lispworks using UFFI layer
+;;;; -- Changed database-connect to use mysql-real-connect. This way,
+;;;;    can avoid using double (unwind-protect)
+;;;; -- Changed database-connect to have MySQL library allocate space
+;;;;    for MYSQL structure. This will make the code more robust in
+;;;;    the event that MySQL library changes the size of the mysql-mysql
+;;;;    structure.
+;;;;
+;;;; Mar 2002
+;;;; Added field types
+
+(defpackage :clsql-mysql
+    (:use :common-lisp :clsql-base-sys :mysql :clsql-uffi)
+    (:export #:mysql-database)
+    (:documentation "This is the CLSQL interface to MySQL."))
+
+(in-package :clsql-mysql)
+
+;;; Field conversion functions
+
+(defun make-type-list-for-auto (num-fields res-ptr)
+  (let ((new-types '())
+       #+ignore (field-vec (mysql-fetch-fields res-ptr)))
+    (dotimes (i num-fields)
+      (declare (fixnum i))
+      (let* ( (field (mysql-fetch-field-direct res-ptr i))
+            #+ignore (field (uffi:deref-array field-vec 'mysql-field-vector i))
+             (type (uffi:get-slot-value field 'mysql-field 'type)))
+       (push
+        (case type
+          ((#.mysql-field-types#tiny 
+            #.mysql-field-types#short
+            #.mysql-field-types#int24
+            #.mysql-field-types#long)
+           :int32)
+          (#.mysql-field-types#longlong
+           :int64)
+          ((#.mysql-field-types#double
+            #.mysql-field-types#float
+            #.mysql-field-types#decimal)
+           :double)
+          (otherwise
+           t))
+        new-types)))
+    (nreverse new-types)))
+
+(defun canonicalize-types (types num-fields res-ptr)
+  (if (null types)
+      nil
+      (let ((auto-list (make-type-list-for-auto num-fields res-ptr)))
+       (cond
+         ((listp types)
+          (canonicalize-type-list types auto-list))
+         ((eq types :auto)
+          auto-list)
+         (t
+          nil)))))
+
+(defmethod database-initialize-database-type ((database-type (eql :mysql)))
+  t)
+
+(uffi:def-type mysql-mysql-ptr-def (* mysql-mysql))
+(uffi:def-type mysql-row-def mysql-row)
+(uffi:def-type mysql-mysql-res-ptr-def (* mysql-mysql-res))
+
+(defclass mysql-database (database)
+  ((mysql-ptr :accessor database-mysql-ptr :initarg :mysql-ptr
+             :type mysql-mysql-ptr-def)))
+
+(defmethod database-type ((database mysql-database))
+  :mysql)
+
+(defmethod database-name-from-spec (connection-spec (database-type (eql :mysql)))
+  (check-connection-spec connection-spec database-type (host db user password))
+  (destructuring-bind (host db user password) connection-spec
+    (declare (ignore password))
+    (concatenate 'string host "/" db "/" user)))
+
+(defmethod database-connect (connection-spec (database-type (eql :mysql)))
+  (check-connection-spec connection-spec database-type (host db user password))
+  (destructuring-bind (host db user password) connection-spec
+    (let ((mysql-ptr (mysql-init (uffi:make-null-pointer 'mysql-mysql)))
+         (socket nil))
+      (if (uffi:null-pointer-p mysql-ptr)
+         (error 'clsql-connect-error
+                :database-type database-type
+                :connection-spec connection-spec
+                :errno (mysql-errno mysql-ptr)
+                :error (mysql-error-string mysql-ptr))
+       (uffi:with-cstrings ((host-native host)
+                           (user-native user)
+                           (password-native password)
+                           (db-native db)
+                           (socket-native socket))
+         (let ((error-occurred nil))
+           (unwind-protect
+               (if (uffi:null-pointer-p 
+                    (mysql-real-connect 
+                     mysql-ptr host-native user-native password-native
+                     db-native 0 socket-native 0))
+                   (progn
+                     (setq error-occurred t)
+                     (error 'clsql-connect-error
+                            :database-type database-type
+                            :connection-spec connection-spec
+                            :errno (mysql-errno mysql-ptr)
+                            :error (mysql-error-string mysql-ptr)))
+                 (make-instance 'mysql-database
+                   :name (database-name-from-spec connection-spec
+                                                  database-type)
+                   :connection-spec connection-spec
+                   :mysql-ptr mysql-ptr))
+             (when error-occurred (mysql-close mysql-ptr)))))))))
+
+
+(defmethod database-disconnect ((database mysql-database))
+  (mysql-close (database-mysql-ptr database))
+  (setf (database-mysql-ptr database) nil)
+  t)
+
+
+(defmethod database-query (query-expression (database mysql-database) 
+                          types)
+  (with-slots (mysql-ptr) database
+    (uffi:with-cstring (query-native query-expression)
+       (if (zerop (mysql-query mysql-ptr query-native))
+          (let ((res-ptr (mysql-use-result mysql-ptr)))
+            (if res-ptr
+                (let ((num-fields (mysql-num-fields res-ptr)))
+                  (setq types (canonicalize-types 
+                                     types num-fields
+                                     res-ptr))
+                  (unwind-protect
+                       (loop for row = (mysql-fetch-row res-ptr)
+                             until (uffi:null-pointer-p row)
+                             collect
+                             (loop for i from 0 below num-fields
+                                   collect
+                                   (convert-raw-field
+                                    (uffi:deref-array row 'mysql-row i)
+                                    types i)))
+                    (mysql-free-result res-ptr)))
+              (error 'clsql-sql-error
+                     :database database
+                     :expression query-expression
+                     :errno (mysql-errno mysql-ptr)
+                     :error (mysql-error-string mysql-ptr))))
+        (error 'clsql-sql-error
+               :database database
+               :expression query-expression
+               :errno (mysql-errno mysql-ptr)
+               :error (mysql-error-string mysql-ptr))))))
+
+(defmethod database-execute-command (sql-expression (database mysql-database))
+  (uffi:with-cstring (sql-native sql-expression)
+    (let ((mysql-ptr (database-mysql-ptr database)))
+      (declare (type mysql-mysql-ptr-def mysql-ptr))
+      (if (zerop (mysql-query mysql-ptr sql-native))
+         t
+       (error 'clsql-sql-error
+              :database database
+              :expression sql-expression
+              :errno (mysql-errno mysql-ptr)
+              :error (mysql-error-string mysql-ptr))))))
+
+(defstruct mysql-result-set
+  (res-ptr (uffi:make-null-pointer 'mysql-mysql-res)
+          :type mysql-mysql-res-ptr-def)
+  (types nil)
+  (num-fields nil :type fixnum)
+  (full-set nil :type boolean))
+
+
+(defmethod database-query-result-set (query-expression 
+                                     (database mysql-database)
+                                     &key full-set types)
+  (uffi:with-cstring (query-native query-expression)
+    (let ((mysql-ptr (database-mysql-ptr database)))
+     (declare (type mysql-mysql-ptr-def mysql-ptr))
+      (if (zerop (mysql-query mysql-ptr query-native))
+         (let ((res-ptr (if full-set
+                            (mysql-store-result mysql-ptr)
+                          (mysql-use-result mysql-ptr))))
+           (declare (type mysql-mysql-res-ptr-def res-ptr))
+           (if (not (uffi:null-pointer-p res-ptr))
+               (let* ((num-fields (mysql-num-fields res-ptr))
+                      (result-set (make-mysql-result-set
+                                   :res-ptr res-ptr
+                                   :num-fields num-fields
+                                   :full-set full-set
+                                   :types
+                                   (canonicalize-types 
+                                    types num-fields
+                                    res-ptr)))) 
+                 (if full-set
+                     (values result-set
+                             num-fields
+                             (mysql-num-rows res-ptr))
+                     (values result-set
+                             num-fields)))
+               (error 'clsql-sql-error
+                    :database database
+                    :expression query-expression
+                    :errno (mysql-errno mysql-ptr)
+                    :error (mysql-error-string mysql-ptr))))
+       (error 'clsql-sql-error
+              :database database
+              :expression query-expression
+              :errno (mysql-errno mysql-ptr)
+              :error (mysql-error-string mysql-ptr))))))
+
+(defmethod database-dump-result-set (result-set (database mysql-database))
+  (mysql-free-result (mysql-result-set-res-ptr result-set))
+  t)
+
+
+(defmethod database-store-next-row (result-set (database mysql-database) list)
+  (let* ((res-ptr (mysql-result-set-res-ptr result-set))
+        (row (mysql-fetch-row res-ptr))
+        (types (mysql-result-set-types result-set)))
+    (declare (type mysql-mysql-res-ptr-def res-ptr)
+            (type mysql-row-def row))
+    (unless (uffi:null-pointer-p row)
+      (loop for i from 0 below (mysql-result-set-num-fields result-set)
+           for rest on list
+           do
+           (setf (car rest) 
+                 (convert-raw-field
+                  (uffi:deref-array row 'mysql-row i)
+                  types
+                  i)))
+      list)))
+
+
+(when (clsql-base-sys:database-type-library-loaded :mysql)
+  (clsql-base-sys:initialize-database-type :database-type :mysql)
+  (pushnew :mysql cl:*features*))