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
|
#!/usr/bin/env perl6
# Gets the latest Unicode Data files and extracts them.
use v6;
my $UCD-zip-lnk = "ftp://ftp.unicode.org/Public/UCD/latest/ucd/UCD.zip";
my $UCA-all-keys = "ftp://ftp.unicode.org/Public/UCA/latest/allkeys.txt";
my $UCA-collation-test = "ftp://ftp.unicode.org/Public/UCA/latest/CollationTest.zip";
my $CODETABLES_URL = 'ftp://ftp.unicode.org/Public/MAPPINGS/';
my @CODETABLES =
'VENDORS/MICSFT/WINDOWS/CP1252.TXT',
'VENDORS/MICSFT/WINDOWS/CP1251.TXT';
my IO::Path $unidata = "UNIDATA".IO.absolute.IO;
sub MAIN {
if ! so $unidata.d {
say "Creating UNIDATA directory";
$unidata.mkdir;
}
else {
die "$unidata directory already exists. Please delete it and run again.";
}
chdir $unidata;
chdir $unidata;
if ! so "./UCD.zip".IO.f {
say "Downloading the latest UCD from $UCD-zip-lnk";
download-file($UCD-zip-lnk,"UCD.zip");
say "Unzipping UCD.zip";
unzip-file("UCD.zip");
}
if ! so "UCA".IO.d {
say "Creating the UCA directory";
mkdir "UCA";
download-set-file($UCA-collation-test, 'CollationTest.zip', "UCA");
}
if ! so "./UCA/allkeys.txt".IO.f {
say "Downloading allkeys.txt from $UCA-all-keys";
chdir "UCA".IO;
download-file($UCA-all-keys, "allkeys.txt");
chdir $unidata;
}
if ! so $unidata.d {
say "Creating UNIDATA directory";
$unidata.mkdir;
}
chdir $unidata;
if ! so "UCD.zip".IO.f {
say "Downloading the latest UCD from $UCD-zip-lnk";
download-file($UCD-zip-lnk,"UCD.zip");
say "Unzipping UCD.zip";
unzip-file("UCD.zip");
}
if ! so "UCA".IO.d {
say "Creating the UCA directory";
mkdir "UCA";
download-set-file($UCA-collation-test, 'CollationTest.zip', "UCA");
}
if ! so "./UCA/allkeys.txt".IO.f {
say "Downloading allkeys.txt from $UCA-all-keys";
chdir "UCA".IO;
download-file($UCA-all-keys, "allkeys.txt");
chdir '..';
}
if ! "CODETABLES".IO.d {
say "Downloading codetables from $CODETABLES_URL";
mkdir "CODETABLES";
chdir "CODETABLES";
for @CODETABLES {
say "dling $CODETABLES_URL$_";
download-file("$CODETABLES_URL$_", urlfilename($_));
}
download-file("https://encoding.spec.whatwg.org/index-jis0208.txt", urlfilename("index-jis0208.txt"));
}
get-emoji();
}
sub download-file ( Str:D $url, Str:D $filename ) {
qqx{curl --ftp-method nocwd "$url" -o "$filename"};
}
sub download-set-file ( Str:D $url, Str:D $filename, Str:D $dir) {
if ! so "$dir/$filename".IO.f {
my $cwd = $*CWD;
say "Downloading $filename from $url";
chdir $dir.IO;
download-file($url, $filename);
chdir $cwd;
}
if $filename.ends-with('.zip') {
my $cwd = $*CWD;
chdir $dir.IO;
unzip-file($filename);
chdir $cwd;
}
}
sub urlfilename (Str:D $str) {
$str.subst: /^.*\//, ""
}
sub unzip-file ( Str:D $zip ) {
qqx{unzip "$zip"};
}
sub get-emoji {
chdir $unidata;
# Since emoji sequence names are not cannonical and unchangeable, we get
# all of them starting with the first the feature was added in
my $first-emoji-ver = <4.0>;
my $emoji-dir = "ftp://ftp.unicode.org/Public/emoji/";
my @emoji-vers;
say "Getting a listing of the Emoji versions";
for qqx{curl --ftp-method nocwd -s "$emoji-dir"}.lines {
push @emoji-vers, .split(/' '+/)[8];
}
say "Emoji versions: ", @emoji-vers.join(', ');
#exit;
my @sorted-emoji-versions = @emoji-vers.sort(*.Num).reverse;
#say "Emoji versions: ", @sorted-emoji-versions.join(', ');
for @sorted-emoji-versions.grep($first-emoji-ver <= *) -> $version {
say "See version $version of Emoji, checking to see if it's a draft";
my $readme = qqx{curl --ftp-method nocwd -s "ftp://ftp.unicode.org/Public/emoji/$version/ReadMe.txt"}.chomp;
if $readme.match(/draft|PRELIMINARY/, :i) {
say "Looks like $version is a draft. ReadMe.txt text: <<$readme>>";
next;
}
else {
say "Found version $version. Don't see /:i draft|PRELIMINARY/ in the text.";
my $emoji-data = "ftp://ftp.unicode.org/Public/emoji/$version/";
say $emoji-data;
my $emoji-folder = "emoji-$version".IO;
$emoji-folder.mkdir;
chdir $emoji-folder;
my @to-download = <ReadMe.txt emoji-data.txt emoji-sequences.txt emoji-zwj-sequences.txt emoji-test.txt>;
for @to-download -> $filename {
download-file "$emoji-data/$filename", $filename;
}
#download-file("$emoji-data/ReadMe.txt", "ReadMe.txt");
#download-file("$emoji-data/emoji-data.txt", "emoji-data.txt");
#download-file("$emoji-data/emoji-sequences.txt", "emoji-sequences.txt");
#download-file("$emoji-data/emoji-zwj-sequences.txt", "emoji-zwj-sequences.txt");
chdir "..";
#last;
}
}
}
|