WIP script

This commit is contained in:
Vivianne 2024-03-01 08:09:22 -05:00
parent eaaceb3c56
commit 10c8421f29
1 changed files with 61 additions and 0 deletions

61
scripts/generate.in Normal file
View File

@ -0,0 +1,61 @@
#!@GUILE@ --no-auto-compile
-*- scheme -*-
!#
(use-modules
(ice-9 pretty-print)
(ice-9 peg)
(web uri)
(web request))
(define stdout (current-output-port))
(define east-asian-url
"https://unicode.org/Public/13.0.0/ucd/EastAsianWidth.txt")
(define emoji-url
"https://unicode.org/Public/13.0.0/ucd/emoji/emoji-data.txt")
(define-peg-pattern @hex body (peg "[a-fA-F0-9]"))
(define-peg-pattern @codepoint all
(* @hex))
(define-peg-pattern @ea-width-prop all
(or "A" "F" "H" "N" "Na" "W"))
(define-peg-pattern @codepoint-range all
(or
(and @codepoint (ignore "..") @codepoint)
@codepoint))
(define-peg-pattern @ea-datum body
(and @codepoint-range (ignore ";") @ea-width-prop))
(define-peg-pattern @comment none
(and "#" peg-any))
(define-peg-pattern @ea-line body
(and (? @ea-datum) (? @comment)))
(define (process-east-asian-line line)
(let ((tree (peg:tree (match-pattern @ea-line line))))
(unless (null? tree)
(pk tree))))
(define (wget-to-lines url)
(string-split (http-get (string->uri url)) #\newline))
(with-output-to-file "../runewidth/table.scm"
(λ ()
(display ";; Code generated by script/generate. DO NOT EDIT\n\n")
(display "(define-module (runewidth table))\n\n")
(format "Downloading and processing from ~a..." east-asian-url)
(for-each process-east-asian-line (wget-to-lines east-asian-url)))
(format "Downloading and processing from ~a..." emoji-url)
(for-each process-emoji-line (wget-to-lines emoji-url))))