X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=db-oracle%2Foracle.lisp;h=78e1b63c3225459e577d20348eac15bb13b82459;hb=7cf55152a361b4cc7666ccc4514afd00eae43007;hp=1e0ed792a029464283aaf70744232c42f881ee06;hpb=7d50938ba2db52a713498e49aa1679deae6f0b6b;p=clsql.git diff --git a/db-oracle/oracle.lisp b/db-oracle/oracle.lisp index 1e0ed79..78e1b63 100644 --- a/db-oracle/oracle.lisp +++ b/db-oracle/oracle.lisp @@ -1,17 +1,20 @@ -;;; -*- Mode: Lisp -*- -;;; $Id: oracle.lisp,v 1.1 2002/09/30 10:19:23 kevin Exp $ - -;;; MaiSQL --- Common Lisp Interface Layer to SQL Databases -;;; This is copyrighted software. See documentation for terms. -;;; -;;; oracle.lisp --- FFI interface to Oracle on Unix -;;; -;;; The present content of this file is orented specifically towards -;;; Oracle 8.0.5.1 under Linux, linking against libclntsh.so - -(in-package :clsql-oracle) - -;; +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: oracle.lisp +;;;; Purpose: Package definition for CLSQL Oracle interface +;;;; +;;;; $Id$ +;;;; +;;;; This file is part of CLSQL. +;;;; +;;;; 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. +;;;; ************************************************************************* + +(in-package #:clsql-oracle) (defvar *oci-initialized* nil) @@ -22,15 +25,15 @@ ;; Opaque pointer types ;; -(def-alien-type oci-env (* t)) +(uffi:def-foreign-type oci-env (* :void)) -(def-alien-type oci-server (* t)) +(uffi:def-foreign-type oci-server (* :void)) -(def-alien-type oci-error (* t)) +(uffi:def-foreign-type oci-error (* :void)) -(def-alien-type oci-svc-ctx (* t)) +(uffi:def-foreign-type oci-svc-ctx (* :void)) -(def-alien-type oci-stmt (* t)) +(uffi:def-foreign-type oci-stmt (* :void)) (defvar *oci-handle-types* @@ -46,35 +49,282 @@ (defstruct oci-handle (type :unknown) - (pointer (make-alien (* t)))) + (pointer (uffi:allocate-foreign-object '(* :void)))) + +(defvar +null-void-pointer+ (uffi:make-null-pointer :void)) + +(uffi:def-function "OCIInitialize" + ((a :int) + (b (* :void)) + (c (* :void)) + (d (* :void)) + (e (* :void))) + :returning :int) + +(uffi:def-function "OCIEnvInit" + ((a (* :void)) + (b :int) + (c :int) + (d (* :void))) + :returning :int) + +(uffi:def-function "OCIHandleAlloc" + ((a :unsigned-int) + (b (* :void)) + (c :int) + (d :int) + (e (* :void))) + :returning :int) + +;;; Check an OCI return code for erroricity and signal a reasonably +;;; informative condition if so. +;;; +;;; ERRHP provides an error handle which can be used to find +;;; subconditions; if it's not provided, subcodes won't be checked. +;;; +;;; NULLS-OK says that a NULL-VALUE-RETURNED subcondition condition is +;;; normal and needn't cause any signal. An error handle is required +;;; to detect this subcondition, so it doesn't make sense to set ERRHP +;;; unless NULLS-OK is set. + +(defmacro def-oci-routine ((c-oci-symbol lisp-oci-fn) c-return &rest c-parms) + (let ((ll (mapcar (lambda (x) (gensym)) c-parms))) + `(let ((%lisp-oci-fn (uffi:def-function + (,c-oci-symbol ,(intern (concatenate 'string "%" (symbol-name lisp-oci-fn)))) + ,c-parms + :returning ,c-return))) + (defun ,lisp-oci-fn (,@ll &key database nulls-ok) + (let ((result (funcall %lisp-oci-fn ,@ll))) + (case result + (#.+oci-success+ + +oci-success+) + (#.+oci-error+ + (handle-oci-error :database database :nulls-ok nulls-ok)) + (#.+oci-no-data+ + (error "OCI No Data Found")) + (#.+oci-success-with-info+ + (error "internal error: unexpected +oci-SUCCESS-WITH-INFO")) + (#.+oci-no-data+ + (error "OCI No Data")) + (#.+oci-invalid-handle+ + (error "OCI Invalid Handle")) + (#.+oci-need-data+ + (error "OCI Need Data")) + (#.+oci-still-executing+ + (error "OCI Still Executing")) + (#.+oci-continue+ + (error "OCI Continue")) + (1804 + (error "Check ORACLE_HOME and NLS settings.")) + (t + (error "OCI unknown error, code=~A" result)))))))) + + +(defmacro def-raw-oci-routine + ((c-oci-symbol lisp-oci-fn) c-return &rest c-parms) + (let ((ll (mapcar (lambda (x) (declare (ignore x)) (gensym)) c-parms))) + `(let ((%lisp-oci-fn (uffi:def-function (,c-oci-symbol ,(intern (concatenate 'string "%" (symbol-name lisp-oci-fn)))) + ,c-parms + :returning ,c-return))) + (defun ,lisp-oci-fn (,@ll &key database nulls-ok) + (funcall %lisp-oci-fn ,@ll))))) + + +(def-oci-routine ("OCIInitialize" oci-initialize) + :int + (mode :unsigned-long) ; ub4 + (ctxp (* :void)) ; dvoid * + (malocfp (* :void)) ; dvoid *(*) + (ralocfp (* :void)) ; dvoid *(*) + (mfreefp (* :void))) ; void *(*) + + +(def-oci-routine ("OCIEnvInit" oci-env-init) + :int + (envpp (* :void)) ; OCIEnv ** + (mode :unsigned-long) ; ub4 + (xtramem-sz :unsigned-long) ; size_t + (usermempp (* :void))) ; dvoid ** + +#+oci-8-1-5 +(def-oci-routine ("OCIEnvCreate" oci-env-create) + :int + (p0 (* :void)) + (p1 :unsigned-int) + (p2 (* :void)) + (p3 (* :void)) + (p4 (* :void)) + (p5 (* :void)) + (p6 :unsigned-long) + (p7 (* :void))) + +(def-oci-routine ("OCIHandleAlloc" oci-handle-alloc) + :int + (parenth (* :void)) ; const dvoid * + (hndlpp (* (* :void))) ; dvoid ** + (type :unsigned-long) ; ub4 + (xtramem_sz :unsigned-long) ; size_t + (usrmempp (* (* :void)))) ; dvoid ** + +(def-oci-routine ("OCIServerAttach" oci-server-attach) + :int + (srvhp (* :void)) ; oci-server + (errhp (* :void)) ; oci-error + (dblink :cstring) ; :in + (dblink-len :unsigned-long) ; int + (mode :unsigned-long)) ; int + + +(def-oci-routine ("OCIHandleFree" oci-handle-free) + :int + (p0 (* :void)) ;; handle + (p1 :unsigned-long)) ;;type + +(def-oci-routine ("OCILogon" oci-logon) + :int + (envhp (* :void)) ; env + (errhp (* :void)) ; err + (svchp (* :void)) ; svc + (username :cstring) ; username + (uname-len :unsigned-long) ; + (passwd :cstring) ; passwd + (password-len :unsigned-long) ; + (dsn :cstring) ; datasource + (dsn-len :unsigned-long)) ; + +(def-oci-routine ("OCILogoff" oci-logoff) + :int + (p0 (* :void)) ; svc + (p1 (* :void))) ; err + +(uffi:def-function ("OCIErrorGet" oci-error-get) + ((p0 (* :void)) + (p1 :unsigned-long) + (p2 :cstring) + (p3 (* :long)) + (p4 (* :void)) + (p5 :unsigned-long) + (p6 :unsigned-long)) + :returning :void) + +(def-oci-routine ("OCIStmtPrepare" oci-stmt-prepare) + :int + (p0 (* :void)) + (p1 (* :void)) + (p2 :cstring) + (p3 :unsigned-long) + (p4 :unsigned-long) + (p5 :unsigned-long)) + +(def-oci-routine ("OCIStmtExecute" oci-stmt-execute) + :int + (p0 (* :void)) + (p1 (* :void)) + (p2 (* :void)) + (p3 :unsigned-long) + (p4 :unsigned-long) + (p5 (* :void)) + (p6 (* :void)) + (p7 :unsigned-long)) + +(def-raw-oci-routine ("OCIParamGet" oci-param-get) + :int + (p0 (* :void)) + (p1 :unsigned-long) + (p2 (* :void)) + (p3 (* :void)) + (p4 :unsigned-long)) + +(def-oci-routine ("OCIAttrGet" oci-attr-get) + :int + (p0 (* :void)) + (p1 :unsigned-long) + (p2 (* :void)) + (p3 (* :unsigned-long)) + (p4 :unsigned-long) + (p5 (* :void))) + +#+nil +(def-oci-routine ("OCIAttrSet" oci-attr-set) + :int + (trgthndlp (* :void)) + (trgthndltyp :int :in) + (attributep (* :void)) + (size :int) + (attrtype :int) + (errhp oci-error)) + +(def-oci-routine ("OCIDefineByPos" oci-define-by-pos) + :int + (p0 (* :void)) + (p1 (* :void)) + (p2 (* :void)) + (p3 :unsigned-long) + (p4 (* :void)) + (p5 :unsigned-long) + (p6 :unsigned-short) + (p7 (* :void)) + (p8 (* :void)) + (p9 (* :void)) + (p10 :unsigned-long)) + +(def-oci-routine ("OCIStmtFetch" oci-stmt-fetch) + :int + (stmthp (* :void)) + (errhp (* :void)) + (p2 :unsigned-long) + (p3 :unsigned-short) + (p4 :unsigned-long)) + + +(def-oci-routine ("OCITransStart" oci-trans-start) + :int + (svchp (* :void)) + (errhp (* :void)) + (p2 :unsigned-short) + (p3 :unsigned-short)) + +(def-oci-routine ("OCITransCommit" oci-trans-commit) + :int + (svchp (* :void)) + (errhp (* :void)) + (p2 :unsigned-short)) + +(def-oci-routine ("OCITransRollback" oci-trans-rollback) + :int + (svchp (* :void)) + (errhp (* :void)) + (p2 :unsigned-short)) + + + +;;; Functions (defun oci-init (&key (mode +oci-default+)) - (let ((x (alien-funcall (extern-alien "OCIInitialize" (function int int (* t) (* t) (* t) (* t))) - mode nil nil nil nil))) + (let ((x (OCIInitialize mode +null-void-pointer+ +null-void-pointer+ +null-void-pointer+ +null-void-pointer+))) (if (= x 0) - (let ((env (make-alien oci-env))) + (let ((env (uffi:make-pointer 0 oci-env))) (setq *oci-initialized* mode) - (let ((x (alien-funcall (extern-alien "OCIEnvInit" (function int (* t) int int (* t))) - env +oci-default+ 0 nil))) - (format t ";; OEI: reutrned ~d~%" x) + (let ((x (OCIEnvInit env +oci-default+ 0 +null-void-pointer+))) + (format t ";; OEI: returned ~d~%" x) (setq *oci-env* env)))))) (defun oci-check-return (value) - (if (= value +oci-invalid-handle+) - (error "Invalid Handle"))) + (when (= value +oci-invalid-handle+) + (error "Invalid Handle"))) (defun oci-get-handle (&key type) (if (null *oci-initialized*) (oci-init)) (case type (:error - (let ((ptr (make-alien (* t)))) - (let ((x (alien-funcall (extern-alien "OCIHandleAlloc" (function int unsigned-int (* t) int int (* t))) - (sap-ref-32 (alien-sap (deref *oci-env*)) 0) - ptr - +oci-default+ - 0 - nil))) + (let ((ptr (uffi:make-pointer 0 (* :void)))) + (let ((x (OCIHandleAlloc + (uffi:pointer-address (uffi:deref-pointer *oci-env* oci-env)) + ptr + +oci-default+ + 0 + +null-void-pointer+))) (oci-check-return x) ptr))) (:service-context @@ -97,222 +347,6 @@ (error "'~s' is not a valid OCI handle type" type)))) (defun oci-environment () - (let ((envhp (oci-handle-alloc :type :env))) - (oci-env-init envhp) + (let ((envhp (oci-get-handle :type :env))) + (oci-env-init envhp 0 0 +null-void-pointer+) envhp)) - -;;; Check an OCI return code for erroricity and signal a reasonably -;;; informative condition if so. -;;; -;;; ERRHP provides an error handle which can be used to find -;;; subconditions; if it's not provided, subcodes won't be checked. -;;; -;;; NULLS-OK says that a NULL-VALUE-RETURNED subcondition condition is -;;; normal and needn't cause any signal. An error handle is required -;;; to detect this subcondition, so it doesn't make sense to set ERRHP -;;; unless NULLS-OK is set. - -(defmacro def-oci-routine ((c-oci-symbol lisp-oci-fn) c-return &rest c-parms) - (let ((ll (mapcar (lambda (x) (gensym)) c-parms))) - `(let ((%lisp-oci-fn (def-alien-routine (,c-oci-symbol ,(intern (concatenate 'string "%" (symbol-name lisp-oci-fn)))) - ,c-return ,@c-parms))) - (defun ,lisp-oci-fn (,@ll &key database nulls-ok) - (case (funcall %lisp-oci-fn ,@ll) - (#.+oci-success+ - +oci-success+) - (#.+oci-error+ - (handle-oci-error :database database :nulls-ok nulls-ok)) - (#.+oci-no-data+ - (error "OCI No Data Found")) - (#.+oci-success-with-info+ - (error "internal error: unexpected +oci-SUCCESS-WITH-INFO")) - (#.+oci-no-data+ - (error "OCI No Data")) - (#.+oci-invalid-handle+ - (error "OCI Invalid Handle")) - (#.+oci-need-data+ - (error "OCI Need Data")) - (#.+oci-still-executing+ - (error "OCI Still Executing")) - (#.+oci-continue+ - (error "OCI Continue")) - (t - (error "OCI unknown error, code=~A" (values)))))))) - - -(defmacro def-raw-oci-routine - ((c-oci-symbol lisp-oci-fn) c-return &rest c-parms) - (let ((ll (mapcar (lambda (x) (declare (ignore x)) (gensym)) c-parms))) - `(let ((%lisp-oci-fn (def-alien-routine (,c-oci-symbol ,(intern (concatenate 'string "%" (symbol-name lisp-oci-fn)))) - ,c-return ,@c-parms))) - (defun ,lisp-oci-fn (,@ll &key database nulls-ok) - (funcall %lisp-oci-fn ,@ll))))) - - -(def-oci-routine ("OCIInitialize" OCI-INITIALIZE) - int - (mode unsigned-long) ; ub4 - (ctxp (* t)) ; dvoid * - (malocfp (* t)) ; dvoid *(*) - (ralocfp (* t)) ; dvoid *(*) - (mfreefp (* t))) ; void *(*) - - -(def-oci-routine ("OCIEnvInit" OCI-ENV-INIT) - int - (envpp (* t)) ; OCIEnv ** - (mode unsigned-long) ; ub4 - (xtramem-sz unsigned-long) ; size_t - (usermempp (* t))) ; dvoid ** - -#+oci-8-1-5 -(def-oci-routine ("OCIEnvCreate" OCI-ENV-CREATE) - int - (p0 (* t)) - (p1 unsigned-int) - (p2 (* t)) - (p3 (* t)) - (p4 (* t)) - (p5 (* t)) - (p6 unsigned-long) - (p7 (* t))) - -(def-oci-routine ("OCIHandleAlloc" OCI-HANDLE-ALLOC) - int - (parenth (* t)) ; const dvoid * - (hndlpp (* t)) ; dvoid ** - (type unsigned-long) ; ub4 - (xtramem_sz unsigned-long) ; size_t - (usrmempp (* t))) ; dvoid ** - -(def-oci-routine ("OCIServerAttach" OCI-SERVER-ATTACH) - int - (srvhp (* t)) ; oci-server - (errhp (* t)) ; oci-error - (dblink c-string) ; :in - (dblink-len unsigned-long) ; int - (mode unsigned-long)) ; int - - -(def-oci-routine ("OCIHandleFree" OCI-HANDLE-FREE) - int - (p0 (* t)) ;; handle - (p1 unsigned-long)) ;;type - -(def-oci-routine ("OCILogon" OCI-LOGON) - int - (envhp (* t)) ; env - (errhp (* t)) ; err - (svchp (* t)) ; svc - (username c-string) ; username - (uname-len unsigned-long) ; - (passwd c-string) ; passwd - (password-len unsigned-long) ; - (dsn c-string) ; datasource - (dsn-len unsigned-long)) ; - -(def-oci-routine ("OCILogoff" OCI-LOGOFF) - int - (p0 (* t)) ; svc - (p1 (* t))) ; err - -(def-alien-routine ("OCIErrorGet" OCI-ERROR-GET) - void - (p0 (* t)) - (p1 unsigned-long) - (p2 c-string) - (p3 (* long)) - (p4 (* t)) - (p5 unsigned-long) - (p6 unsigned-long)) - -(def-oci-routine ("OCIStmtPrepare" OCI-STMT-PREPARE) - int - (p0 (* t)) - (p1 (* t)) - (p2 c-string) - (p3 unsigned-long) - (p4 unsigned-long) - (p5 unsigned-long)) - -(def-oci-routine ("OCIStmtExecute" OCI-STMT-EXECUTE) - int - (p0 (* t)) - (p1 (* t)) - (p2 (* t)) - (p3 unsigned-long) - (p4 unsigned-long) - (p5 (* t)) - (p6 (* t)) - (p7 unsigned-long)) - -(def-raw-oci-routine ("OCIParamGet" OCI-PARAM-GET) - int - (p0 (* t)) - (p1 unsigned-long) - (p2 (* t)) - (p3 (* t)) - (p4 unsigned-long)) - -(def-oci-routine ("OCIAttrGet" OCI-ATTR-GET) - int - (p0 (* t)) - (p1 unsigned-long) - (p2 (* t)) - (p3 (* unsigned-long)) - (p4 unsigned-long) - (p5 (* t))) - -#+nil -(def-oci-routine ("OCIAttrSet" OCI-ATTR-SET) - int - (trgthndlp (* t)) - (trgthndltyp int :in) - (attributep (* t)) - (size int) - (attrtype int) - (errhp oci-error)) - -(def-oci-routine ("OCIDefineByPos" OCI-DEFINE-BY-POS) - int - (p0 (* t)) - (p1 (* t)) - (p2 (* t)) - (p3 unsigned-long) - (p4 (* t)) - (p5 unsigned-long) - (p6 unsigned-short) - (p7 (* t)) - (p8 (* t)) - (p9 (* t)) - (p10 unsigned-long)) - -(def-oci-routine ("OCIStmtFetch" OCI-STMT-FETCH) - int - (stmthp (* t)) - (errhp (* t)) - (p2 unsigned-long) - (p3 unsigned-short) - (p4 unsigned-long)) - - -(def-oci-routine ("OCITransStart" OCI-TRANS-START) - int - (svchp (* t)) - (errhp (* t)) - (p2 unsigned-short) - (p3 unsigned-short)) - -(def-oci-routine ("OCITransCommit" OCI-TRANS-COMMIT) - int - (svchp (* t)) - (errhp (* t)) - (p2 unsigned-short)) - -(def-oci-routine ("OCITransRollback" OCI-TRANS-ROLLBACK) - int - (svchp (* t)) - (errhp (* t)) - (p2 unsigned-short)) - -