Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dave Griffiths
mongoose-2000
Commits
624c930c
Commit
624c930c
authored
Nov 27, 2013
by
Dave Griffiths
Browse files
server fix
parent
654d6baf
Changes
2
Hide whitespace changes
Inline
Side-by-side
web/scripts/input.ss
0 → 100644
View file @
624c930c
#
lang
racket
;; MongooseWeb Copyright (C) 2013 Dave Griffiths
;;
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU Affero General Public License as
;; published by the Free Software Foundation, either version 3 of the
;; License, or (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU Affero General Public License for more details.
;;
;; You should have received a copy of the GNU Affero General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(
require
(
planet
jaymccarthy/sqlite:5:1/sqlite
))
(
require
"utils.ss"
)
(
require
"eavdb.ss"
)
(
provide
(
all-defined-out
))
(
require
(
planet
neil/csv:1:=7
)
net/url
)
(
define
make-mongoose-csv-reader
(
make-csv-reader-maker
'
((
separator-chars
#\tab
)
(
strip-leading-whitespace?
.
#t
)
(
strip-trailing-whitespace?
.
#t
))))
(
define
(
all-rows
url
make-reader
)
(
define
next-row
(
make-reader
(
open-input-file
url
)))
(
define
(
loop
)
(
define
row
(
next-row
))
(
if
(
empty?
row
)
'
()
(
cons
row
(
loop
))))
(
loop
))
(
define
(
insert-mongooses
db
table
l
)
(
map
(
lambda
(
i
)
(
let
((
pack
(
car
(
db-all-where
db
table
"pack"
(
list
"name"
(
list-ref
i
2
)))))
(
date
(
string-split
(
list-ref
i
3
)
'
(
#\/
))))
(
msg
i
)
(
insert-entity
db
table
"mongoose"
"sys"
(
list
(
ktv
"name"
"varchar"
(
list-ref
i
0
))
(
ktv
"gender"
"varchar"
(
if
(
equal?
(
list-ref
i
1
)
"F"
)
"Female"
"Male"
))
(
ktv
"pack-id"
"varchar"
(
ktv-get
pack
"unique_id"
))
(
ktv
"litter-code"
"varchar"
(
if
(
eq?
(
length
i
)
5
)
(
list-ref
i
4
)
""
))
(
ktv
"chip-code"
"varchar"
""
)
(
ktv
"dob"
"varchar"
(
string-append
(
list-ref
date
2
)
"-"
(
list-ref
date
1
)
"-"
(
list-ref
date
0
)))
))))
l
))
(
define
(
insert-csv
db
table
path
)
(
let
((
data
(
cdr
(
all-rows
path
make-mongoose-csv-reader
))))
(
insert-mongooses
db
table
data
)))
(
define
(
insert-packs
db
table
l
)
(
map
(
lambda
(
i
)
(
msg
"insert pack"
i
)
(
insert-entity
db
table
"pack"
"sys"
(
list
(
ktv
"name"
"varchar"
i
))))
l
))
(
define
(
write-db
db
table
path
)
(
insert-packs
db
table
(
list
"11"
"14"
"15"
"17"
"18"
"1B"
"1H"
"2"
"4B"
"4E"
"7A"
))
(
insert-csv
db
table
path
))
web/server.scm
View file @
624c930c
...
...
@@ -39,7 +39,7 @@
(
define
db
(
db-open
db-name
))
(
open-log
"log.txt"
)
(
write-db
db
"sync"
"/home/dave/code/mongoose-web/web/input.csv"
)
;
(write-db db "sync" "/home/dave/code/mongoose-web/web/input.csv")
(
define
registered-requests
(
list
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment