blob: 105f69ac09c883c851d3d483d5d87958673c60f0 [file] [log] [blame]
Marc Kupietzdc22b982015-10-09 09:19:34 +02001#!/usr/local/bin/perl
Marc Kupietzf11d20c2019-08-02 15:42:04 +02002use Inline C => "./w2v-server.c" => CLEAN_AFTER_BUILD => 0, BUILD_NOISY => 1, ccflags => $Config{ccflags}." -I/vol/work/kupietz/Work2/kl/trunk/CollocatorDB -I, -L. -Wall -O4", libs => "-shared -lpthread -lcollocatordb -lrt -lsnappy -lz -lbz2 -llz4 -lzstd -lrocksdb -lgomp";
Marc Kupietza5f60042017-05-04 10:38:12 +02003#use Inline C => Config => BUILD_NOISY => 1, CFLAGS => $Config{cflags}." -O4 -mtune k9";
4#use Inline C => Config => CLEAN_AFTER_BUILD => 0, ccflags => $Config{ccflags}." -Ofast -march k8 -mtune k8 ";
Marc Kupietzdc22b982015-10-09 09:19:34 +02005use Mojolicious::Lite;
Marc Kupietzc4893362016-02-25 08:04:46 +01006use Mojo::JSON qw(decode_json encode_json to_json);
Marc Kupietz30ca4342017-11-22 21:21:20 +01007use base 'Mojolicious::Plugin';
8
Marc Kupietz247500f2015-10-09 11:29:01 +02009use Encode qw(decode encode);
Marc Kupietza5b90152016-03-15 17:39:19 +010010use Getopt::Std;
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010011use Mojo::Server::Daemon;
Marc Kupietzffef9302017-11-07 15:58:01 +010012use Cwd;
Marc Kupietz66bfd952017-12-11 09:59:45 +010013
Marc Kupietzffef9302017-11-07 15:58:01 +010014app->static->paths->[0] = getcwd;
15
Marc Kupietz1b856fa2019-12-07 23:01:43 +010016plugin Config => {file => 'w2v-server.conf'};
17plugin 'Piwik';
Marc Kupietz2b8d44a2019-12-09 10:38:16 +010018plugin "RemoteAddr";
Marc Kupietz1b856fa2019-12-07 23:01:43 +010019plugin 'Util::RandomString' => {
20 piwik_rand_id => {
21 alphabet => '0123456789abcdef',
22 length => 16
23 }
24};
25
Marc Kupietzd4227392016-03-01 16:45:12 +010026plugin 'Log::Access';
Marc Kupietzb3422c12017-07-04 14:12:11 +020027plugin "RequestBase";
Marc Kupietz95104512019-12-05 10:13:05 +010028#plugin 'AutoReload';
29plugin Localize => {
30 dict => {
31 _ => sub { $_->locale },
32 },
33 resources => ['w2v-server.dict']
34};
Marc Kupietza5b90152016-03-15 17:39:19 +010035our $opt_i = 0; # latin1-input?
36our $opt_l = undef;
37our $opt_p = 5676;
Marc Kupietza2e64502016-04-27 09:53:51 +020038our $opt_m;
Marc Kupietz6ed81872016-04-27 14:04:04 +020039our $opt_M;
Marc Kupietz43ee87e2016-04-25 10:50:08 +020040our $opt_n = '';
41our $opt_d;
Marc Kupietzfa194262018-06-05 09:39:32 +020042our $opt_D;
Marc Kupietz5c3887d2016-04-28 08:53:35 +020043our $opt_G;
Marc Kupietza5b90152016-03-15 17:39:19 +010044
Marc Kupietz6ed81872016-04-27 14:04:04 +020045my %marked;
Marc Kupietzc053d972019-01-10 10:41:51 +010046my $title="";
Marc Kupietz793413b2016-04-02 21:48:57 +020047my $training_args="";
Marc Kupietza2e64502016-04-27 09:53:51 +020048my $mergedEnd=0;
Marc Kupietz15987412017-11-07 15:56:58 +010049my %cache;
Marc Kupietz19c68242018-03-12 09:42:21 +010050my %cccache; # classic collocator cache
Marc Kupietza51dcfa2018-03-19 16:22:05 +010051my %spcache; # similar profile cache
Marc Kupietz793413b2016-04-02 21:48:57 +020052
Marc Kupietzfa194262018-06-05 09:39:32 +020053getopts('d:D:Gil:p:m:n:M:');
Marc Kupietz6ed81872016-04-27 14:04:04 +020054
55if($opt_M) {
Marc Kupietzed930212016-04-27 15:42:38 +020056 open my $handle, '<:encoding(UTF-8)', $opt_M
57 or die "Can't open '$opt_M' for reading: $!";
58 while(<$handle>) {
Marc Kupietz6ed81872016-04-27 14:04:04 +020059 foreach my $mw (split /\s+/) {
60 $marked{$mw}=1
61 }
62 }
Marc Kupietzed930212016-04-27 15:42:38 +020063 close($handle);
Marc Kupietz6ed81872016-04-27 14:04:04 +020064}
Marc Kupietza5b90152016-03-15 17:39:19 +010065
Marc Kupietz7bc85fd2016-02-24 11:42:41 +010066# -cbow 1 -size 200 -window 8 -negative 25 -hs 0 -sample 1e-4 -threads 40 -binary 1 -iter 15
Marc Kupietza5b90152016-03-15 17:39:19 +010067if(!$ARGV[0]) {
Marc Kupietz0efe49b2020-04-06 18:30:22 +020068 init_net("vectors15.bin", $opt_n, ($opt_i? 1 : 0), 0);
Marc Kupietz2cb667e2016-03-10 09:44:12 +010069} else {
Marc Kupietz0efe49b2020-04-06 18:30:22 +020070 init_net($ARGV[0], $opt_n, ($opt_i? 1 : 0), 1);
Marc Kupietz793413b2016-04-02 21:48:57 +020071 if(open(FILE, "$ARGV[0].args")) {
72 $training_args = <FILE>;
73 }
74 close(FILE);
Marc Kupietzc053d972019-01-10 10:41:51 +010075 $title = fname2corpusname($ARGV[0]);
Marc Kupietz2cb667e2016-03-10 09:44:12 +010076}
Marc Kupietzdc22b982015-10-09 09:19:34 +020077
Marc Kupietza51dcfa2018-03-19 16:22:05 +010078my $have_sprofiles = load_sprofiles($ARGV[0]);
79
Marc Kupietza2e64502016-04-27 09:53:51 +020080if($opt_m) {
81 $mergedEnd = mergeVectors($opt_m);
Marc Kupietzc053d972019-01-10 10:41:51 +010082 $title = "<span class=\"merged\">" . $title . "</span> vs. " . fname2corpusname($opt_m);
Marc Kupietza2e64502016-04-27 09:53:51 +020083}
84
Marc Kupietze5568a02018-12-20 11:42:02 +010085
Marc Kupietz43ee87e2016-04-25 10:50:08 +020086if($opt_d) { # -d: dump vecs and exit
87 dump_vecs($opt_d);
88 exit;
89}
90
Marc Kupietzfa194262018-06-05 09:39:32 +020091if($opt_D) { # -D: dump vecs for numpy and exit
92 dump_for_numpy($opt_D);
93 exit;
94}
95
Marc Kupietza5b90152016-03-15 17:39:19 +010096my $daemon = Mojo::Server::Daemon->new(
97 app => app,
98 listen => ['http://'.($opt_l ? $opt_l : '*').":$opt_p"]
99);
100
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200101if($opt_G) {
102 print "Filtering garbage\n";
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100103 filter_garbage();
Marc Kupietz5c3887d2016-04-28 08:53:35 +0200104}
105
Marc Kupietz554aff52017-11-09 14:42:09 +0100106get '*/js/*' => sub {
Marc Kupietzffef9302017-11-07 15:58:01 +0100107 my $c = shift;
108 my $url = $c->req->url;
109 $url =~ s@/derekovecs@@g;
110 $c->app->log->info("GET: " . $url);
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100111 $c->reply->static($url);
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100112} => 'js';
Marc Kupietzffef9302017-11-07 15:58:01 +0100113
Marc Kupietza9270572018-03-17 15:17:07 +0100114get '*/css/*' => sub {
115 my $c = shift;
116 my $url = $c->req->url;
117 $url =~ s@/derekovecs/@/@g;
118 $c->app->log->info("GET: " . $url);
119 $c->reply->static($url);
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100120} => 'css';
Marc Kupietza9270572018-03-17 15:17:07 +0100121
Marc Kupietzc053d972019-01-10 10:41:51 +0100122sub fname2corpusname {
123 ($_) = @_;
124 s@.*/@@;
Marc Kupietz86b50292019-02-17 21:03:59 +0100125 s@\.en@-en@;
Marc Kupietzc053d972019-01-10 10:41:51 +0100126 s@\..*@@;
127 return $_;
128}
129
Marc Kupietzcb43e492019-12-03 10:07:53 +0100130sub getWord {
131 ($_) = @_;
132 if ($_ =~ /^\d+/) {
133 return $_;
134 } else {
135 return getWordNumber($_);
136 }
137}
138
Marc Kupietz19c68242018-03-12 09:42:21 +0100139sub getClassicCollocatorsCached {
140 my ($c, $word) = @_;
Marc Kupietz81aeed22019-02-17 21:22:45 +0100141 my $s2 = "";
Marc Kupietz9ff3c992019-02-04 12:32:54 +0100142 if($word > $mergedEnd) {
143 $word-=$mergedEnd;
144 }
Marc Kupietz81aeed22019-02-17 21:22:45 +0100145
Marc Kupietz999ab8c2019-02-17 21:42:21 +0100146 if($opt_p >= 5000 && $opt_p < 5600) { # German non-reference
Marc Kupietz0dd689e2020-01-14 16:07:18 +0100147 open PIPE, "GET http://corpora.ids-mannheim.de/openlab/derekovecs/getClassicCollocators?w=$word |";
Marc Kupietz999ab8c2019-02-17 21:42:21 +0100148 }
Marc Kupietz19c68242018-03-12 09:42:21 +0100149 if(!$cccache{$word}) {
Marc Kupietz06d61292019-02-04 12:33:22 +0100150 $c->app->log->info("Getting classic collocates of $word.");
Marc Kupietz19c68242018-03-12 09:42:21 +0100151 $cccache{$word} = getClassicCollocators($word);
Marc Kupietz1d96a082019-02-18 09:29:06 +0100152 $cccache{$word} =~ s/:(-?)(nan|inf)/:"${1}${2}"/g;
Marc Kupietz19c68242018-03-12 09:42:21 +0100153 } else {
Marc Kupietz06d61292019-02-04 12:33:22 +0100154 $c->app->log->info("Getting classic collocates for $word from cache.");
Marc Kupietz19c68242018-03-12 09:42:21 +0100155 }
Marc Kupietz81aeed22019-02-17 21:22:45 +0100156 if($opt_p >= 5000 && $opt_p < 5600) { # German non-reference
Marc Kupietz999ab8c2019-02-17 21:42:21 +0100157 while(<PIPE>) {
158 $s2 .= $_;
159 }
160 close(PIPE);
Marc Kupietz81aeed22019-02-17 21:22:45 +0100161 }
Marc Kupietz999ab8c2019-02-17 21:42:21 +0100162
Marc Kupietz81aeed22019-02-17 21:22:45 +0100163 if(length($s2) > 2000) {
164 my $d1 = decode_json($cccache{$word});
165 my $d2 = decode_json($s2);
166 my %d2ld;
Marc Kupietz001bffd2019-02-21 08:52:41 +0100167 my $minLd = 14;
Marc Kupietz81aeed22019-02-17 21:22:45 +0100168 foreach my $i (@{$d2->{collocates}}) {
169 $d2ld{$i->{word}}=$i->{ld};
Marc Kupietz001bffd2019-02-21 08:52:41 +0100170 $minLd=$i->{ld} if($i->{ld} < $minLd);
Marc Kupietz81aeed22019-02-17 21:22:45 +0100171 }
172 foreach my $i (@{$d1->{collocates}}) {
173 my $w = $i->{word};
Marc Kupietz001bffd2019-02-21 08:52:41 +0100174 $i->{delta} = $i->{ld} - (defined $d2ld{$w} ? $d2ld{$w} : $minLd-0.1);
Marc Kupietz81aeed22019-02-17 21:22:45 +0100175 }
176 return(encode_json($d1));
177 } else {
178 my $d1 = decode_json($cccache{$word});
179 foreach my $i (@{$d1->{collocates}}) {
180 $i->{delta} = 0;
181 }
182 return(encode_json($d1));
183 }
Marc Kupietz19c68242018-03-12 09:42:21 +0100184}
185
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100186sub getSimilarProfilesCached {
187 my ($c, $word) = @_;
188 if(!$spcache{$word}) {
189 $spcache{$word} = getSimilarProfiles($word);
190 } else {
191 $c->app->log->info("Getting similar profiles for $word from cache:");
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100192 }
193 return $spcache{$word};
194}
195
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100196post '/derekovecs/getVecsByRanks' => sub {
Marc Kupietz66bfd952017-12-11 09:59:45 +0100197 my $self = shift;
198 my $vec = getVecs($self->req->json);
199 $self->render(json => $vec);
200};
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100201
Marc Kupietze13a3552018-01-25 08:48:34 +0100202any '*/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +0100203 my $self = shift;
Marc Kupietzcb43e492019-12-03 10:07:53 +0100204 $self->render(data => getClassicCollocatorsCached($self, getWord($self->param("w") ? $self->param("w") : $self->req->json)), format=>'json');
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100205} => 'getClassicCollocators1';
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100206
Marc Kupietze13a3552018-01-25 08:48:34 +0100207any '/getClassicCollocators' => sub {
Marc Kupietze243efd2018-01-11 22:19:24 +0100208 my $self = shift;
Marc Kupietzcb43e492019-12-03 10:07:53 +0100209 $self->render(data => getClassicCollocatorsCached($self, getWord($self->param("w") ? $self->param("w") : $self->req->json)), format=>'json');
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100210} => 'getClassicCollocators';
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100211
Marc Kupietzd7760b42019-02-21 09:01:44 +0100212any '/getBiggestVocabDistances' => sub {
213 my $self = shift;
214 $self->render(data => getBiggestMergedDifferences(), format=>'json');
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100215} => 'getBiggestVocabDistances1';
Marc Kupietzd7760b42019-02-21 09:01:44 +0100216
217any '*/getBiggestVocabDistances' => sub {
218 my $self = shift;
219 $self->render(data => getBiggestMergedDifferences(), format=>'json');
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100220} => 'getBiggestVocabDistances';
Marc Kupietzd7760b42019-02-21 09:01:44 +0100221
Marc Kupietz33c79d32019-08-02 15:11:23 +0200222any '*/getPosWiseW2VCollocators' => sub {
223 my $self = shift;
224 $self->render(data => getPosWiseW2VCollocatorsAsTsv($self->param("w"),
225 ($self->param("max")? $self->param("max") : 200),
226 ($self->param("cutoff")? $self->param("cutoff") :750000),
227 ($self->param("threshold")? $self->param("threshold") : 0.2)),
228 format=>'tsv');
229};
230
231any '/getPosWiseW2VCollocators' => sub {
232 my $self = shift;
233 $self->render(data => getPosWiseW2VCollocatorsAsTsv($self->param("w"),
234 ($self->param("max")? $self->param("max") : 200),
235 ($self->param("cutoff")? $self->param("cutoff") : 750000),
236 ($self->param("threshold")? $self->param("threshold") : 0.2)),
237 format=>'tsv');
238};
239
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100240any '*/getSimilarProfiles' => sub {
241 my $self = shift;
Marc Kupietzcb43e492019-12-03 10:07:53 +0100242 $self->render(data => getSimilarProfilesCached($self, getWord($self->param("w") ? $self->param("w") : $self->req->json)), format=>'json');
Marc Kupietza51dcfa2018-03-19 16:22:05 +0100243};
244
Marc Kupietzc987fa82018-03-21 12:14:25 +0100245any '/getSimilarProfiles' => sub {
246 my $self = shift;
Marc Kupietzcb43e492019-12-03 10:07:53 +0100247 $self->render(data => getSimilarProfilesCached($self, getWord($self->param("w") ? $self->param("w") : $self->req->json)), format=>'json');
Marc Kupietzc987fa82018-03-21 12:14:25 +0100248};
249
Marc Kupietz9f301572020-04-06 18:29:16 +0200250any '*/getWord' => sub {
251 my $self = shift;
252 my $w = $self->param("w");
253 my $rank = getWord($w);
254 my $status = 200;
255 if ($rank <= 0) {
256 $rank = -1;
257 $status = 404;
258 }
259 $self->render(data => encode_json({word => $w, frequencyRank => $rank}), format => 'json', status => $status);
260};
261
262any '/getWord' => sub {
263 my $self = shift;
264 my $w = $self->param("w");
265 my $rank = getWord($w);
266 my $status = 200;
267 if ($rank <= 0) {
268 $rank = -1;
269 $status = 404;
270 }
271 $self->render(data => encode_json({word => $w, frequencyRank => $rank}), format => 'json', status => $status);
272};
273
Marc Kupietz98ed1c02019-08-02 15:05:37 +0200274any '/getSimilarity' => sub {
275 my $self = shift;
276 my $w1 = $self->param("w1");
277 my $w2 = $self->param("w2");
278 $self->render(data => cos_similarity_as_json($w1, $w2), format=>'json');
279};
280
281any '*/getSimilarity' => sub {
282 my $self = shift;
283 my $w1 = $self->param("w1");
284 my $w2 = $self->param("w2");
285 $self->render(data => cos_similarity_as_json($w1, $w2), format=>'json');
286};
287
Marc Kupietzdf3d4b52017-11-29 16:57:27 +0100288get '*/img/*' => sub {
289 my $c = shift;
290 my $url = $c->req->url;
291 $url =~ s@/derekovecs@@g;
292 $c->app->log->info("GET: " . $url);
293 $c->reply->static($url);
294};
295
Marc Kupietzdc22b982015-10-09 09:19:34 +0200296get '/' => sub {
297 my $c = shift;
Marc Kupietza5f60042017-05-04 10:38:12 +0200298 $c->app->log->info("get: ".$c->req->url->to_abs);
Marc Kupietzdc22b982015-10-09 09:19:34 +0200299 my $word=$c->param('word');
Marc Kupietz2da2a812019-02-21 14:17:35 +0100300 my $no_nbs=$c->param('n') || ($opt_m? 50 : 100);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100301 my $no_iterations=$c->param('N') || 2000;
Marc Kupietzd4227392016-03-01 16:45:12 +0100302 my $perplexity=$c->param('perplexity') || 20;
Marc Kupietzc4d62f82016-03-01 11:04:24 +0100303 my $epsilon=$c->param('epsilon') || 5;
Marc Kupietzd7aea722016-03-02 11:59:12 +0100304 my $som=$c->param('som') || 0;
Marc Kupietza2e64502016-04-27 09:53:51 +0200305 my $searchBaseVocabFirst=$c->param('sbf') || 0;
Marc Kupietz6d9a6782016-03-23 17:25:25 +0100306 my $sort=$c->param('sort') || 0;
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100307 my $csv=$c->param('csv') || 0;
Marc Kupietzb613b052016-04-28 14:11:59 +0200308 my $json=$c->param('json') || 0;
Marc Kupietzdb2dc7e2017-12-02 12:04:03 +0100309 my $cutoff=$c->param('cutoff') || 500000;
Marc Kupietzd91212f2017-11-13 10:05:09 +0100310 my $dedupe=$c->param('dedupe') || 0;
Marc Kupietzac707b32018-12-20 11:36:38 +0100311 my $nosp=$c->param('nosp') || 0;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100312 my $res;
Marc Kupietz7b2cbeb2016-02-25 11:22:00 +0100313 my @lists;
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100314 my @collocations;
Marc Kupietzcddc8482019-12-04 08:57:33 +0100315 if(defined($word) && $word !~ /^\s*$/) {
Marc Kupietz7bc85fd2016-02-24 11:42:41 +0100316 $c->inactivity_timeout(300);
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100317 $word =~ s/\s+/ /g;
Marc Kupietz3082fd02019-01-09 14:54:06 +0100318 if($opt_m && $word !~ /\|/) {
319 $word .= "|$word";
320 }
Marc Kupietz44bee3c2016-02-25 16:26:29 +0100321 for my $w (split(' *\| *', $word)) {
Marc Kupietz3082fd02019-01-09 14:54:06 +0100322 if($opt_m) {
323 if($searchBaseVocabFirst) {
324 $searchBaseVocabFirst=0;
325 } else {
326 $searchBaseVocabFirst=1;
327 }
328 }
329 if ($cache{$w.$cutoff.$no_nbs.$sort.$dedupe,$searchBaseVocabFirst}) {
Marc Kupietz15987412017-11-07 15:56:58 +0100330 $c->app->log->info("Getting $w results from cache");
Marc Kupietz3082fd02019-01-09 14:54:06 +0100331 $res = $cache{$w.$cutoff.$no_nbs.$sort.$dedupe.$searchBaseVocabFirst}
Marc Kupietza5b90152016-03-15 17:39:19 +0100332 } else {
Marc Kupietz15987412017-11-07 15:56:58 +0100333 $c->app->log->info('Looking for neighbours of '.$w);
334 if($opt_i) {
Marc Kupietzac707b32018-12-20 11:36:38 +0100335 $res = get_neighbours(encode("iso-8859-1", $w), $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100336 } else {
Marc Kupietzac707b32018-12-20 11:36:38 +0100337 $res = get_neighbours($w, $no_nbs, $sort, $searchBaseVocabFirst, $cutoff, $dedupe, $nosp);
Marc Kupietz15987412017-11-07 15:56:58 +0100338 }
Marc Kupietz2dd2dd72017-12-01 22:08:14 +0100339 $cache{$w.$cutoff.$no_nbs.$sort.$dedupe} = $res;
Marc Kupietza5b90152016-03-15 17:39:19 +0100340 }
Marc Kupietz6b2975c2016-03-18 21:59:33 +0100341 push(@lists, $res->{paradigmatic});
Marc Kupietz15987412017-11-07 15:56:58 +0100342 }
343 }
Marc Kupietz56844a22019-08-02 15:12:19 +0200344
Marc Kupietz000ad862016-02-26 14:59:12 +0100345 $word =~ s/ *\| */ | /g;
Marc Kupietzb613b052016-04-28 14:11:59 +0200346 if($json) {
347 return $c->render(json => {word => $word, list => \@lists, collocators=>$res->{syntagmatic}});
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100348 } elsif($csv) {
349 my $csv_data="";
350 for (my $i=0; $i <= $no_nbs; $i++) {
351 $csv_data .= $res->{paradigmatic}->[$i]->{word} . ", ";
352 }
353 for (my $i=0; $i < $no_nbs; $i++) {
354 $csv_data .= $res->{syntagmatic}->[$i]->{word} . ", ";
355 }
356 chop $csv_data;
357 chop $csv_data;
Marc Kupietz56dbabe2019-12-10 14:33:57 +0100358 $csv_data .= "\n";
Marc Kupietzc469f3b2017-11-13 14:07:36 +0100359 return $c->render(text=>$csv_data);
Marc Kupietzb613b052016-04-28 14:11:59 +0200360 } else {
Marc Kupietzd7760b42019-02-21 09:01:44 +0100361 my $distantWords="";
362 if(!defined($word) || $word !~ /^\s*$/) {
363 $distantWords = getBiggestMergedDifferences();
364 }
365 $c->render(template=>"index", title=>$title, word=>$word, distantWords=>$distantWords, cutoff=>$cutoff, no_nbs=>$no_nbs, no_iterations => $no_iterations, epsilon=> $epsilon, perplexity=> $perplexity, show_som=>$som, searchBaseVocabFirst=>$searchBaseVocabFirst, sort=>$sort, training_args=>$training_args, mergedEnd=> $mergedEnd, haveSProfiles=> $have_sprofiles, dedupe=> $dedupe, marked=>\%marked, lists=> \@lists, collocators=> $res->{syntagmatic});
Marc Kupietzb613b052016-04-28 14:11:59 +0200366 }
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100367} => "paradigmaticAndSyntagmaticNbs";
Marc Kupietzdc22b982015-10-09 09:19:34 +0200368
Marc Kupietz30ca4342017-11-22 21:21:20 +0100369helper(bitvec2window => sub {
370 my ($self, $n) = @_;
371 my $str = unpack("B32", pack("N", $n));
372 $str =~ s/^\d{22}//;
373 $str =~ s/^(\d{5})/$1x/;
374 $str =~ s/0/ยท/g;
375 $str =~ s/1/+/g;
376 return $str;
377 });
378
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100379hook(
380 after_render => sub {
381 my $c = shift;
382
383 # Only track valid routes
384 my $route = $c->current_route or return;
385
386 # This won't forward personalized information
387 my $hash = {
Marc Kupietz251de9f2020-01-14 16:12:05 +0100388 action_url => $c->req->url->to_abs,
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100389 action_name => $route,
Marc Kupietz251de9f2020-01-14 16:12:05 +0100390 ua => $c->req->headers->user_agent,
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100391 urlref => '',
392 send_image => 0,
393 dnt => 0,
Marc Kupietz251de9f2020-01-14 16:12:05 +0100394 cip => $c->remote_addr,
395 lang => $c->req->headers->accept_language,
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100396 uid => $c->random_string('piwik_rand_id')
397 };
Marc Kupietz251de9f2020-01-14 16:12:05 +0100398 # $c->app->log->info("PIWIK: counting " . $hash->{action_url} . "\nremote:" . $c->remote_addr);
399 # $c->app->log->info("PIWIK: tag " . $c->piwik_tag);
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100400
401 # Send track
402 $c->piwik->api_p(Track => $hash)->wait;
Marc Kupietz251de9f2020-01-14 16:12:05 +0100403
404 # $c->app->log->info("PIWIK: counted.");
Marc Kupietz1b856fa2019-12-07 23:01:43 +0100405 }
406);
407
Marc Kupietz95104512019-12-05 10:13:05 +0100408$daemon->run;
409# app->start;
Marc Kupietzdc22b982015-10-09 09:19:34 +0200410
Marc Kupietz95104512019-12-05 10:13:05 +0100411# exit;