blob: 5dcbfc042bd5b0f308bbfddd253db1a1f7b9565b [file] [log] [blame]
Marc Kupietz28cc53e2017-12-23 17:24:55 +01001#include <typeinfo>
Marc Kupietz4b799e92018-01-02 11:04:56 +01002#define EXPORT __attribute__((visibility("visible")))
3#define IMPORT
Marc Kupietz28cc53e2017-12-23 17:24:55 +01004#include <assert.h>
Marc Kupietz37359b12018-01-09 21:11:37 +01005#include <inttypes.h>
Marc Kupietz28cc53e2017-12-23 17:24:55 +01006#include <memory>
7#include <iostream>
Marc Kupietzc8ddf452018-01-07 21:33:12 +01008#include <algorithm>
9#include <vector>
Marc Kupietz28cc53e2017-12-23 17:24:55 +010010#include <stdint.h>
Marc Kupietzc8ddf452018-01-07 21:33:12 +010011#include <string>
12#include <sstream> // for ostringstream
13#include <math.h>
Marc Kupietzd31254c2018-01-20 21:29:30 +010014#include <rocksdb/cache.h>
Marc Kupietz28cc53e2017-12-23 17:24:55 +010015#include "rocksdb/comparator.h"
16#include "rocksdb/db.h"
17#include "rocksdb/env.h"
Marc Kupietzc8ddf452018-01-07 21:33:12 +010018#include "rocksdb/table.h"
Marc Kupietz28cc53e2017-12-23 17:24:55 +010019#include <rocksdb/merge_operator.h>
Marc Kupietzc8ddf452018-01-07 21:33:12 +010020#include <rocksdb/slice_transform.h>
Marc Kupietz28cc53e2017-12-23 17:24:55 +010021#include "rocksdb/utilities/db_ttl.h"
Marc Kupietzc8ddf452018-01-07 21:33:12 +010022#include "rocksdb/filter_policy.h"
Marc Kupietz28cc53e2017-12-23 17:24:55 +010023#include "merge_operators.h"
24
Marc Kupietz75af60f2019-01-22 22:34:29 +010025#define WINDOW_SIZE 5
Marc Kupietz98cbcdc2019-01-21 17:11:27 +010026#define FREQUENCY_THRESHOLD 5
Marc Kupietz28cc53e2017-12-23 17:24:55 +010027#define IS_BIG_ENDIAN (*(uint16_t *)"\0\xff" < 0x100)
28#define encodeCollocation(w1, w2, dist) (((uint64_t)dist << 56) | ((uint64_t)w2 << 24) | w1)
Marc Kupietz18375e12017-12-24 10:11:18 +010029#define W1(key) (uint64_t)(key & 0xffffff)
30#define W2(key) (uint64_t)((key >> 24) & 0xffffff)
31#define DIST(key) (int8_t)((uint64_t)((key >> 56) & 0xff))
Marc Kupietzc8ddf452018-01-07 21:33:12 +010032
33typedef struct {
34 uint64_t freq;
35 char *word;
36} vocab_entry;
37
38// typedef struct Collocator {
39// uint64_t w2;
40// uint64_t sum;
41// };
42
Marc Kupietz28cc53e2017-12-23 17:24:55 +010043using namespace rocksdb;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010044using namespace std;
Marc Kupietz28cc53e2017-12-23 17:24:55 +010045
Marc Kupietz4b799e92018-01-02 11:04:56 +010046namespace rocksdb {
Marc Kupietz4a5e08a2018-06-05 11:07:11 +020047 class Collocator {
48 public:
Marc Kupietz8c62c372019-01-31 12:21:01 +010049 uint32_t w2;
Marc Kupietzcc6c4592019-01-23 10:11:23 +010050 uint64_t f2;
Marc Kupietz51f93792018-01-25 08:51:01 +010051 uint64_t raw;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010052 double pmi;
53 double npmi;
54 double llr;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010055 double lfmd;
Marc Kupietz41880452019-01-22 15:29:06 +010056 double md;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +010057 double left_lfmd;
58 double right_lfmd;
59 double left_npmi;
60 double right_npmi;
Marc Kupietz41880452019-01-22 15:29:06 +010061 double dice;
62 double logdice;
Marc Kupietz3203e4c2019-02-04 12:42:45 +010063 double ldaf;
Marc Kupietz75af60f2019-01-22 22:34:29 +010064 int window;
Marc Kupietze9f58932019-01-24 15:12:59 +010065 int af_window;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010066 };
67
Marc Kupietz28cc53e2017-12-23 17:24:55 +010068 size_t num_merge_operator_calls;
69 void resetNumMergeOperatorCalls() { num_merge_operator_calls = 0; }
Marc Kupietzc8ddf452018-01-07 21:33:12 +010070
Marc Kupietz28cc53e2017-12-23 17:24:55 +010071 size_t num_partial_merge_calls;
72 void resetNumPartialMergeCalls() { num_partial_merge_calls = 0; }
Marc Kupietz28cc53e2017-12-23 17:24:55 +010073
74
Marc Kupietz4b799e92018-01-02 11:04:56 +010075 inline void EncodeFixed64(char* buf, uint64_t value) {
76 if (! IS_BIG_ENDIAN) {
77 memcpy(buf, &value, sizeof(value));
78 } else {
79 buf[0] = value & 0xff;
80 buf[1] = (value >> 8) & 0xff;
81 buf[2] = (value >> 16) & 0xff;
82 buf[3] = (value >> 24) & 0xff;
83 buf[4] = (value >> 32) & 0xff;
84 buf[5] = (value >> 40) & 0xff;
85 buf[6] = (value >> 48) & 0xff;
86 buf[7] = (value >> 56) & 0xff;
87 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +010088 }
89
Marc Kupietz4b799e92018-01-02 11:04:56 +010090 inline uint32_t DecodeFixed32(const char* ptr) {
91 if (! IS_BIG_ENDIAN) {
92 // Load the raw bytes
93 uint32_t result;
94 memcpy(&result, ptr, sizeof(result)); // gcc optimizes this to a plain load
95 return result;
96 } else {
97 return ((static_cast<uint32_t>(static_cast<unsigned char>(ptr[0])))
98 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[1])) << 8)
99 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[2])) << 16)
100 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[3])) << 24));
101 }
102 }
103
104 inline uint64_t DecodeFixed64(const char* ptr) {
105 if (! IS_BIG_ENDIAN) {
106 // Load the raw bytes
107 uint64_t result;
108 memcpy(&result, ptr, sizeof(result)); // gcc optimizes this to a plain load
109 return result;
110 } else {
111 uint64_t lo = DecodeFixed32(ptr);
112 uint64_t hi = DecodeFixed32(ptr + 4);
113 return (hi << 32) | lo;
114 }
115 }
116
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100117 static inline double ca_pmi(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) {
Marc Kupietz1335dd72019-01-22 15:35:21 +0100118 double
119 r1 = f1 * window_size,
120 c1 = f2,
121 e = r1 * c1 / total,
122 o = f12;
Marc Kupietzf4a649a2021-02-26 09:18:01 +0100123 if(f12 < FREQUENCY_THRESHOLD)
124 return -1.0;
125 else
126 return log2(o/e);
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100127 }
128
Marc Kupietzce0b8b02018-06-05 11:06:39 +0200129 // Bouma, Gerlof (2009): <a href="https://svn.spraakdata.gu.se/repos/gerlof/pub/www/Docs/npmi-pfd.pdf">
130 // Normalized (pointwise) mutual information in collocation extraction</a>. In Proceedings of GSCL.
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100131 static inline double ca_npmi(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) {
Marc Kupietz1335dd72019-01-22 15:35:21 +0100132 double
133 r1 = f1 * window_size,
134 c1 = f2,
135 e = r1 * c1 / total,
136 o = f12;
137 if(f12 < FREQUENCY_THRESHOLD)
Marc Kupietz8caf9912018-06-05 10:51:18 +0200138 return -1.0;
139 else
Marc Kupietz1335dd72019-01-22 15:35:21 +0100140 return log2(o/e) / (-log2(o/total/window_size));
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100141 }
142
143 // Thanopoulos, A., Fakotakis, N., Kokkinakis, G.: Comparative evaluation of collocation extraction metrics.
144 // In: International Conference on Language Resources and Evaluation (LREC-2002). (2002) 620–625
145 // double md = log2(pow((double)max * window_size / total, 2) / (window_size * ((double)_vocab[w1].freq/total) * ((double)_vocab[last_w2].freq/total)));
146 static inline double ca_md(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) {
Marc Kupietz1335dd72019-01-22 15:35:21 +0100147 double
148 r1 = f1 * window_size,
149 c1 = f2,
150 e = r1 * c1 / total,
151 o = f12;
152 return log2(o*o/e);
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100153 }
154
155 static inline double ca_lfmd(uint64_t f1, uint64_t f2, uint64_t f12, uint64_t total, double window_size) {
Marc Kupietz1335dd72019-01-22 15:35:21 +0100156 double
157 r1 = f1 * window_size,
158 c1 = f2,
159 e = r1 * c1 / total,
160 o = f12;
Marc Kupietz8caf9912018-06-05 10:51:18 +0200161 if(f12 == 0)
162 return 0;
163 else
Marc Kupietz1335dd72019-01-22 15:35:21 +0100164 return log2(o*o*o/e);
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100165 }
166
Marc Kupietzbbd236e2019-01-21 16:50:19 +0100167 // Evert, Stefan (2004): The Statistics of Word Cooccurrences: Word Pairs and Collocations. PhD dissertation, IMS, University of Stuttgart. Published in 2005, URN urn:nbn:de:bsz:93-opus-23714.
168 // Free PDF available from http://purl.org/stefan.evert/PUB/Evert2004phd.pdf
169 static inline double ca_ll(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) {
170 double
171 r1 = (double) w1 * window_size,
172 r2 = (double) n - r1,
173 c1 = w2,
174 c2 = n - c1,
175 o11 = w12, o12 = r1 - o11,
176 o21 = c1 - w12, o22 = r2 - o21,
177 e11 = r1 * c1 / n, e12 = r1 * c2 / n,
178 e21 = r2 * c1 / n, e22 = r2 * c2 / n;
179 return (2 * ( (o11>0? o11 * log(o11/e11):0) + (o12>0? o12 * log(o12/e12):0) + (o21>0? o21 * log(o21/e21):0) + (o22>0? o22 * log(o22/e22):0)));
180 }
Marc Kupietz4b799e92018-01-02 11:04:56 +0100181
Marc Kupietz41880452019-01-22 15:29:06 +0100182
183 static inline double ca_dice(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) {
184 double
185 r1 = (double) w1 * window_size,
186 c1 = w2;
187 return 2 * w12 / (c1+r1);
188 }
189
190 // Rychlý, Pavel (2008): <a href="http://www.fi.muni.cz/usr/sojka/download/raslan2008/13.pdf">A lexicographer-friendly association score.</a> In Proceedings of Recent Advances in Slavonic Natural Language Processing, RASLAN, 6–9.
191 static inline double ca_logdice(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) {
192 double
Marc Kupietz41880452019-01-22 15:29:06 +0100193 r1 = (double) w1 * window_size,
194 c1 = w2;
Marc Kupietzfdc0acf2019-01-31 12:42:58 +0100195 return 14 + log2(2 * w12 / (c1+r1));
Marc Kupietz41880452019-01-22 15:29:06 +0100196 }
197
Marc Kupietz4b799e92018-01-02 11:04:56 +0100198 class CountMergeOperator : public AssociativeMergeOperator {
199 public:
200 CountMergeOperator() {
201 mergeOperator_ = MergeOperators::CreateUInt64AddOperator();
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100202 }
203
Marc Kupietz4b799e92018-01-02 11:04:56 +0100204 virtual bool Merge(const Slice& key,
205 const Slice* existing_value,
206 const Slice& value,
207 std::string* new_value,
208 Logger* logger) const override {
209 assert(new_value->empty());
210 ++num_merge_operator_calls;
211 if (existing_value == nullptr) {
212 new_value->assign(value.data(), value.size());
213 return true;
214 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100215
Marc Kupietz4b799e92018-01-02 11:04:56 +0100216 return mergeOperator_->PartialMerge(
217 key,
218 *existing_value,
219 value,
220 new_value,
221 logger);
222 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100223
Marc Kupietz4b799e92018-01-02 11:04:56 +0100224 virtual const char* Name() const override {
225 return "UInt64AddOperator";
226 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100227
Marc Kupietz4b799e92018-01-02 11:04:56 +0100228 private:
229 std::shared_ptr<MergeOperator> mergeOperator_;
230 };
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100231
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100232
Marc Kupietz4b799e92018-01-02 11:04:56 +0100233 class CollocatorIterator : public Iterator {
234 private:
235 char prefixc[sizeof(uint64_t)];
236 Iterator *base_iterator_;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100237
238
Marc Kupietz4b799e92018-01-02 11:04:56 +0100239 public:
240 CollocatorIterator(Iterator* base_iterator)
241 : base_iterator_(base_iterator)
242 {}
243
Marc Kupietz4b799e92018-01-02 11:04:56 +0100244 void setPrefix(char *prefix) {
245 memcpy(prefixc, prefix, sizeof(uint64_t));
246 }
247
248 virtual void SeekToFirst() { base_iterator_->SeekToFirst(); }
249 virtual void SeekToLast() { base_iterator_->SeekToLast(); }
250 virtual void Seek(const rocksdb::Slice& s) { base_iterator_->Seek(s); }
251 virtual void Prev() { base_iterator_->Prev(); }
252 virtual void Next() { base_iterator_->Next(); }
253 virtual Slice key() const;
254 virtual Slice value() const;
255 virtual Status status() const;
256 virtual bool Valid() const;
257 bool isValid();
258 uint64_t intValue();
259 uint64_t intKey();
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100260
Marc Kupietz4b799e92018-01-02 11:04:56 +0100261 };
Marc Kupietz18375e12017-12-24 10:11:18 +0100262
Marc Kupietz4b799e92018-01-02 11:04:56 +0100263 // rocksdb::CollocatorIterator::CollocatorIterator(Iterator* base_iterator) {}
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100264
Marc Kupietz4b799e92018-01-02 11:04:56 +0100265 bool rocksdb::CollocatorIterator::Valid() const {
Marc Kupietz18375e12017-12-24 10:11:18 +0100266 return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3));
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100267 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100268
Marc Kupietz4b799e92018-01-02 11:04:56 +0100269 bool rocksdb::CollocatorIterator::isValid() {
270 return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3));
Marc Kupietzd31254c2018-01-20 21:29:30 +0100271 // return key().starts_with(std::string(prefixc,3));
Marc Kupietz4b799e92018-01-02 11:04:56 +0100272 }
Marc Kupietz18375e12017-12-24 10:11:18 +0100273
Marc Kupietz4b799e92018-01-02 11:04:56 +0100274 uint64_t rocksdb::CollocatorIterator::intKey() {
275 return DecodeFixed64(base_iterator_->key().data());
276 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100277
Marc Kupietz4b799e92018-01-02 11:04:56 +0100278 uint64_t rocksdb::CollocatorIterator::intValue() {
279 return DecodeFixed64(base_iterator_->value().data());
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100280 }
281
Marc Kupietz37359b12018-01-09 21:11:37 +0100282 class VocabEntry {
283 public:
284 string word;
285 uint64_t freq;
286 };
287
Marc Kupietz6aec7682018-01-10 09:47:48 +0100288 class CollocatorDB {
Marc Kupietz4b799e92018-01-02 11:04:56 +0100289 private:
290 WriteOptions merge_option_; // for merge
291 char _one[sizeof(uint64_t)];
292 Slice _one_slice;
Marc Kupietz37359b12018-01-09 21:11:37 +0100293 vector<VocabEntry> _vocab;
Marc Kupietz4ec51c12019-01-21 11:06:39 +0100294 uint64_t total = 0;
295 uint64_t sentences = 0;
Marc Kupietz8cf7e912019-01-21 17:05:23 +0100296 float avg_window_size = 8.0;
Marc Kupietz37359b12018-01-09 21:11:37 +0100297
Marc Kupietz4b799e92018-01-02 11:04:56 +0100298 protected:
299 std::shared_ptr<DB> db_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100300
Marc Kupietz4b799e92018-01-02 11:04:56 +0100301 WriteOptions put_option_;
302 ReadOptions get_option_;
303 WriteOptions delete_option_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100304
Marc Kupietz4b799e92018-01-02 11:04:56 +0100305 uint64_t default_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100306
Marc Kupietz4b799e92018-01-02 11:04:56 +0100307 std::shared_ptr<DB> OpenDb(const char *dbname);
Marc Kupietz6bb27762018-01-09 17:53:01 +0100308 std::shared_ptr<DB> OpenDbForRead(const char *dbname);
Marc Kupietz37359b12018-01-09 21:11:37 +0100309 void read_vocab(string fname);
310
Marc Kupietz4b799e92018-01-02 11:04:56 +0100311 public:
Marc Kupietz4a5e08a2018-06-05 11:07:11 +0200312 string getWord(uint32_t w1);
Marc Kupietz6aec7682018-01-10 09:47:48 +0100313 CollocatorDB(const char *db_name, bool read_only);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100314
Marc Kupietz6aec7682018-01-10 09:47:48 +0100315 // public interface of CollocatorDB.
Marc Kupietz4b799e92018-01-02 11:04:56 +0100316 // All four functions return false
317 // if the underlying level db operation failed.
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100318
Marc Kupietz4b799e92018-01-02 11:04:56 +0100319 // mapped to a levedb Put
320 bool set(const std::string& key, uint64_t value) {
321 // just treat the internal rep of int64 as the string
322 char buf[sizeof(value)];
323 EncodeFixed64(buf, value);
324 Slice slice(buf, sizeof(value));
325 auto s = db_->Put(put_option_, key, slice);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100326
Marc Kupietz4b799e92018-01-02 11:04:56 +0100327 if (s.ok()) {
328 return true;
329 } else {
330 std::cerr << s.ToString() << std::endl;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100331 return false;
332 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100333 }
Marc Kupietz4b799e92018-01-02 11:04:56 +0100334
335 DB *getDb() {
336 return db_.get();
337 }
338
339 // mapped to a rocksdb Delete
340 bool remove(const std::string& key) {
341 auto s = db_->Delete(delete_option_, key);
342
343 if (s.ok()) {
344 return true;
345 } else {
346 std::cerr << s.ToString() << std::endl;
347 return false;
348 }
349 }
350
351 // mapped to a rocksdb Get
352 bool get(const std::string& key, uint64_t* value) {
353 std::string str;
354 auto s = db_->Get(get_option_, key, &str);
355
356 if (s.IsNotFound()) {
357 // return default value if not found;
358 *value = default_;
359 return true;
360 } else if (s.ok()) {
361 // deserialization
362 if (str.size() != sizeof(uint64_t)) {
363 std::cerr << "value corruption\n";
364 return false;
365 }
366 *value = DecodeFixed64(&str[0]);
367 return true;
368 } else {
369 std::cerr << s.ToString() << std::endl;
370 return false;
371 }
372 }
373
374
375 uint64_t get(const uint32_t w1, const uint32_t w2, const int8_t dist) {
376 char encoded_key[sizeof(uint64_t)];
377 EncodeFixed64(encoded_key, encodeCollocation(w1,w2,dist));
378 uint64_t value = default_;
379 get(std::string(encoded_key, 8), &value);
380 return value;
381 }
382
383 virtual void inc(const std::string& key) {
384 db_->Merge(merge_option_, key, _one_slice);
385 }
386
387 void inc(const uint64_t key) {
388 char encoded_key[sizeof(uint64_t)];
389 EncodeFixed64(encoded_key, key);
390 db_->Merge(merge_option_, std::string(encoded_key, 8), _one_slice);
391 }
392
393 virtual void inc(const uint32_t w1, const uint32_t w2, const uint8_t dist);
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100394 void dump(uint32_t w1, uint32_t w2, int8_t dist);
Marc Kupietz37359b12018-01-09 21:11:37 +0100395 vector<Collocator> get_collocators(uint32_t w1);
Marc Kupietzbd966192018-10-13 14:14:37 +0200396 vector<Collocator> get_collocators(uint32_t w1, uint32_t max_w2);
Marc Kupietz8c62c372019-01-31 12:21:01 +0100397 void applyCAMeasures(const uint32_t w1, const uint32_t w2, uint64_t *sumWindow, const uint64_t sum, const int usedPositions, int true_window_size, rocksdb::Collocator *result);
398
Marc Kupietz3400aa52018-06-05 10:28:55 +0200399 void dumpSparseLlr(uint32_t w1, uint32_t min_cooccur);
Marc Kupietze9627152019-02-04 12:32:12 +0100400 string collocators2json(uint32_t w1, vector<Collocator> collocators);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100401
Marc Kupietz4b799e92018-01-02 11:04:56 +0100402 // mapped to a rocksdb Merge operation
403 virtual bool add(const std::string& key, uint64_t value) {
404 char encoded[sizeof(uint64_t)];
405 EncodeFixed64(encoded, value);
406 Slice slice(encoded, sizeof(uint64_t));
407 auto s = db_->Merge(merge_option_, key, slice);
408
409 if (s.ok()) {
410 return true;
411 } else {
412 std::cerr << s.ToString() << std::endl;
413 return false;
414 }
415 }
416
417 CollocatorIterator* SeekIterator(uint64_t w1, uint64_t w2, int8_t dist);
418 };
419
Marc Kupietz6aec7682018-01-10 09:47:48 +0100420 rocksdb::CollocatorDB::CollocatorDB(const char *db_name, bool read_only = false) {
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100421 // merge_option_.sync = true;
Marc Kupietz6bb27762018-01-09 17:53:01 +0100422 if(read_only)
423 db_ = OpenDbForRead(db_name);
424 else
425 db_ = OpenDb(db_name);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100426 assert(db_);
427 uint64_t one = 1;
428 EncodeFixed64(_one, one);
429 _one_slice = Slice(_one, sizeof(uint64_t));
430 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100431
Marc Kupietz6aec7682018-01-10 09:47:48 +0100432 void rocksdb::CollocatorDB::inc(const uint32_t w1, const uint32_t w2, const uint8_t dist) {
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100433 inc(encodeCollocation(w1, w2, dist));
434 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100435
Marc Kupietz6aec7682018-01-10 09:47:48 +0100436 void rocksdb::CollocatorDB::read_vocab(string fname) {
Marc Kupietz37359b12018-01-09 21:11:37 +0100437 char strbuf[2048];
438 uint64_t freq;
439 FILE *fin = fopen(fname.c_str(), "rb");
440 if (fin == NULL) {
441 cout << "Vocabulary file " << fname <<" not found\n";
442 exit(1);
443 }
444 uint64_t i = 0;
445 while(!feof(fin)) {
Marc Kupietzd31254c2018-01-20 21:29:30 +0100446 fscanf(fin, "%s %lu", strbuf, &freq);
Marc Kupietz37359b12018-01-09 21:11:37 +0100447 _vocab.push_back({strbuf, freq});
448 total += freq;
449 i++;
450 }
451 fclose(fin);
Marc Kupietz4ec51c12019-01-21 11:06:39 +0100452
453 char size_fname[256];
454 strcpy(size_fname, fname.c_str());
455 char *pos = strstr(size_fname, ".vocab");
456 if(pos) {
457 *pos=0;
458 strcat(size_fname, ".size");
459 FILE *fp = fopen(size_fname, "r");
460 if (fp != NULL) {
461 fscanf(fp, "%lu", &sentences);
462 fscanf(fp, "%lu", &total);
463 float sl = (float)total/(float)sentences;
464 float w = WINDOW_SIZE;
465 avg_window_size = ((sl > 2*w? (sl-2*w)*2*w: 0) + (double) w * (3*w -1)) / sl;
466 fprintf(stdout, "Size corrections found: corpus size: %lu tokens in %lu sentences, avg. sentence size: %f, avg. window size: %f\n", total, sentences, sl, avg_window_size);
467 fclose(fp);
468 } else {
469 std::cout << "size file " << size_fname << " not found\n";
470 }
471 } else {
472 std::cout << "cannot determine size file " << size_fname << "\n";
473 }
Marc Kupietz37359b12018-01-09 21:11:37 +0100474 }
475
Marc Kupietz6aec7682018-01-10 09:47:48 +0100476 std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDbForRead(const char *name) {
Marc Kupietz6bb27762018-01-09 17:53:01 +0100477 DB* db;
478 Options options;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100479 options.env->SetBackgroundThreads(4);
480 options.create_if_missing = true;
481 options.merge_operator = std::make_shared<CountMergeOperator>();
482 options.max_successive_merges = 0;
483 // options.prefix_extractor.reset(NewFixedPrefixTransform(8));
484 options.IncreaseParallelism();
485 options.OptimizeLevelStyleCompaction();
486 options.prefix_extractor.reset(NewFixedPrefixTransform(3));
Marc Kupietz37359b12018-01-09 21:11:37 +0100487 ostringstream dbname, vocabname;
Marc Kupietz6bb27762018-01-09 17:53:01 +0100488 dbname << name << ".rocksdb";
489 auto s = DB::OpenForReadOnly(options, dbname.str(), &db);
490 if (!s.ok()) {
491 std::cerr << s.ToString() << std::endl;
492 assert(false);
493 }
Marc Kupietz37359b12018-01-09 21:11:37 +0100494 vocabname << name << ".vocab";
495 read_vocab(vocabname.str());
Marc Kupietz6bb27762018-01-09 17:53:01 +0100496 return std::shared_ptr<DB>(db);
497 }
498
Marc Kupietz6aec7682018-01-10 09:47:48 +0100499 std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDb(const char *dbname) {
Marc Kupietz4b799e92018-01-02 11:04:56 +0100500 DB* db;
501 Options options;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100502
503
504 options.env->SetBackgroundThreads(4);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100505 options.create_if_missing = true;
506 options.merge_operator = std::make_shared<CountMergeOperator>();
507 options.max_successive_merges = 0;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100508 // options.prefix_extractor.reset(NewFixedPrefixTransform(8));
509 options.IncreaseParallelism();
510 options.OptimizeLevelStyleCompaction();
511 // options.max_write_buffer_number = 48;
512 // options.max_background_jobs = 48;
513 // options.allow_concurrent_memtable_write=true;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100514 // options.memtable_factory.reset(rocksdb::NewHashLinkListRepFactory(200000));
515 // options.enable_write_thread_adaptive_yield = 1;
516 // options.allow_concurrent_memtable_write = 1;
517 // options.memtable_factory.reset(new rocksdb::SkipListFactory);
518 // options.write_buffer_size = 1 << 22;
519 // options.allow_mmap_reads = true;
520 // options.allow_mmap_writes = true;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100521 // options.max_background_compactions = 40;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100522 // BlockBasedTableOptions table_options;
523 // table_options.filter_policy.reset(NewBloomFilterPolicy(24, false));
524 // options.bloom_locality = 1;
525 // std::shared_ptr<Cache> cache = NewLRUCache(512 * 1024 * 1024);
526 // table_options.block_cache = cache;
527 // options.table_factory.reset(NewBlockBasedTableFactory(table_options));
Marc Kupietz4b799e92018-01-02 11:04:56 +0100528 Status s;
529 // DestroyDB(dbname, Options());
530 s = DB::Open(options, dbname, &db);
531 if (!s.ok()) {
532 std::cerr << s.ToString() << std::endl;
533 assert(false);
534 }
535 return std::shared_ptr<DB>(db);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100536 }
537
Marc Kupietz6aec7682018-01-10 09:47:48 +0100538 CollocatorIterator* rocksdb::CollocatorDB::SeekIterator(uint64_t w1, uint64_t w2, int8_t dist) {
Marc Kupietz18375e12017-12-24 10:11:18 +0100539 ReadOptions options;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100540 options.prefix_same_as_start = true;
Marc Kupietz18375e12017-12-24 10:11:18 +0100541 char prefixc[sizeof(uint64_t)];
542 EncodeFixed64(prefixc, encodeCollocation(w1, w2, dist));
543 Iterator *it = db_->NewIterator(options);
544 CollocatorIterator *cit = new CollocatorIterator(it);
545 cit->Seek(std::string(prefixc,3));// it->Valid() && it->key().starts_with(std::string(prefixc,3)); it->Next()) {
546 cit->setPrefix(prefixc);
547 return cit;
548 }
549
Marc Kupietz6aec7682018-01-10 09:47:48 +0100550 void rocksdb::CollocatorDB::dump(uint32_t w1, uint32_t w2, int8_t dist) {
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100551 auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, w2, dist));
552 for (; it->isValid(); it->Next()) {
553 uint64_t value = it->intValue();
554 uint64_t key = it->intKey();
555 std::cout << "w1:" << W1(key) << ", w2:" << W2(key) << ", dist:" << (int32_t) DIST(key) << " - count:" << value << std::endl;
556 }
557 std::cout << "ready dumping\n";
558 }
559
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100560 bool sortByNpmi(const Collocator &lhs, const Collocator &rhs) { return lhs.npmi > rhs.npmi; }
561 bool sortByLfmd(const Collocator &lhs, const Collocator &rhs) { return lhs.lfmd > rhs.lfmd; }
Marc Kupietzd31254c2018-01-20 21:29:30 +0100562 bool sortByLlr(const Collocator &lhs, const Collocator &rhs) { return lhs.llr > rhs.llr; }
Marc Kupietz7e3dfde2019-01-22 16:27:33 +0100563 bool sortByLogDice(const Collocator &lhs, const Collocator &rhs) { return lhs.logdice > rhs.logdice; }
Marc Kupietz3203e4c2019-02-04 12:42:45 +0100564 bool sortByLogDiceAF(const Collocator &lhs, const Collocator &rhs) { return lhs.ldaf > rhs.ldaf; }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100565
Marc Kupietz8c62c372019-01-31 12:21:01 +0100566
567 void rocksdb::CollocatorDB::applyCAMeasures(const uint32_t w1, const uint32_t w2, uint64_t *sumWindow,
568 const uint64_t sum, const int usedPositions, int true_window_size, rocksdb::Collocator *result) {
569 uint64_t f1 = _vocab[w1].freq, f2 = _vocab[w2].freq;
570 double o = sum,
571 r1 = f1 * true_window_size,
572 c1 = f2,
573 e = r1 * c1 / total,
574 pmi = log2(o/e),
575 md = log2(o*o/e),
576 lfmd = log2(o*o*o/e),
577 llr = ca_ll(f1, f2, sum, total, true_window_size);
578 double ld = ca_logdice(f1, f2, sum, total, true_window_size);
579
580 int bestWindow = usedPositions;
581 double bestAF = ld;
582 double currentAF;
583 // if(f1<75000000)
584 //#pragma omp parallel for reduction(max:bestAF)
585 for (int bitmask=1; bitmask < (1 << (2*WINDOW_SIZE)); bitmask++) {
586 if((bitmask & usedPositions) == 0 || (bitmask & ~usedPositions) > 0) continue;
587 uint64_t currentWindowSum=0;
588 //#pragma omp parallel for reduction(+:currentWindowSum)
589 for (int pos=0; pos < 2*WINDOW_SIZE; pos++) {
590 if (((1<<pos) & bitmask & usedPositions) != 0)
591 currentWindowSum+=sumWindow[pos];
592 }
593 currentAF = ca_logdice(f1, f2, currentWindowSum, total, __builtin_popcount(bitmask));
594 if(currentAF > bestAF) {
595 bestAF = currentAF;
596 bestWindow = bitmask;
597 }
598 }
599
600 *result = {w2, f2, sum,
601 pmi, pmi / (-log2(o/total/true_window_size)),
602 llr, lfmd, md,
603 0,
604 0,
605 0,
606 0,
607 ca_dice(f1, f2, sum, total, true_window_size),
608 ld,
609 bestAF,
610 usedPositions,
611 bestWindow
612 };
613
614 }
615
Marc Kupietz75af60f2019-01-22 22:34:29 +0100616 std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1, uint32_t max_w2) {
617 std::vector<Collocator> collocators;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100618 uint64_t w2, last_w2 = 0xffffffffffffffff;
Marc Kupietz8c62c372019-01-31 12:21:01 +0100619 uint64_t maxv = 0, sum = 0;
620 uint64_t *sumWindow = (uint64_t*) malloc(sizeof(uint64_t)*2*WINDOW_SIZE);
621 memset(sumWindow, 0, sizeof(uint64_t)*2*WINDOW_SIZE);
Marc Kupietzade33222019-01-22 22:52:44 +0100622 int true_window_size = 1;
Marc Kupietz39a4fd02019-01-23 10:18:43 +0100623 int usedPositions=0;
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100624
Marc Kupietz8c62c372019-01-31 12:21:01 +0100625#pragma omp parallel num_threads(40)
626#pragma omp single
Marc Kupietzd31254c2018-01-20 21:29:30 +0100627 for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) {
628 uint64_t value = it->intValue(),
629 key = it->intKey();
Marc Kupietzbd966192018-10-13 14:14:37 +0200630 if((w2 = W2(key)) > max_w2)
631 continue;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100632 if(last_w2 == 0xffffffffffffffff) last_w2 = w2;
633 if (w2 != last_w2) {
Marc Kupietz75af60f2019-01-22 22:34:29 +0100634 if (sum >= FREQUENCY_THRESHOLD) {
Marc Kupietz8c62c372019-01-31 12:21:01 +0100635 collocators.push_back({});
636 rocksdb::Collocator *result = &(collocators[collocators.size()-1]);
637#pragma omp task firstprivate(last_w2, sumWindow, sum, usedPositions, true_window_size) shared(w1, result) if(sum > 1000000)
638 {
639 // uint64_t *nsw = (uint64_t *)malloc(sizeof(uint64_t) * 2 *WINDOW_SIZE);
640 // memcpy(nsw, sumWindow, sizeof(uint64_t) * 2 *WINDOW_SIZE);
641 applyCAMeasures(w1, last_w2, sumWindow, sum, usedPositions, true_window_size, result);
642 // free(nsw);
Marc Kupietz75af60f2019-01-22 22:34:29 +0100643 }
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100644 }
Marc Kupietz75af60f2019-01-22 22:34:29 +0100645 memset(sumWindow, 0, 2*WINDOW_SIZE * sizeof(uint64_t));
Marc Kupietz39a4fd02019-01-23 10:18:43 +0100646 usedPositions = 1 << (-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0));
Marc Kupietz75af60f2019-01-22 22:34:29 +0100647 sumWindow[-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)] = value;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100648 last_w2 = w2;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100649 maxv = value;
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100650 sum = value;
Marc Kupietzade33222019-01-22 22:52:44 +0100651 true_window_size = 1;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100652 } else {
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100653 sum += value;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100654 if(value > maxv)
655 maxv = value;
Marc Kupietz39a4fd02019-01-23 10:18:43 +0100656 usedPositions |= 1 << (-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0));
Marc Kupietz75af60f2019-01-22 22:34:29 +0100657 sumWindow[-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)] = value;
Marc Kupietzade33222019-01-22 22:52:44 +0100658 true_window_size++;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100659 }
660 }
661
Marc Kupietz8c62c372019-01-31 12:21:01 +0100662#pragma omp taskwait
663 sort(collocators.begin(), collocators.end(), sortByLogDice);
664
Marc Kupietzd31254c2018-01-20 21:29:30 +0100665 int i=0;
666 for (Collocator c : collocators) {
667 if(i++>10) break;
Marc Kupietz8c62c372019-01-31 12:21:01 +0100668 std::cout << "w1:" << _vocab[w1].word << ", w2: *" << _vocab[c.w2].word << "*"
Marc Kupietzd31254c2018-01-20 21:29:30 +0100669 << "\t f(w1):" << _vocab[w1].freq
670 << "\t f(w2):" << _vocab[c.w2].freq
Marc Kupietz51f93792018-01-25 08:51:01 +0100671 << "\t f(w1, w2):" << c.raw
Marc Kupietzd31254c2018-01-20 21:29:30 +0100672 << "\t pmi:" << c.pmi
673 << "\t npmi:" << c.npmi
674 << "\t llr:" << c.llr
Marc Kupietz8c62c372019-01-31 12:21:01 +0100675 << "\t md:" << c.md
Marc Kupietzd31254c2018-01-20 21:29:30 +0100676 << "\t lfmd:" << c.lfmd
Marc Kupietzd31254c2018-01-20 21:29:30 +0100677 << "\t total:" << total
678 << std::endl;
679 }
Marc Kupietz8c62c372019-01-31 12:21:01 +0100680
681 return collocators;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100682 }
683
Marc Kupietz8c62c372019-01-31 12:21:01 +0100684 std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1) {
Marc Kupietzbd966192018-10-13 14:14:37 +0200685 return get_collocators(w1, UINT32_MAX);
686 }
687
Marc Kupietz3400aa52018-06-05 10:28:55 +0200688 void rocksdb::CollocatorDB::dumpSparseLlr(uint32_t w1, uint32_t min_cooccur) {
689 std::vector<Collocator> collocators;
690 std::stringstream stream;
691 uint64_t w2, last_w2 = 0xffffffffffffffff;
692 uint64_t maxv = 0, total_w1 = 0;
693 bool first = true;
694 for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) {
695 uint64_t value = it->intValue(),
696 key = it->intKey();
697 w2 = W2(key);
698 total_w1 += value;
699 if(last_w2 == 0xffffffffffffffff) last_w2 = w2;
700 if (w2 != last_w2) {
701 if(maxv >= min_cooccur) {
Marc Kupietzbbd236e2019-01-21 16:50:19 +0100702 double llr = ca_ll(_vocab[w1].freq, _vocab[last_w2].freq, maxv, total, 1);
Marc Kupietz3400aa52018-06-05 10:28:55 +0200703 if(first)
704 first = false;
705 else
706 stream << " ";
707 stream << w2 << " " << llr;
708 }
709 last_w2 = w2;
710 maxv = value;
711 } else {
712 if(value > maxv)
713 maxv = value;
714 }
715 }
716 if(first)
717 stream << "1 0.0";
718 stream << "\n";
719 std::cout << stream.str();
720 }
721
Marc Kupietz4b799e92018-01-02 11:04:56 +0100722 rocksdb::Slice rocksdb::CollocatorIterator::key() const { return base_iterator_->key(); }
723 rocksdb::Slice rocksdb::CollocatorIterator::value() const { return base_iterator_->value(); }
724 rocksdb::Status rocksdb::CollocatorIterator::status() const { return base_iterator_->status(); }
725
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100726};
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100727
Marc Kupietz4a5e08a2018-06-05 11:07:11 +0200728string rocksdb::CollocatorDB::getWord(uint32_t w1) {
729 return _vocab[w1].word;
730}
731
Marc Kupietze9627152019-02-04 12:32:12 +0100732string rocksdb::CollocatorDB::collocators2json(uint32_t w1, vector<Collocator> collocators) {
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100733 ostringstream s;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100734 int i = 0;
Marc Kupietze9627152019-02-04 12:32:12 +0100735 s << " { \"f1\": " << _vocab[w1].freq << "," <<
736 "\"w1\":\"" << string(_vocab[w1].word) << "\", " <<
737 "\"N\": " << total << ", " <<
738 "\"collocates\": [";
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100739 bool first = true;
740 for (Collocator c : collocators) {
Marc Kupietzb999ec52018-06-05 11:20:46 +0200741 if(strncmp(_vocab[c.w2].word.c_str(), "quot", 4) == 0) continue;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100742 if (i++ > 200)
743 break;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100744 if(!first)
745 s << ",\n";
746 else
747 first = false;
748 s << "{"
Marc Kupietz7d9558f2019-01-22 16:26:50 +0100749 "\"word\":\"" << (string(_vocab[c.w2].word).compare("<num>") == 0? string("###") : string(_vocab[c.w2].word)) << "\"," <<
Marc Kupietzcc6c4592019-01-23 10:11:23 +0100750 "\"f2\":" << c.f2 << "," <<
Marc Kupietz51f93792018-01-25 08:51:01 +0100751 "\"f\":" << c.raw << "," <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100752 "\"npmi\":" << c.npmi << "," <<
Marc Kupietz41880452019-01-22 15:29:06 +0100753 "\"pmi\":" << c.pmi << "," <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100754 "\"llr\":" << c.llr << "," <<
755 "\"lfmd\":" << c.lfmd << "," <<
Marc Kupietz41880452019-01-22 15:29:06 +0100756 "\"md\":" << c.md << "," <<
757 "\"dice\":" << c.dice << "," <<
758 "\"ld\":" << c.logdice << "," <<
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100759 "\"llfmd\":" << c.left_lfmd << "," <<
760 "\"rlfmd\":" << c.right_lfmd << "," <<
761 "\"lnpmi\":" << c.left_npmi << "," <<
Marc Kupietz75af60f2019-01-22 22:34:29 +0100762 "\"rnpmi\":" << c.right_npmi << "," <<
Marc Kupietz3203e4c2019-02-04 12:42:45 +0100763 "\"af\":" << c.ldaf << "," <<
Marc Kupietze9f58932019-01-24 15:12:59 +0100764 "\"win\":" << c.window << "," <<
765 "\"afwin\":" << c.af_window <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100766 "}";
767 }
Marc Kupietze9627152019-02-04 12:32:12 +0100768 s << "]}\n";
Marc Kupietz8c62c372019-01-31 12:21:01 +0100769 std::cout << s.str();
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100770 return s.str();
771}
772
Marc Kupietz6aec7682018-01-10 09:47:48 +0100773typedef rocksdb::CollocatorDB COLLOCATORS;
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100774
775extern "C" {
Marc Kupietz6aec7682018-01-10 09:47:48 +0100776 COLLOCATORS *open_collocatordb_for_write(char *dbname) {
777 return new rocksdb::CollocatorDB(dbname, false);
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100778 }
779
Marc Kupietz6aec7682018-01-10 09:47:48 +0100780 COLLOCATORS *open_collocatordb(char *dbname) {
781 return new rocksdb::CollocatorDB(dbname, true);
Marc Kupietz6bb27762018-01-09 17:53:01 +0100782 }
783
Marc Kupietz6aec7682018-01-10 09:47:48 +0100784 void inc_collocator(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) {
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100785 db->inc(w1, w2, dist);
786 }
787
788 void dump_collocators(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) {
789 db->dump(w1, w2, dist);
790 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100791
Marc Kupietz37359b12018-01-09 21:11:37 +0100792 void get_collocators(COLLOCATORS *db, uint32_t w1) {
793 db->get_collocators(w1);
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100794 }
795
Marc Kupietzca3a52e2018-06-05 14:16:23 +0200796 const char *get_word(COLLOCATORS *db, uint32_t w) {
797 return db->getWord(w).c_str();
798 }
799
Marc Kupietz37359b12018-01-09 21:11:37 +0100800 const char *get_collocators_as_json(COLLOCATORS *db, uint32_t w1) {
Marc Kupietze9627152019-02-04 12:32:12 +0100801 return strdup(db->collocators2json(w1, db->get_collocators(w1)).c_str());
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100802 }
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100803}