aboutsummaryrefslogtreecommitdiff
path: root/dump.scm
diff options
context:
space:
mode:
authorArun Isaac2022-10-30 20:47:37 +0530
committerArun Isaac2022-10-30 23:58:36 +0530
commit25f9279b0078ef0cc93507776c9c8413a0a73a00 (patch)
tree17db69ff002a6f28debd998d281665d4756bd962 /dump.scm
parenta1f21d10c1b21ce054b5750e6d0748ae9ad7557f (diff)
downloadgn-transform-databases-25f9279b0078ef0cc93507776c9c8413a0a73a00.tar.gz
Move triple utilities to new module.
* dump.scm (string->identifier, string-blank?, triple, prefix): Move to ... * dump/triples.scm: ... new file. * dump.scm: Import (dump triples).
Diffstat (limited to 'dump.scm')
-rwxr-xr-xdump.scm44
1 files changed, 1 insertions, 43 deletions
diff --git a/dump.scm b/dump.scm
index 8e2057e..295bf1e 100755
--- a/dump.scm
+++ b/dump.scm
@@ -9,6 +9,7 @@
(ice-9 string-fun)
(dump sql)
(dump table)
+ (dump triples)
(dump utils))
@@ -101,20 +102,6 @@ association list mapping substrings to their replacements."
str
replacement-alist))
-(eval-when (expand load eval)
- (define (string->identifier prefix str)
- "Convert STR to a turtle identifier after replacing illegal
-characters with an underscore and prefixing with gn:PREFIX."
- (string->symbol
- (string-append "gn:" prefix "_"
- (string-map (lambda (c)
- (case c
- ((#\/ #\< #\> #\+ #\( #\) #\space #\@) #\_)
- (else c)))
- (string-downcase
- (string-trim-right str #\.)))))))
-
-
(define (snake->lower-camel str)
(let ((char-list (string->list str)))
(call-with-output-string
@@ -128,32 +115,6 @@ characters with an underscore and prefixing with gn:PREFIX."
(drop char-list 1)
char-list)))))
-(define (scm->triples alist id)
- (for-each (match-lambda
- ((predicate . object)
- (when (cond
- ((string? object)
- (not (string-blank? object)))
- (else object))
- (triple id predicate object))))
- alist))
-
-(define (triple subject predicate object)
- (unless (or (string? subject)
- (symbol? subject))
- (error "Triple subject not a string or symbol:"
- (list subject predicate object)))
- (unless (or (string? predicate)
- (symbol? predicate))
- (error "Triple predicate not a string or symbol:"
- (list subject predicate object)))
- (unless (or (string? object)
- (symbol? object)
- (number? object))
- (error "Triple object not a string, symbol or number:"
- (list subject predicate object)))
- (format #t "~a ~a ~s .~%" subject predicate object))
-
(eval-when (expand load eval)
(define (field->key x)
(translate-forms 'field
@@ -809,9 +770,6 @@ is a <table> object."
;; Main function
-(define (prefix prefix iri)
- (format #t "@prefix ~a ~a .~%" prefix iri))
-
(call-with-genenetwork-database
(lambda (db)
(with-output-to-file (string-append %dump-directory "/dump.ttl")