aboutsummaryrefslogtreecommitdiff
path: root/scm/dictrans.scm
blob: 1a5320af8f72eba102a0771954621a6ae6c50041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
#! =GUILE_BINDIR=/guile -s
!#
;;;; This file is part of Ellinika
;;;; Copyright (C) 2004 Sergey Poznyakoff
;;;;
;;;; Ellinika is free software; you can redistribute it and/or modify
;;;; it under the terms of the GNU General Public License as published by
;;;; the Free Software Foundation; either version 2 of the License, or
;;;; (at your option) any later version.
;;;;
;;;; Ellinika 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 General Public License for more details.
;;;;
;;;; You should have received a copy of the GNU General Public License
;;;; along with Ellinika; if not, write to the Free Software
;;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
;;;;

;;;; Dictionary structure
;;;; Internal representation:
;;;; 
;;;; * Each dictionary entry is represented as a vector:
;;;; 
;;;; #(KEY FORMS XREF P-LIST LOC)
;;;; 
;;;; KEY is list of strings  
;;;; 
;;;; * FORMS is either #f or a string describing forms of the key if they
;;;; are formed in an irregular manner.
;;;; 
;;;; * XREF is a list of cross-references
;;;; 
;;;; * P-LIST is a list of P-ARTICLES. Each P-ARTICLE is a vector:
;;;; 
;;;;  #(POS ARTICLE AREF XREF TOPIC)
;;;; 
;;;; Member    Type          Meaning
;;;; POS       string        part of speech
;;;; ARTICLE   list(string)  Dictionary article associated with this key/pos
;;;; AREF      list(string)  List of antonyms
;;;; XREF      list(string)  List of cross-references
;;;; TOPIC     list(string)  List of topics this item pertains to
;;;; 
;;;; * LOC is source location where the entry was defined (cons FILE LINE).
;;;; 
;;;; External representation (XML):
;;;; 
;;;; <NODE>
;;;;  <K>string</K>+
;;;;  [<F>string</F>]
;;;;  <P ID="string">
;;;;   <M>string</M>+
;;;;   <A>string</A>*
;;;;   <X>string</X>*
;;;;   <T ID="string" />*
;;;;  </P>+
;;;;  <X>string</X>*
;;;; </NODE>
;;;; 
;;;; If only one P entry is present, the following alternative forms
;;;; are understood:
;;;; 
;;;; <NODE>
;;;;  <K>string</K>+
;;;;  [<F>string</F>]
;;;;  <P>string</P>
;;;;  <M>string</M>*
;;;;  <A>string</A>*
;;;;  <X>string</X>*
;;;;  <T ID="string" />*
;;;; </NODE>
;;;; 
;;;; or
;;;; 
;;;; <NODE>
;;;;  <K>string</K>+
;;;;  [<F>string</F>]
;;;;  <P>string</P>
;;;;  <X>string</X>*
;;;;  <T ID="string" />*
;;;; </NODE>

;;; Tailor this statement to your needs if necessary.
;=GUILE_COMMENT=;(set! %load-path (cons "=GUILE_SITE=" %load-path))
(set! %load-path (cons "/home/gray/linguae/ellinika/" %load-path))
(use-modules (xmltools xmltrans)
             (gamma sql)
	     (ellinika xlat)
	     (ice-9 getopt-long))

(use-syntax (ice-9 syncase))

