6 if ($ARGV[0] eq "-v") {
8 $i4jversion = shift @ARGV;
9 die("-v i4jversion must be an integer [probably 7 or 8]") unless $i4jversion =~ m/^\d+$/;
12 my $fileformats = $ARGV[0];
13 $fileformats = "../../src/jalview/io/FileFormat.java" unless $fileformats;
15 # default mimetype will be text/x-$shortname
16 # TODO: find an actual extension for mat, see JAL-Xxxxx for outstanding issues too
17 # TODO: look up standard mime type used for BLASTfmt matrices, etc
19 rnaml => "application/rnaml+xml",
20 biojson => "application/x-jalview-biojson+json",
21 jnet => "application/x-jalview-jnet+text",
22 features => "application/x-jalview-features+text",
23 scorematrix => "application/x-jalview-scorematrix+text",
24 pdb => "chemical/x-pdb",
25 mmcif => "chemical/x-cif",
26 mmcif2 => "chemical/x-mmcif",
27 jalview => "application/x-jalview+xml+zip",
28 jvl => "application/x-jalview-jvl+text",
29 annotations => "application/x-jalview-annotations+text",
32 my @dontaddshortname = qw(features json);
33 my @dontaddextension = qw(html xml json jar mfa fastq);
34 my $add_associations = {
35 biojson => {shortname=>"biojson",name=>"BioJSON",extensions=>["biojson"]},
36 gff2 => {shortname=>"gff2",name=>"Generic Features Format v2",extensions=>["gff2"]},
37 gff3 => {shortname=>"gff3",name=>"Generic Features Format v3",extensions=>["gff3"]},
38 features => {shortname=>"features",name=>"Jalview Features",extensions=>["features","jvfeatures"]},
39 annotations => {shortname=>"annotations",name=>"Jalview Annotations",extensions=>["annotations","jvannotations"]},
40 mmcif => {shortname=>"mmcif",name=>"CIF",extensions=>["cif"]},
41 mmcif2 => {shortname=>"mmcif2",name=>"mmCIF",extensions=>["mcif","mmcif"]},
42 jvl => {shortname=>"jvl",name=>"Jalview Launch",extensions=>["jvl"],iconfile=>"Jalview-Launch"},
43 jnet => {shortname=>"jnet",name=>"JnetFile",extensions=>["concise","jnet"]},
44 scorematrix => {shortname=>"scorematrix",name=>"Substitution Matrix",extensions=>["mat"]},
46 my $add_extensions = {
49 my @put_first = qw(jalview jvl);
51 my @non_primary = qw(mmcif mmcif2 pdb);
53 my $v = ($i4jversion >= 8)?$i4jversion:"";
54 my $i4jtemplatefile = "file_associations_template-install4j${v}.xml";
56 my $mactemplatefile = "file_associations_template-Info_plist.xml";
59 open(MT,"<$mactemplatefile") or die("Could not open '$mactemplatefile' for reading");
64 open(IT,"<$i4jtemplatefile") or die("Could not open '$i4jtemplatefile' for reading");
72 my $macautofile = $mactemplatefile;
73 $macautofile =~ s/template/auto$1/;
75 my $i4jautofile = $i4jtemplatefile;
76 $i4jautofile =~ s/template/auto$1/;
78 for my $key (sort keys %$add_associations) {
79 my $a = $add_associations->{$key};
80 warn("Known file association for $a->{shortname} (".join(",",@{$a->{extensions}}).")\n");
83 open(MA,">$macautofile") or die ("Could not open '$macautofile' for writing");
84 print MA "<key>CFBundleDocumentTypes</key>\n<array>\n\n";
86 open(IA,">$i4jautofile") or die ("Could not open '$i4jautofile' for writing");
88 open(IN, "<$fileformats") or die ("Could not open '$fileformats' for reading");
90 my $file_associations = {};
91 while(my $line = <IN>) {
93 $line =~ s/(^ | $)//g;
94 if ($line =~ m/^(\w+) ?\( ?"([^"]*)" ?, ?"([^"]*)" ?, ?(true|false) ?, ?(true|false) ?\)$/i) {
95 my $shortname = lc($1);
96 next if (grep($_ eq $shortname, @dontaddshortname));
99 $extensions =~ s/\s+//g;
100 my @possextensions = map(lc($_),split(m/,/,$extensions));
102 my $addext = $add_extensions->{$shortname};
103 if (ref($addext) eq "ARRAY") {
104 push(@possextensions, @$addext);
106 for my $possext (@possextensions) {
107 next if grep($_ eq $possext, @extensions);
108 next if grep($_ eq $possext, @dontaddextension);
109 push(@extensions,$possext);
111 next unless scalar(@extensions);
112 $file_associations->{$shortname} = {
113 shortname => $shortname,
115 extensions => \@extensions
117 warn("Reading file association for $shortname (".join(",",@extensions).")\n");
122 my %all_associations = (%$file_associations, %$add_associations);
124 my @ordered = (@put_first, @non_primary);
125 for my $key (sort keys %all_associations) {
126 next if grep($_ eq $key, @ordered);
127 push(@ordered, $key);
129 my $num = $#ordered + 1;
134 for my $shortname (@ordered) {
135 my $a = $all_associations{$shortname};
136 next if (ref($a) ne "HASH");
138 my $name = $a->{name};
139 my $extensions = $a->{extensions};
140 my $mimetype = $mimetypes->{$shortname};
141 $mimetype = "application/x-$shortname+txt" unless $mimetype;
143 my $iconfile = $a->{iconfile};
144 $iconfile = "Jalview-File" unless $iconfile;
146 my $primary = (! grep($_ eq $shortname, @non_primary));
147 my $primarystring = $primary?"true":"false";
148 my $role = $primary?"Editor":"Viewer";
150 my @extensions = @$extensions;
152 my $xname = xml_escape($name);
153 my $xmimetype = xml_escape($mimetype);
154 my $xshortname = xml_escape($shortname);
155 my $xiconfile = xml_escape($iconfile);
156 my $xrole = xml_escape($role);
157 my $xROLE = xml_escape(uc($role));
158 my $xprimarystring = xml_escape($primarystring);
160 my $macentry = $mactemplate;
161 $macentry =~ s/\$\$NAME\$\$/$xname/g;
162 $macentry =~ s/\$\$SHORTNAME\$\$/$xshortname/g;
163 $macentry =~ s/\$\$MIMETYPE\$\$/$xmimetype/g;
164 $macentry =~ s/\$\$ICONFILE\$\$/$xiconfile/g;
165 $macentry =~ s/\$\$ROLE\$\$/$xrole/g;
166 $macentry =~ s/\$\$PRIMARY\$\$/$xprimarystring/g;
167 while ($macentry =~ m/\$\$([^\$]*)EXTENSIONS([^\$]*)\$\$/) {
171 for my $ext (@extensions) {
172 my $xext = xml_escape($ext);
173 $macextensions .= $pre.$xext.$post;
175 $macentry =~ s/\$\$${pre}EXTENSIONS${post}\$\$/$macextensions/g;
179 my $i4jentry = $i4jtemplate;
180 $i4jentry =~ s/\$\$NAME\$\$/$xname/g;
181 $i4jentry =~ s/\$\$SHORTNAME\$\$/$xshortname/g;
182 $i4jentry =~ s/\$\$MIMETYPE\$\$/$xmimetype/g;
183 $i4jentry =~ s/\$\$ICONFILE\$\$/$xiconfile/g;
184 $i4jentry =~ s/\$\$PRIMARY\$\$/$xprimarystring/g;
185 $i4jentry =~ s/\$\$MACASSOCIATIONROLE\$\$/$xROLE/g;
187 my $ext = join(",",sort(@extensions));
188 my $xdisplayext = xml_escape(join(", ", map(".$_",sort(@extensions))));
189 my $progresspercent = int(($i4jcount/$num)*100);
190 $progresspercent = 100 if $progresspercent > 100;
192 my $xext = xml_escape($ext);
193 my $addunixextension = "true";
195 $i4jentry =~ s/\$\$ADDUNIXEXTENSION\$\$/$addunixextension/g;
196 $i4jentry =~ s/\$\$EXTENSION\$\$/$xext/g;
197 $i4jentry =~ s/\$\$DISPLAYEXTENSION\$\$/$xdisplayext/g;
198 $i4jentry =~ s/\$\$PROGRESSPERCENT\$\$/$progresspercent/g;
199 $i4jentry =~ s/\$\$ID\$\$/$id/g;
201 $i4jentry =~ s/\$\$ID1\$\$/$id/g;
203 $i4jentry =~ s/\$\$ID2\$\$/$id/g;
208 delete $all_associations{$shortname};
209 warn("Writing entry for $name (".join(",",@$extensions).": $mimetype)\n");
213 print MA "</array>\n";
218 # stolen from Pod::Simple::XMLOutStream in base distro
219 $x =~ s/([^-\n\t !\#\$\%\(\)\*\+,\.\~\/\:\;=\?\@\[\\\]\^_\`\{\|\}a-zA-Z0-9])/'&#'.(ord($1)).';'/eg;