summaryrefslogtreecommitdiff
path: root/Lisp/name-conversion.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2008-02-05 18:20:06 +0100
committerMatthias Benkard <code@mail.matthias.benkard.de>2008-02-05 18:20:06 +0100
commit35394e73235d08acd47c1bfb12e3bf5430e0d7c1 (patch)
treecc0e435a060fdf4b09bb30858d83ea9220f0f014 /Lisp/name-conversion.lisp
parent1e1ae77a17a3e03aef130119186297d80efe1200 (diff)
Simplify name conversion.
darcs-hash:cad170af02122ab2e800efbcc77a7f6d1b552956
Diffstat (limited to 'Lisp/name-conversion.lisp')
-rw-r--r--Lisp/name-conversion.lisp37
1 files changed, 29 insertions, 8 deletions
diff --git a/Lisp/name-conversion.lisp b/Lisp/name-conversion.lisp
index 70fd919..5137162 100644
--- a/Lisp/name-conversion.lisp
+++ b/Lisp/name-conversion.lisp
@@ -116,21 +116,42 @@
(symbol-name (objc-class-name->symbol meta-class-name)))))))
-(defun slot-name->foreign-slot-name (slot-name)
- (substitute #\_ #\- (name->lower-case (symbol-name slot-name))))
+(defun slot-name->foreign-slot-name (slot-name
+ &key (case-convention :underscored))
+ (let ((string (name->canonised-lower-case (symbol-name slot-name))))
+ (ecase case-convention
+ ((:camel-case) (name-hyphened->camel-case string))
+ ((:nerd-caps) (name-hyphened->nerd-caps string))
+ ((:underscored) (name-hyphened->underscored string))
+ ((:hyphened) string))))
-(defun name->lower-case (string)
- (cond ((name-typed-in-canonical-case-p) (string-downcase string))
+(defun name-hyphened->underscored (string)
+ (substitute #\_ #\- string))
+
+
+(defun name->canonised-lower-case (string)
+ (cond ((name-in-canonical-case-p string) (string-downcase string))
((and (eq (readtable-case *readtable*) :invert)
(notany #'upper-case-p string))
(string-upcase string))
(t string)))
-(defun name-typed-in-canonical-case-p (string)
- (or (and (member (readtable-case *readtable*)
- '(:downcase :invert :preserve))
+(defun name-in-canonical-case-p (string
+ &optional
+ (case-mode (readtable-case *readtable*)))
+ (or (and (member case-mode '(:downcase :invert :preserve))
(notany #'upper-case-p string))
- (and (member (readtable-case *readtable*))
+ (and (member case-mode '(:upcase))
(notany #'lower-case-p string))))
+
+
+(defun name-hyphened->camel-case (string)
+ (remove #\- (concatenate 'string
+ (string (char string 0))
+ (subseq (string-capitalize string) 1))))
+
+
+(defun name-hyphened->nerd-caps (string)
+ (remove #\- (string-capitalize string)))