(define compile-only #f)
(define cleanup-option #f)
(define preserve-option #f)

(define sql-iface "mysql")
(define sql-host "localhost")
(define sql-database "ellinika")
(define sql-port 3306)
(define sql-password #f)
(define sql-username #f)
(define verbose-option #f)
(define debug-level 0)
(define input-files '())

(define sysconf-dir "=SYSCONFDIR=")
(define config-file-name "ellinika.conf")
  
(define dict-cgi-path #f)

;;; Load the site defaults
(let ((rc-file (string-append sysconf-dir "/" config-file-name)))
  (if (file-exists? rc-file)
    (load rc-file)))

(define (debug level . rest)
  (if (>= debug-level level)
      (begin
	(for-each
	 (lambda (x)
	   (display x))
	 rest)
	(newline))))


(define pos-xlat #f)

(define (convert-pos pos)
  (cond
   (compile-only
    pos)
   ((assoc pos pos-xlat) =>
    (lambda (x)
      (cdr x)))
   (else
    (xmltrans:parse-error #f "unknown or misspelled part of speech")
    (mark-invalid)
    pos)))

(define (read-pos conn) 
  (set! pos-xlat
	(map
	 (lambda (p)
	   (cons (car p) (string->number (cadr p))))
	 (append
	  (run-query conn "SELECT abbr, id FROM pos")
	  (run-query conn "SELECT abbr_lat, id FROM pos")
	  (run-query conn "SELECT name, id FROM pos")))))


;;;; XML definitions

;;; Set the default handler
(define tag-list '())

(define (lingua:default-start tag attr)
  (xmltrans:set-attr #f "__START__" 1)
  #f)

(xmltrans:set-default-start-handler lingua:default-start)

(define (lingua:default-end tag attr text)
  (if (xmltrans:attr attr "__START__")
      (xmltrans:parse-error #f "Unhandled element " tag))
  (set! tag-list
	(cons
	 (xmltrans:make-tag tag attr text)
	 tag-list))
  #f)

(xmltrans:set-default-end-handler lingua:default-end)

;;; Current node
(define current-node #f)

(define-syntax node-get
  (syntax-rules ()
    ((node-get #:key node)
     (vector-ref node 0))
    ((node-get #:forms node)
     (vector-ref node 1))
    ((node-get #:xref node)
     (vector-ref node 2))
    ((node-get #:p-list node)
     (vector-ref node 3))
    ((node-get #:locus node)
     (vector-ref node 4))))

(define-macro (current-node-get key)
  `(node-get ,key current-node))

(define (mark-invalid)
  (xmltrans:set-attr "NODE" "__INVALID__" 1))

(define-syntax node-set
  (syntax-rules ()
    ((node-set #:key node k)
     (cond
      ((node-get #:key node) =>
       (lambda (klist)
	 (vector-set! node 0 (append klist (list k)))))
      (else
       (vector-set! node 0 (list k)))))
    ((node-set #:forms node f)
     (begin
       (cond
	((node-get #:forms node)
	 (xmltrans:parse-error #f "Forms already set")
	 (mark-invalid)))
       (vector-set! node 1 f)))
    ((node-set #:xref node x)
     (vector-set! node 2 (append (node-get #:xref node) (list x))))
    ((node-set #:p-article node p)
     (vector-set! node 3 (append (node-get #:p-list node) (list p))))
    ((node-set #:topic node t)
     ;; FIXME: Scope of <T> is position-dependent relative to <P>
     (let ((pl (node-get #:p-list node)))
       (if (null? pl)
	   (current-article-set #:topic t)
	   (for-each
	    (lambda (p)
	      (p-article-set #:topic p t))
	    pl))))
    ((node-set #:locus node loc)
     (vector-set! node 4 loc))))


(define-macro (current-node-set key val)
  `(node-set ,key current-node ,val))

(define p-article #f)

(define-syntax p-article-get
  (syntax-rules ()
    ((p-article-get #:pos article)
     (vector-ref article 0))
    ((p-article-get #:article article)
     (vector-ref article 1))
    ((p-article-get #:aref article)
     (vector-ref article 2))
    ((p-article-get #:xref article)
     (vector-ref article 3))
    ((p-article-get #:topic article)
     (vector-ref article 4))))

(define-syntax p-set
  (syntax-rules ()
    ((p-set key article n val)
     (vector-set! article n 
		  (cond
		   ((p-article-get key article) =>
		    (lambda (alst)
		      (append alst (list val))))
		   (else
		    (list val)))))))

(define-macro (current-article-get key)
  `(p-article-get ,key p-article))

(define-syntax p-article-set
  (syntax-rules ()
    ((p-article-set #:pos article val)
     (vector-set! article 0 val))
    ((p-article-set #:article article val)
     (p-set #:article article 1 val)) 
    ((p-article-set #:aref article val)
     (p-set #:aref article 2 val))
    ((p-article-set #:xref article val)
     (p-set #:xref article 3 val))
    ((p-article-set #:topic article val)
     (p-set #:topic article 4 val))))

;(define-macro (current-article-set key val)
;  `(p-article-set ,key p-article ,val))

(define-syntax current-article-set
  (syntax-rules ()
    ((current-article-set key val)
     (p-article-set key p-article val))))

;;; Node list
(define node-list '())

(define (push-node node)
  (if (>= debug-level 100)
      (begin
	(write node)
	(newline)))
  (set! node-list (cons current-node node-list)))

;;; Topic stack
(define topic-list '())

(define (push-topic id)
  (debug 10 "PUSH " id)
  (set! topic-list (cons id topic-list)))

(define (pop-topic)
  (debug 10 "POP " (car topic-list))
  (set! topic-list (cdr topic-list)))

(define (append-topics)
  (debug 10 "APPEND")
  (for-each
   (lambda (x)
     (current-article-set #:topic x))
   topic-list))

;;;
(define (expect-context tag . rest)
  (let ((parent (xmltrans:get-parent #t)))
    (call-with-current-continuation
     (lambda (return)
       (for-each
	(lambda (ctx-name)
	  (if (string=? ctx-name parent)
	      (return)))
	rest)
       (xmltrans:parse-error #f tag " used in wrong context")))))

;;; Hanlde main element
(xmltrans:start-tag
 "DICT"
 (tag attr)
 #f)

(xmltrans:end-tag
 "DICT"
 (tag attr text)
 ;; FIXME
 #f)


(define expected-k #f)

(define (k-expect)
  (set! expected-k #f))

;;; 
(xmltrans:start-tag
 "NODE"
 (tag attr)
 (set! current-node (vector #f #f '() '() (xmltrans:get-input-location)))
 (set! p-article #f)
 (set! expected-k #t)
 (xmltrans:expect-next-tag "K" k-expect)
 #f)

;;;; INCLUDE
(xmltrans:end-tag
 "INCLUDE"
 (tag attr text)
 (let ((fname (xmltrans:attr attr "FILE")))
   (cond
    ((not fname)
     (xmltrans:parse-error #f "File name not specified"))
    ((string? fname)
     (xmltrans:parse-file fname))
    (else
     (xmltrans:parse-error #f "FILE must be a valid string"))))
 #f)

(xmltrans:end-tag
 "NODE"
 (tag attr text)
 (cond
  (p-article
   (if (not (null? (current-node-get #:p-list)))
       (xmltrans:parse-warning #f "Mixed definition style"))
   (append-topics)
   (current-node-set #:p-article p-article)
   (set! p-article #f)))
 
 (cond
  ((xmltrans:attr attr "__INVALID__")) ; Ignore
  ((not (current-node-get #:key))
   (xmltrans:parse-error #f "K element is missing"))
  ((and (null? (current-node-get #:p-list)) (null? (current-node-get #:xref)))
   (xmltrans:parse-error #f "No articles and no cross references for the node"))
  (else
   (push-node current-node)))
 #f)

;;; Topic
(xmltrans:start-tag
 "T"
 (tag attr)
 (if (not (xmltrans:attr attr "ID"))
     (letrec ((loc (xmltrans:get-input-location))
	      (proc (lambda ()
		      (xmltrans:parse-error
		       loc
		       "T element does not have ID attribute."))))
       (xmltrans:expect-next-tag "ID" proc))
     (if (not (or (xmltrans:parent? "NODE") (xmltrans:parent? "P")))
	 (push-topic (xmltrans:attr attr "ID"))))
 #f)

(xmltrans:end-tag
 "T"
 (tag attr text)
 (cond
  ((not (xmltrans:attr attr "ID"))) ;; Ignore. Warnings has already been issued
  ((xmltrans:parent? "P")
   (current-article-set #:topic (xmltrans:attr attr "ID")))
  ((xmltrans:parent? "NODE")
   (current-node-set #:topic (xmltrans:attr attr "ID")))
  (else
   (pop-topic)))
 #f)

(xmltrans:end-tag
 "ID"
 (tag attr text)
 (cond
  ((xmltrans:parent? "P")) ;; OK
  ((not (xmltrans:parent? "T"))
   (xmltrans:parse-error #f "ID used in wrong context"))
  ((xmltrans:attr #t "ID")
   (xmltrans:parse-error #f "T element already has ID attribute"))
  (else
   (xmltrans:set-attr #t "ID" text)
   (if (not (xmltrans:parent? "NODE" "T"))
       (push-topic text))))
 #f)

;;; K - KEY
(xmltrans:end-tag
 "K"
 (tag attr text)
 (expect-context tag "NODE")
 (if (not expected-k)
     (begin
       (xmltrans:parse-error #f "K tag cannot be used here")
       (mark-invalid)))
 (xmltrans:expect-next-tag "K" k-expect)
 (current-node-set #:key text)
 #f)

;;; F - FORMS
(xmltrans:end-tag
 "F"
 (tag attr text)
 (expect-context tag "NODE")
 (current-node-set #:forms text)
 #f)

;;; P - PartOfSpeach
(define p-location #f)

(xmltrans:start-tag
 "P"
 (tag attr)
 (set! p-location (xmltrans:get-input-location))
 (set! p-article (vector #f '() '() '() '()))
 #f)

(xmltrans:end-tag
 "P"
 (tag attr text)
 (expect-context tag "NODE")
 (cond
  ((xmltrans:attr attr "ID") =>
   (lambda (id)
     (current-article-set #:pos (convert-pos id))
     (append-topics)
     (current-node-set #:p-article p-article)
     (set! p-article #f)))
  ((not (null? (current-article-get #:article))) ;; FIXME: other elements too
   (xmltrans:parse-error p-location
			 "P element is missing ID, but has nested elements"))
  (else
   (set! p-article (vector (convert-pos text) '() '() '() '()))))
 #f)

;;; A - Antonym

(xmltrans:end-tag
 "A"
 (tag attr text)
 (expect-context tag "NODE" "P")
 (current-article-set #:aref text)
 #f)

;;; X - Xref
(xmltrans:end-tag
 "X"
 (tag attr text)
 (expect-context tag "NODE" "P")
 (let ((ref (cond
	     ((string-null? text)
	      (call-with-current-continuation
	       (lambda (return)
		 (do ((node node-list (cdr node)))
		     ((null? node) #f)
		   (if (not (null? (p-article-get
				    #:article
				    (car (node-get #:p-list (car node))))))
		       (return (car (node-get #:key (car node)))))))))
	     (else
	      text))))

   (cond
    ((not ref)
     (xmltrans:parse-error #f "Empty reference")
     (mark-invalid))
    ((xmltrans:parent? "P")
     (current-article-set #:xref ref))
    ((xmltrans:parent? "NODE")
     (current-node-set #:xref ref))))
 #f)

;;; M - MEANING
(xmltrans:end-tag
 "M"
 (tag attr text)
 (expect-context tag "P" "NODE")
 (cond
  ((and (not p-article) (null? (current-node-get #:p-list)))
   (xmltrans:parse-error #f "P element not defined")
   (mark-invalid))
  (else
   (current-article-set #:article text)))
 #f)

;;; Formatting elements
(xmltrans:end-tag
 "C"
 (tag attr text)
 (expect-context tag "M" "F")
 (list
  "<span class=\\\"comment\\\">"
  text
  "</span>"))

(xmltrans:end-tag
 "E"
 (tag attr text)
 (expect-context tag "M" "F")
 (list
  "<span class=\\\"expl\\\">"
  text
  "</span>"))


(define (assert condition . rest)
  (cond
   (condition)
   ((null? rest)
    (throw 'misc-error 'assert
	   "Assertion failed"
	   (list) #f)
    (exit 1))
   (else
    (with-output-to-port
	(current-error-port)
      (lambda ()
	(for-each
	 (lambda (x)
	   (display x))
	 rest)
	(newline)))
    (exit 1))))

(define (escape-string str)
  (let loop ((lst '())
	     (str str))
    (cond
     ((string-index str #\") =>
      (lambda (pos)
	(loop (append lst (list (substring str 0 pos)
				"\\\""))
	      (substring str (1+ pos)))))
     (else
      (apply string-append (append lst (list str)))))))

(define (run-query conn q)
  (if verbose-option
    (format #t "QUERY: ~S\n" q))
  (let ((res (sql-query conn q)))
    (if verbose-option
	(format #t "RESULT: ~S\n" res))
    res))

(define (query-number conn q)
  (let ((res (run-query conn q)))
    (if (null? res)
	#f
	(string->number (caar res)))))

(define (get-dict-index conn)
  (set! dict-index
	(or
	 (query-number conn
		       "SELECT ident FROM dict ORDER BY ident DESC LIMIT 1")
	 0)))

(define (cleanup-db conn)
  (run-query conn "DELETE FROM locus")            
  (run-query conn "DELETE FROM links")            
  (run-query conn "DELETE FROM articles")         
  (run-query conn "DELETE FROM dict")   
  (run-query conn "DELETE FROM topic")
  (run-query conn "DELETE FROM topic_tab")
  (run-query conn "DELETE FROM pending_links"))

(define (pending-fixup conn)
  (run-query conn
	     "INSERT IGNORE INTO links \
	      SELECT p.type,p.originator,d.ident \
	      FROM dict d, pending_links p \
	      WHERE p.word = d.word AND p.type != 'CLOSED'")
  (run-query conn
	     "INSERT IGNORE INTO links \
	      SELECT p.type,d.ident,p.originator \
	      FROM dict d, pending_links p \
	      WHERE p.word = d.word AND p.type != 'CLOSED'")
  (run-query
   conn
   (if (string=? sql-iface "mysql")
       "UPDATE pending_links p, dict d SET p.type='CLOSED' WHERE p.word = d.word"
       ;; Else assume SQL92
       "UPDATE pending_links SET type='CLOSED' \
	 WHERE  originator in (SELECT d.ident from dict d, pending_links p \
	   WHERE p.word=d.word)"))

  (if (not preserve-option)
      run-query("DELETE FROM pending_links WHERE type = 'CLOSED'"))

  (let ((count (query-number conn
			     "SELECT count(*) FROM pending_links \
	                      WHERE type != 'CLOSED'")))
                      ;;; GROUP BY word")))
    (if (> count 0)
	(display (string-append
		  (number->string count)
		  " unresolved references\n")
		 (current-error-port)))))

(define (update-stat conn)
  (let ((count (query-number conn "SELECT count(*) from dict")))
    (run-query conn "DELETE from stat");
    (run-query conn
	       (string-append
		"INSERT INTO stat (count,updated) VALUES("
		(number->string count)
		",now())"))))


(define dict-index 0)

(define (check-node conn node)
  (call-with-current-continuation
   (lambda (return)
    (for-each
     (lambda (p-article)
       (for-each
	(lambda (key)
	  (let ((res (run-query
		      conn
		      (string-append
		       "SELECT locus.file,locus.line FROM dict, locus WHERE dict.word='"
		       key
		       "' AND pos="
		       (number->string (p-article-get #:pos p-article)) 
		       " AND dict.ident=locus.ident"))))
	    (if (not (null? res))
		(begin
		  (xmltrans:parse-error
		   (node-get #:locus node)
		   "Key " key "," (p-article-get #:pos p-article)
		   " is already in the database")
		  (xmltrans:parse-error
		   (cons (caar res) (cadar res))
		   "This is the location of previous definition")
		  (return #f)))))
	(node-get #:key node)))
     (node-get #:p-list node))
    #t)))

(define (insert-node conn node)
  (letrec ((insert-link (lambda (type value)
			  (run-query
			   conn
			   (format
			    #f
			    "INSERT INTO pending_links (type,originator,word) VALUES('~A',~A,'~A')"
			    type
			    dict-index
			    value)))))

    (for-each
     (lambda (p-article)
       (for-each
	(lambda (key)
	  (let ((sound (ellinika:sounds-like key)))
	    (set! dict-index (1+ dict-index))
            ;;; Insert 'heading' info
	    (run-query
	     conn
	     (cond
	      ((node-get #:forms node) =>
	       (lambda (f)
		 (format
		  #f
		  "INSERT INTO dict (ident,word,sound,pos,forms) VALUES(~A,\"~A\",\"~A\",~A,\"~A\")"
		  
		  dict-index
		  key
		  sound
		  (p-article-get #:pos p-article)
		  f)))
	      (else
	       (format
		#f
		"INSERT INTO dict (ident,word,sound,pos) VALUES(~A,\"~A\",\"~A\",~A)"
		dict-index
		key
		sound
		(p-article-get #:pos p-article)))))

	    ;;; Insert source information
	    (let ((loc (node-get #:locus node)))
	      (run-query
	       conn
	       (format #f
		       "INSERT INTO locus (ident,file,line) VALUES(~A,\"~A\",~A)"
		       dict-index
		       (car loc)
		       (cdr loc))))

	    ;;; Insert cross-references
	    (for-each
	     (lambda (x)
	       (insert-link "XREF" x))
	     (append
	      (node-get #:xref node)
	      (p-article-get #:xref p-article)))

	    ;;; Insert antonyms
	    (for-each
	     (lambda (x)
	       (insert-link "ANT" x))
	     (p-article-get #:aref p-article))

	    ;;; Insert topics
	    (for-each
	     (lambda (t)
	       (let ((index (or
			     (query-number
			      conn
			      (format
			       #f
			       "SELECT ident FROM topic WHERE title=\"~A\""
			       (escape-string t)))
			     (begin
			       (run-query
				conn
				(format
				 #f
				 "INSERT INTO topic (title) VALUES (\"~A\")"
				 (escape-string t)))
			       (query-number conn "SELECT LAST_INSERT_ID()")))))
		 (run-query
		  conn
		  (format
		   #f
		   "INSERT INTO topic_tab VALUES(~A,~A)"
		   index
		   dict-index))))
	     (p-article-get #:topic p-article))

	    ;;; Insert articles
	    (let ((article-index 0))
	      (for-each
	       (lambda (text)
		 (run-query
		  conn
		  (format #f
			  "INSERT INTO articles VALUES (~A, ~A, \"~A\")"
			  dict-index
			  article-index
			  text))
		 (set! article-index (1+ article-index)))
	       (p-article-get #:article p-article)))))
	(node-get #:key node)))
     (node-get #:p-list node))))



;;;; Main
(define grammar
  `((check (single-char #\c))
    (cleanup)
    (database (single-char #\d) (value #t))
    (host     (single-char #\h) (value #t))
    (port     (single-char #\P) (value #t))
    (password (single-char #\p) (value #t))
    (user     (single-char #\u) (value #t))
    (interface (value #t))
    (verbose  (single-char #\v))
    (debug    (value #t))
    (preserve (value #t))
    (help)))

(define (usage)
  (display "usage: dictrans OPTIONS FILES
dictrans parses XML dictionary files in Ellinika dictionary format
and stores them into SQL database.

General options:

  --check               Only check input syntax and consistency. Do not
                        update the database. This means that dictrans will
                        not access the database at all, so some errors
                        (mistyped parts of speech and the like) may slip in
                        unnoticed.
  --verbose             Verbosely display SQL queries and their results.
  --debug NUMBER        Set debugging level (0 < NUMBER <= 100)

SQL related options:

  --interface STRING    Select SQL interface to use. STRING may be
                        either \"mysql\" (the default) or \"postgres\".
  --host HOST-OR-PATH   Set name or IP address of the host running SQL
                        database, or path to the database I/O socket.
  --database NAME       Set name of the database to use.
  --port NUMBER         Set the SQL port number  
  --user USER-NAME      Set SQL user name.
  --password STRING     Set the SQL password

  --cleanup             Clean up the database (delete all entries from all the
                        tables) before proceeding. Use this option with care.
  --preserve            Do not delete resolved entries from pending_links
                        table. This is intended mainly for debugging.

Informational options:
                        
  --help                Output this help info
\n"))

(define (cons? p)
  (and (pair? p) (not (list? p))))

(for-each
 (lambda (x)
   (cond
    ((cons? x)
     (case (car x)
       ((check)
	(set! compile-only #t))
       ((cleanup)
	(set! cleanup-option #t))
       ((database)
	(set! sql-database (cdr x)))
       ((host)
	(set! sql-host (cdr x)))
       ((port)
	(set! sql-port (string->number (cdr x))))
       ((password)
	(set! sql-password (cdr x)))
       ((user)
	(set! sql-username (cdr x)))
       ((interface)
	(set! sql-iface (cdr x)))
       ((verbose)
	(set! verbose-option #t))
       ((preserve)
	(set! preserve-option #t))
       ((debug)
	(set! debug-level (string->number (cdr x))))
       ((help)
	(usage)
	(exit 0))))
    (else
     (set! input-files (cdr x)))))
 (getopt-long (command-line) grammar))
 
       
(if (null? input-files)
    (begin
      (display "Input files not specified\n" (current-error-port))
      (exit 1)))

(cond
 (compile-only
  (for-each
   (lambda (x)
     (if (not (xmltrans:parse-file x))
	 (exit 1))) 
   input-files)
   (exit 0)))

(let ((conn (sql-connect sql-iface sql-host sql-port sql-database
			 sql-username sql-password)))
  (if (not conn)
      (begin
	(display "Cannot connect to the database\n" (current-error-port))
	(exit 1)))

  (read-pos conn)

  (for-each
   (lambda (x)
     (if (not (xmltrans:parse-file x))
	 (exit 1))) 
   input-files)
  

  (if cleanup-option
      (cleanup-db conn))
  
  (get-dict-index conn)
  
  (for-each
   (lambda (node)
     (and (check-node conn node)
	  (insert-node conn node)))
   (reverse node-list))

  (pending-fixup conn)
  (update-stat conn)
   
  (sql-connect-close conn))

(exit 0)

;;;; Local variables:
;;;; mode: Scheme
;;;; buffer-file-coding-system: utf-8
;;;; End:

    

Return to:

Send suggestions and report system problems to the System administrator.