blob: 6970501bb979026605a38458d469879a2942c4f9 [file] [log] [blame]
Marc Kupietz4b799e92018-01-02 11:04:56 +01001#define EXPORT __attribute__((visibility("visible")))
2#define IMPORT
Marc Kupietz28cc53e2017-12-23 17:24:55 +01003#include <assert.h>
4#include <memory>
5#include <iostream>
Marc Kupietzc8ddf452018-01-07 21:33:12 +01006#include <algorithm>
7#include <vector>
Marc Kupietz28cc53e2017-12-23 17:24:55 +01008#include <stdint.h>
Marc Kupietzc8ddf452018-01-07 21:33:12 +01009#include <string>
10#include <sstream> // for ostringstream
11#include <math.h>
Marc Kupietzd31254c2018-01-20 21:29:30 +010012#include <rocksdb/cache.h>
Marc Kupietz28cc53e2017-12-23 17:24:55 +010013#include "rocksdb/db.h"
14#include "rocksdb/env.h"
Marc Kupietzc8ddf452018-01-07 21:33:12 +010015#include "rocksdb/table.h"
Marc Kupietz28cc53e2017-12-23 17:24:55 +010016#include <rocksdb/merge_operator.h>
Marc Kupietzc8ddf452018-01-07 21:33:12 +010017#include <rocksdb/slice_transform.h>
Marc Kupietz28cc53e2017-12-23 17:24:55 +010018#include "merge_operators.h"
19
Marc Kupietz75af60f2019-01-22 22:34:29 +010020#define WINDOW_SIZE 5
Marc Kupietz98cbcdc2019-01-21 17:11:27 +010021#define FREQUENCY_THRESHOLD 5
Marc Kupietz28cc53e2017-12-23 17:24:55 +010022#define IS_BIG_ENDIAN (*(uint16_t *)"\0\xff" < 0x100)
23#define encodeCollocation(w1, w2, dist) (((uint64_t)dist << 56) | ((uint64_t)w2 << 24) | w1)
Marc Kupietz18375e12017-12-24 10:11:18 +010024#define W1(key) (uint64_t)(key & 0xffffff)
25#define W2(key) (uint64_t)((key >> 24) & 0xffffff)
26#define DIST(key) (int8_t)((uint64_t)((key >> 56) & 0xff))
Marc Kupietzc8ddf452018-01-07 21:33:12 +010027
28typedef struct {
29 uint64_t freq;
30 char *word;
31} vocab_entry;
32
33// typedef struct Collocator {
34// uint64_t w2;
35// uint64_t sum;
36// };
37
Marc Kupietz28cc53e2017-12-23 17:24:55 +010038using namespace rocksdb;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010039using namespace std;
Marc Kupietz28cc53e2017-12-23 17:24:55 +010040
Marc Kupietz4b799e92018-01-02 11:04:56 +010041namespace rocksdb {
Marc Kupietz4a5e08a2018-06-05 11:07:11 +020042 class Collocator {
43 public:
Marc Kupietz8c62c372019-01-31 12:21:01 +010044 uint32_t w2;
Marc Kupietzcc6c4592019-01-23 10:11:23 +010045 uint64_t f2;
Marc Kupietz51f93792018-01-25 08:51:01 +010046 uint64_t raw;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010047 double pmi;
48 double npmi;
49 double llr;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010050 double lfmd;
Marc Kupietz41880452019-01-22 15:29:06 +010051 double md;
Marc Kupietz6702e042021-03-13 18:05:14 +010052 double left_raw;
53 double right_raw;
54 double left_pmi;
55 double right_pmi;
Marc Kupietz41880452019-01-22 15:29:06 +010056 double dice;
57 double logdice;
Marc Kupietz3203e4c2019-02-04 12:42:45 +010058 double ldaf;
Marc Kupietz75af60f2019-01-22 22:34:29 +010059 int window;
Marc Kupietze9f58932019-01-24 15:12:59 +010060 int af_window;
Marc Kupietzc8ddf452018-01-07 21:33:12 +010061 };
62
Marc Kupietz28cc53e2017-12-23 17:24:55 +010063 size_t num_merge_operator_calls;
64 void resetNumMergeOperatorCalls() { num_merge_operator_calls = 0; }
Marc Kupietzc8ddf452018-01-07 21:33:12 +010065
Marc Kupietz28cc53e2017-12-23 17:24:55 +010066 size_t num_partial_merge_calls;
67 void resetNumPartialMergeCalls() { num_partial_merge_calls = 0; }
Marc Kupietz28cc53e2017-12-23 17:24:55 +010068
69
Marc Kupietz4b799e92018-01-02 11:04:56 +010070 inline void EncodeFixed64(char* buf, uint64_t value) {
71 if (! IS_BIG_ENDIAN) {
72 memcpy(buf, &value, sizeof(value));
73 } else {
74 buf[0] = value & 0xff;
75 buf[1] = (value >> 8) & 0xff;
76 buf[2] = (value >> 16) & 0xff;
77 buf[3] = (value >> 24) & 0xff;
78 buf[4] = (value >> 32) & 0xff;
79 buf[5] = (value >> 40) & 0xff;
80 buf[6] = (value >> 48) & 0xff;
81 buf[7] = (value >> 56) & 0xff;
82 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +010083 }
84
Marc Kupietz4b799e92018-01-02 11:04:56 +010085 inline uint32_t DecodeFixed32(const char* ptr) {
86 if (! IS_BIG_ENDIAN) {
87 // Load the raw bytes
88 uint32_t result;
89 memcpy(&result, ptr, sizeof(result)); // gcc optimizes this to a plain load
90 return result;
91 } else {
92 return ((static_cast<uint32_t>(static_cast<unsigned char>(ptr[0])))
93 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[1])) << 8)
94 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[2])) << 16)
95 | (static_cast<uint32_t>(static_cast<unsigned char>(ptr[3])) << 24));
96 }
97 }
98
99 inline uint64_t DecodeFixed64(const char* ptr) {
100 if (! IS_BIG_ENDIAN) {
101 // Load the raw bytes
102 uint64_t result;
103 memcpy(&result, ptr, sizeof(result)); // gcc optimizes this to a plain load
104 return result;
105 } else {
106 uint64_t lo = DecodeFixed32(ptr);
107 uint64_t hi = DecodeFixed32(ptr + 4);
108 return (hi << 32) | lo;
109 }
110 }
111
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100112 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 +0100113 double
114 r1 = f1 * window_size,
115 c1 = f2,
116 e = r1 * c1 / total,
117 o = f12;
Marc Kupietzf4a649a2021-02-26 09:18:01 +0100118 if(f12 < FREQUENCY_THRESHOLD)
119 return -1.0;
120 else
121 return log2(o/e);
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100122 }
123
Marc Kupietzce0b8b02018-06-05 11:06:39 +0200124 // Bouma, Gerlof (2009): <a href="https://svn.spraakdata.gu.se/repos/gerlof/pub/www/Docs/npmi-pfd.pdf">
125 // Normalized (pointwise) mutual information in collocation extraction</a>. In Proceedings of GSCL.
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100126 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 +0100127 double
128 r1 = f1 * window_size,
129 c1 = f2,
130 e = r1 * c1 / total,
131 o = f12;
132 if(f12 < FREQUENCY_THRESHOLD)
Marc Kupietz8caf9912018-06-05 10:51:18 +0200133 return -1.0;
134 else
Marc Kupietz1335dd72019-01-22 15:35:21 +0100135 return log2(o/e) / (-log2(o/total/window_size));
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100136 }
137
138 // Thanopoulos, A., Fakotakis, N., Kokkinakis, G.: Comparative evaluation of collocation extraction metrics.
139 // In: International Conference on Language Resources and Evaluation (LREC-2002). (2002) 620–625
140 // double md = log2(pow((double)max * window_size / total, 2) / (window_size * ((double)_vocab[w1].freq/total) * ((double)_vocab[last_w2].freq/total)));
141 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 +0100142 double
143 r1 = f1 * window_size,
144 c1 = f2,
145 e = r1 * c1 / total,
146 o = f12;
147 return log2(o*o/e);
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100148 }
149
150 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 +0100151 double
152 r1 = f1 * window_size,
153 c1 = f2,
154 e = r1 * c1 / total,
155 o = f12;
Marc Kupietz8caf9912018-06-05 10:51:18 +0200156 if(f12 == 0)
157 return 0;
158 else
Marc Kupietz1335dd72019-01-22 15:35:21 +0100159 return log2(o*o*o/e);
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100160 }
161
Marc Kupietzbbd236e2019-01-21 16:50:19 +0100162 // 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.
163 // Free PDF available from http://purl.org/stefan.evert/PUB/Evert2004phd.pdf
164 static inline double ca_ll(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) {
165 double
166 r1 = (double) w1 * window_size,
167 r2 = (double) n - r1,
168 c1 = w2,
169 c2 = n - c1,
170 o11 = w12, o12 = r1 - o11,
171 o21 = c1 - w12, o22 = r2 - o21,
172 e11 = r1 * c1 / n, e12 = r1 * c2 / n,
173 e21 = r2 * c1 / n, e22 = r2 * c2 / n;
174 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)));
175 }
Marc Kupietz4b799e92018-01-02 11:04:56 +0100176
Marc Kupietz41880452019-01-22 15:29:06 +0100177
178 static inline double ca_dice(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) {
179 double
180 r1 = (double) w1 * window_size,
181 c1 = w2;
182 return 2 * w12 / (c1+r1);
183 }
184
185 // 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.
186 static inline double ca_logdice(uint64_t w1, uint64_t w2, uint64_t w12, uint64_t n, uint64_t window_size) {
187 double
Marc Kupietz41880452019-01-22 15:29:06 +0100188 r1 = (double) w1 * window_size,
189 c1 = w2;
Marc Kupietzfdc0acf2019-01-31 12:42:58 +0100190 return 14 + log2(2 * w12 / (c1+r1));
Marc Kupietz41880452019-01-22 15:29:06 +0100191 }
192
Marc Kupietz4b799e92018-01-02 11:04:56 +0100193 class CountMergeOperator : public AssociativeMergeOperator {
194 public:
195 CountMergeOperator() {
196 mergeOperator_ = MergeOperators::CreateUInt64AddOperator();
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100197 }
198
Marc Kupietz4b799e92018-01-02 11:04:56 +0100199 virtual bool Merge(const Slice& key,
200 const Slice* existing_value,
201 const Slice& value,
202 std::string* new_value,
203 Logger* logger) const override {
204 assert(new_value->empty());
205 ++num_merge_operator_calls;
206 if (existing_value == nullptr) {
207 new_value->assign(value.data(), value.size());
208 return true;
209 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100210
Marc Kupietz4b799e92018-01-02 11:04:56 +0100211 return mergeOperator_->PartialMerge(
212 key,
213 *existing_value,
214 value,
215 new_value,
216 logger);
217 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100218
Marc Kupietz4b799e92018-01-02 11:04:56 +0100219 virtual const char* Name() const override {
220 return "UInt64AddOperator";
221 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100222
Marc Kupietz4b799e92018-01-02 11:04:56 +0100223 private:
224 std::shared_ptr<MergeOperator> mergeOperator_;
225 };
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100226
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100227
Marc Kupietz4b799e92018-01-02 11:04:56 +0100228 class CollocatorIterator : public Iterator {
229 private:
230 char prefixc[sizeof(uint64_t)];
231 Iterator *base_iterator_;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100232
233
Marc Kupietz4b799e92018-01-02 11:04:56 +0100234 public:
235 CollocatorIterator(Iterator* base_iterator)
236 : base_iterator_(base_iterator)
237 {}
238
Marc Kupietz4b799e92018-01-02 11:04:56 +0100239 void setPrefix(char *prefix) {
240 memcpy(prefixc, prefix, sizeof(uint64_t));
241 }
242
243 virtual void SeekToFirst() { base_iterator_->SeekToFirst(); }
244 virtual void SeekToLast() { base_iterator_->SeekToLast(); }
245 virtual void Seek(const rocksdb::Slice& s) { base_iterator_->Seek(s); }
Marc Kupietz60d10512021-03-13 18:05:14 +0100246 virtual void SeekForPrev(const rocksdb::Slice& s) { base_iterator_->SeekForPrev(s); }
Marc Kupietz4b799e92018-01-02 11:04:56 +0100247 virtual void Prev() { base_iterator_->Prev(); }
248 virtual void Next() { base_iterator_->Next(); }
249 virtual Slice key() const;
250 virtual Slice value() const;
251 virtual Status status() const;
252 virtual bool Valid() const;
253 bool isValid();
254 uint64_t intValue();
255 uint64_t intKey();
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100256
Marc Kupietz4b799e92018-01-02 11:04:56 +0100257 };
Marc Kupietz18375e12017-12-24 10:11:18 +0100258
Marc Kupietz4b799e92018-01-02 11:04:56 +0100259 // rocksdb::CollocatorIterator::CollocatorIterator(Iterator* base_iterator) {}
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100260
Marc Kupietz4b799e92018-01-02 11:04:56 +0100261 bool rocksdb::CollocatorIterator::Valid() const {
Marc Kupietz18375e12017-12-24 10:11:18 +0100262 return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3));
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100263 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100264
Marc Kupietz4b799e92018-01-02 11:04:56 +0100265 bool rocksdb::CollocatorIterator::isValid() {
266 return base_iterator_->Valid() && key().starts_with(std::string(prefixc,3));
Marc Kupietzd31254c2018-01-20 21:29:30 +0100267 // return key().starts_with(std::string(prefixc,3));
Marc Kupietz4b799e92018-01-02 11:04:56 +0100268 }
Marc Kupietz18375e12017-12-24 10:11:18 +0100269
Marc Kupietz4b799e92018-01-02 11:04:56 +0100270 uint64_t rocksdb::CollocatorIterator::intKey() {
271 return DecodeFixed64(base_iterator_->key().data());
272 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100273
Marc Kupietz4b799e92018-01-02 11:04:56 +0100274 uint64_t rocksdb::CollocatorIterator::intValue() {
275 return DecodeFixed64(base_iterator_->value().data());
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100276 }
277
Marc Kupietz37359b12018-01-09 21:11:37 +0100278 class VocabEntry {
279 public:
280 string word;
281 uint64_t freq;
282 };
283
Marc Kupietz6aec7682018-01-10 09:47:48 +0100284 class CollocatorDB {
Marc Kupietz4b799e92018-01-02 11:04:56 +0100285 private:
286 WriteOptions merge_option_; // for merge
287 char _one[sizeof(uint64_t)];
288 Slice _one_slice;
Marc Kupietz37359b12018-01-09 21:11:37 +0100289 vector<VocabEntry> _vocab;
Marc Kupietz4ec51c12019-01-21 11:06:39 +0100290 uint64_t total = 0;
291 uint64_t sentences = 0;
Marc Kupietz8cf7e912019-01-21 17:05:23 +0100292 float avg_window_size = 8.0;
Marc Kupietz37359b12018-01-09 21:11:37 +0100293
Marc Kupietz4b799e92018-01-02 11:04:56 +0100294 protected:
295 std::shared_ptr<DB> db_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100296
Marc Kupietz4b799e92018-01-02 11:04:56 +0100297 WriteOptions put_option_;
298 ReadOptions get_option_;
299 WriteOptions delete_option_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100300
Marc Kupietz4b799e92018-01-02 11:04:56 +0100301 uint64_t default_;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100302
Marc Kupietz4b799e92018-01-02 11:04:56 +0100303 std::shared_ptr<DB> OpenDb(const char *dbname);
Marc Kupietz6bb27762018-01-09 17:53:01 +0100304 std::shared_ptr<DB> OpenDbForRead(const char *dbname);
Marc Kupietz37359b12018-01-09 21:11:37 +0100305 void read_vocab(string fname);
306
Marc Kupietz4b799e92018-01-02 11:04:56 +0100307 public:
Marc Kupietz4a5e08a2018-06-05 11:07:11 +0200308 string getWord(uint32_t w1);
Marc Kupietz6aec7682018-01-10 09:47:48 +0100309 CollocatorDB(const char *db_name, bool read_only);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100310
Marc Kupietz6aec7682018-01-10 09:47:48 +0100311 // public interface of CollocatorDB.
Marc Kupietz4b799e92018-01-02 11:04:56 +0100312 // All four functions return false
313 // if the underlying level db operation failed.
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100314
Marc Kupietz4b799e92018-01-02 11:04:56 +0100315 // mapped to a levedb Put
316 bool set(const std::string& key, uint64_t value) {
317 // just treat the internal rep of int64 as the string
318 char buf[sizeof(value)];
319 EncodeFixed64(buf, value);
320 Slice slice(buf, sizeof(value));
321 auto s = db_->Put(put_option_, key, slice);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100322
Marc Kupietz4b799e92018-01-02 11:04:56 +0100323 if (s.ok()) {
324 return true;
325 } else {
326 std::cerr << s.ToString() << std::endl;
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100327 return false;
328 }
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100329 }
Marc Kupietz4b799e92018-01-02 11:04:56 +0100330
331 DB *getDb() {
332 return db_.get();
333 }
334
335 // mapped to a rocksdb Delete
336 bool remove(const std::string& key) {
337 auto s = db_->Delete(delete_option_, key);
338
339 if (s.ok()) {
340 return true;
341 } else {
342 std::cerr << s.ToString() << std::endl;
343 return false;
344 }
345 }
346
347 // mapped to a rocksdb Get
348 bool get(const std::string& key, uint64_t* value) {
349 std::string str;
350 auto s = db_->Get(get_option_, key, &str);
351
352 if (s.IsNotFound()) {
353 // return default value if not found;
354 *value = default_;
355 return true;
356 } else if (s.ok()) {
357 // deserialization
358 if (str.size() != sizeof(uint64_t)) {
359 std::cerr << "value corruption\n";
360 return false;
361 }
362 *value = DecodeFixed64(&str[0]);
363 return true;
364 } else {
365 std::cerr << s.ToString() << std::endl;
366 return false;
367 }
368 }
369
370
371 uint64_t get(const uint32_t w1, const uint32_t w2, const int8_t dist) {
372 char encoded_key[sizeof(uint64_t)];
373 EncodeFixed64(encoded_key, encodeCollocation(w1,w2,dist));
374 uint64_t value = default_;
375 get(std::string(encoded_key, 8), &value);
376 return value;
377 }
378
379 virtual void inc(const std::string& key) {
380 db_->Merge(merge_option_, key, _one_slice);
381 }
382
383 void inc(const uint64_t key) {
384 char encoded_key[sizeof(uint64_t)];
385 EncodeFixed64(encoded_key, key);
386 db_->Merge(merge_option_, std::string(encoded_key, 8), _one_slice);
387 }
388
389 virtual void inc(const uint32_t w1, const uint32_t w2, const uint8_t dist);
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100390 void dump(uint32_t w1, uint32_t w2, int8_t dist);
Marc Kupietz37359b12018-01-09 21:11:37 +0100391 vector<Collocator> get_collocators(uint32_t w1);
Marc Kupietzbd966192018-10-13 14:14:37 +0200392 vector<Collocator> get_collocators(uint32_t w1, uint32_t max_w2);
Marc Kupietz8c62c372019-01-31 12:21:01 +0100393 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);
394
Marc Kupietz3400aa52018-06-05 10:28:55 +0200395 void dumpSparseLlr(uint32_t w1, uint32_t min_cooccur);
Marc Kupietze9627152019-02-04 12:32:12 +0100396 string collocators2json(uint32_t w1, vector<Collocator> collocators);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100397
Marc Kupietz4b799e92018-01-02 11:04:56 +0100398 // mapped to a rocksdb Merge operation
399 virtual bool add(const std::string& key, uint64_t value) {
400 char encoded[sizeof(uint64_t)];
401 EncodeFixed64(encoded, value);
402 Slice slice(encoded, sizeof(uint64_t));
403 auto s = db_->Merge(merge_option_, key, slice);
404
405 if (s.ok()) {
406 return true;
407 } else {
408 std::cerr << s.ToString() << std::endl;
409 return false;
410 }
411 }
412
413 CollocatorIterator* SeekIterator(uint64_t w1, uint64_t w2, int8_t dist);
414 };
415
Marc Kupietz6aec7682018-01-10 09:47:48 +0100416 rocksdb::CollocatorDB::CollocatorDB(const char *db_name, bool read_only = false) {
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100417 // merge_option_.sync = true;
Marc Kupietz6bb27762018-01-09 17:53:01 +0100418 if(read_only)
419 db_ = OpenDbForRead(db_name);
420 else
421 db_ = OpenDb(db_name);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100422 assert(db_);
423 uint64_t one = 1;
424 EncodeFixed64(_one, one);
425 _one_slice = Slice(_one, sizeof(uint64_t));
426 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100427
Marc Kupietz6aec7682018-01-10 09:47:48 +0100428 void rocksdb::CollocatorDB::inc(const uint32_t w1, const uint32_t w2, const uint8_t dist) {
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100429 inc(encodeCollocation(w1, w2, dist));
430 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100431
Marc Kupietz6aec7682018-01-10 09:47:48 +0100432 void rocksdb::CollocatorDB::read_vocab(string fname) {
Marc Kupietz37359b12018-01-09 21:11:37 +0100433 char strbuf[2048];
434 uint64_t freq;
435 FILE *fin = fopen(fname.c_str(), "rb");
436 if (fin == NULL) {
437 cout << "Vocabulary file " << fname <<" not found\n";
438 exit(1);
439 }
440 uint64_t i = 0;
441 while(!feof(fin)) {
Marc Kupietzd31254c2018-01-20 21:29:30 +0100442 fscanf(fin, "%s %lu", strbuf, &freq);
Marc Kupietz37359b12018-01-09 21:11:37 +0100443 _vocab.push_back({strbuf, freq});
444 total += freq;
445 i++;
446 }
447 fclose(fin);
Marc Kupietz4ec51c12019-01-21 11:06:39 +0100448
449 char size_fname[256];
450 strcpy(size_fname, fname.c_str());
451 char *pos = strstr(size_fname, ".vocab");
452 if(pos) {
453 *pos=0;
454 strcat(size_fname, ".size");
455 FILE *fp = fopen(size_fname, "r");
456 if (fp != NULL) {
457 fscanf(fp, "%lu", &sentences);
458 fscanf(fp, "%lu", &total);
459 float sl = (float)total/(float)sentences;
460 float w = WINDOW_SIZE;
461 avg_window_size = ((sl > 2*w? (sl-2*w)*2*w: 0) + (double) w * (3*w -1)) / sl;
462 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);
463 fclose(fp);
464 } else {
465 std::cout << "size file " << size_fname << " not found\n";
466 }
467 } else {
468 std::cout << "cannot determine size file " << size_fname << "\n";
469 }
Marc Kupietz37359b12018-01-09 21:11:37 +0100470 }
471
Marc Kupietz6aec7682018-01-10 09:47:48 +0100472 std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDbForRead(const char *name) {
Marc Kupietz6bb27762018-01-09 17:53:01 +0100473 DB* db;
474 Options options;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100475 options.env->SetBackgroundThreads(4);
476 options.create_if_missing = true;
477 options.merge_operator = std::make_shared<CountMergeOperator>();
478 options.max_successive_merges = 0;
479 // options.prefix_extractor.reset(NewFixedPrefixTransform(8));
480 options.IncreaseParallelism();
481 options.OptimizeLevelStyleCompaction();
482 options.prefix_extractor.reset(NewFixedPrefixTransform(3));
Marc Kupietz37359b12018-01-09 21:11:37 +0100483 ostringstream dbname, vocabname;
Marc Kupietz6bb27762018-01-09 17:53:01 +0100484 dbname << name << ".rocksdb";
485 auto s = DB::OpenForReadOnly(options, dbname.str(), &db);
486 if (!s.ok()) {
487 std::cerr << s.ToString() << std::endl;
488 assert(false);
489 }
Marc Kupietz37359b12018-01-09 21:11:37 +0100490 vocabname << name << ".vocab";
491 read_vocab(vocabname.str());
Marc Kupietz6bb27762018-01-09 17:53:01 +0100492 return std::shared_ptr<DB>(db);
493 }
494
Marc Kupietz6aec7682018-01-10 09:47:48 +0100495 std::shared_ptr<DB> rocksdb::CollocatorDB::OpenDb(const char *dbname) {
Marc Kupietz4b799e92018-01-02 11:04:56 +0100496 DB* db;
497 Options options;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100498
499
500 options.env->SetBackgroundThreads(4);
Marc Kupietz4b799e92018-01-02 11:04:56 +0100501 options.create_if_missing = true;
502 options.merge_operator = std::make_shared<CountMergeOperator>();
503 options.max_successive_merges = 0;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100504 // options.prefix_extractor.reset(NewFixedPrefixTransform(8));
505 options.IncreaseParallelism();
506 options.OptimizeLevelStyleCompaction();
507 // options.max_write_buffer_number = 48;
508 // options.max_background_jobs = 48;
509 // options.allow_concurrent_memtable_write=true;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100510 // options.memtable_factory.reset(rocksdb::NewHashLinkListRepFactory(200000));
511 // options.enable_write_thread_adaptive_yield = 1;
512 // options.allow_concurrent_memtable_write = 1;
513 // options.memtable_factory.reset(new rocksdb::SkipListFactory);
514 // options.write_buffer_size = 1 << 22;
515 // options.allow_mmap_reads = true;
516 // options.allow_mmap_writes = true;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100517 // options.max_background_compactions = 40;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100518 // BlockBasedTableOptions table_options;
519 // table_options.filter_policy.reset(NewBloomFilterPolicy(24, false));
520 // options.bloom_locality = 1;
521 // std::shared_ptr<Cache> cache = NewLRUCache(512 * 1024 * 1024);
522 // table_options.block_cache = cache;
523 // options.table_factory.reset(NewBlockBasedTableFactory(table_options));
Marc Kupietz4b799e92018-01-02 11:04:56 +0100524 Status s;
525 // DestroyDB(dbname, Options());
526 s = DB::Open(options, dbname, &db);
527 if (!s.ok()) {
528 std::cerr << s.ToString() << std::endl;
529 assert(false);
530 }
531 return std::shared_ptr<DB>(db);
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100532 }
533
Marc Kupietz6aec7682018-01-10 09:47:48 +0100534 CollocatorIterator* rocksdb::CollocatorDB::SeekIterator(uint64_t w1, uint64_t w2, int8_t dist) {
Marc Kupietz18375e12017-12-24 10:11:18 +0100535 ReadOptions options;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100536 options.prefix_same_as_start = true;
Marc Kupietz18375e12017-12-24 10:11:18 +0100537 char prefixc[sizeof(uint64_t)];
538 EncodeFixed64(prefixc, encodeCollocation(w1, w2, dist));
539 Iterator *it = db_->NewIterator(options);
540 CollocatorIterator *cit = new CollocatorIterator(it);
541 cit->Seek(std::string(prefixc,3));// it->Valid() && it->key().starts_with(std::string(prefixc,3)); it->Next()) {
542 cit->setPrefix(prefixc);
543 return cit;
544 }
545
Marc Kupietz6aec7682018-01-10 09:47:48 +0100546 void rocksdb::CollocatorDB::dump(uint32_t w1, uint32_t w2, int8_t dist) {
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100547 auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, w2, dist));
548 for (; it->isValid(); it->Next()) {
549 uint64_t value = it->intValue();
550 uint64_t key = it->intKey();
551 std::cout << "w1:" << W1(key) << ", w2:" << W2(key) << ", dist:" << (int32_t) DIST(key) << " - count:" << value << std::endl;
552 }
553 std::cout << "ready dumping\n";
554 }
555
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100556 bool sortByNpmi(const Collocator &lhs, const Collocator &rhs) { return lhs.npmi > rhs.npmi; }
557 bool sortByLfmd(const Collocator &lhs, const Collocator &rhs) { return lhs.lfmd > rhs.lfmd; }
Marc Kupietzd31254c2018-01-20 21:29:30 +0100558 bool sortByLlr(const Collocator &lhs, const Collocator &rhs) { return lhs.llr > rhs.llr; }
Marc Kupietz7e3dfde2019-01-22 16:27:33 +0100559 bool sortByLogDice(const Collocator &lhs, const Collocator &rhs) { return lhs.logdice > rhs.logdice; }
Marc Kupietz3203e4c2019-02-04 12:42:45 +0100560 bool sortByLogDiceAF(const Collocator &lhs, const Collocator &rhs) { return lhs.ldaf > rhs.ldaf; }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100561
Marc Kupietz8c62c372019-01-31 12:21:01 +0100562
563 void rocksdb::CollocatorDB::applyCAMeasures(const uint32_t w1, const uint32_t w2, uint64_t *sumWindow,
564 const uint64_t sum, const int usedPositions, int true_window_size, rocksdb::Collocator *result) {
565 uint64_t f1 = _vocab[w1].freq, f2 = _vocab[w2].freq;
566 double o = sum,
567 r1 = f1 * true_window_size,
568 c1 = f2,
569 e = r1 * c1 / total,
570 pmi = log2(o/e),
571 md = log2(o*o/e),
572 lfmd = log2(o*o*o/e),
573 llr = ca_ll(f1, f2, sum, total, true_window_size);
574 double ld = ca_logdice(f1, f2, sum, total, true_window_size);
575
576 int bestWindow = usedPositions;
577 double bestAF = ld;
578 double currentAF;
579 // if(f1<75000000)
580 //#pragma omp parallel for reduction(max:bestAF)
Marc Kupietz6d0fa542021-02-26 09:24:35 +0100581 // #pragma omp target teams distribute parallel for reduction(max:bestAF) map(tofrom:bestAF,currentAF,bestWindow,usedPositions)
Marc Kupietz8c62c372019-01-31 12:21:01 +0100582 for (int bitmask=1; bitmask < (1 << (2*WINDOW_SIZE)); bitmask++) {
583 if((bitmask & usedPositions) == 0 || (bitmask & ~usedPositions) > 0) continue;
584 uint64_t currentWindowSum=0;
Marc Kupietz6d0fa542021-02-26 09:24:35 +0100585 // #pragma omp target teams distribute parallel for reduction(+:currentWindowSum) map(tofrom:bitmask,usedPositions)
Marc Kupietz8c62c372019-01-31 12:21:01 +0100586 for (int pos=0; pos < 2*WINDOW_SIZE; pos++) {
587 if (((1<<pos) & bitmask & usedPositions) != 0)
588 currentWindowSum+=sumWindow[pos];
589 }
590 currentAF = ca_logdice(f1, f2, currentWindowSum, total, __builtin_popcount(bitmask));
591 if(currentAF > bestAF) {
592 bestAF = currentAF;
593 bestWindow = bitmask;
594 }
595 }
596
597 *result = {w2, f2, sum,
598 pmi, pmi / (-log2(o/total/true_window_size)),
599 llr, lfmd, md,
Marc Kupietz6d9221d2021-02-26 09:34:40 +0100600 ca_pmi(f1, f2, sumWindow[WINDOW_SIZE], total, 1),
601 ca_pmi(f1, f2, sumWindow[WINDOW_SIZE-1], total, 1),
602 (double)sumWindow[WINDOW_SIZE],
603 (double)sumWindow[WINDOW_SIZE-1],
Marc Kupietz8c62c372019-01-31 12:21:01 +0100604 ca_dice(f1, f2, sum, total, true_window_size),
605 ld,
606 bestAF,
607 usedPositions,
608 bestWindow
609 };
610
611 }
612
Marc Kupietz75af60f2019-01-22 22:34:29 +0100613 std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1, uint32_t max_w2) {
614 std::vector<Collocator> collocators;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100615 uint64_t w2, last_w2 = 0xffffffffffffffff;
Marc Kupietz8c62c372019-01-31 12:21:01 +0100616 uint64_t maxv = 0, sum = 0;
617 uint64_t *sumWindow = (uint64_t*) malloc(sizeof(uint64_t)*2*WINDOW_SIZE);
618 memset(sumWindow, 0, sizeof(uint64_t)*2*WINDOW_SIZE);
Marc Kupietzade33222019-01-22 22:52:44 +0100619 int true_window_size = 1;
Marc Kupietz39a4fd02019-01-23 10:18:43 +0100620 int usedPositions=0;
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100621
Marc Kupietz6d0fa542021-02-26 09:24:35 +0100622 if(w1 > _vocab.size()) {
623 std::cout << w1 << "> vocabulary size " << _vocab.size() << "\n";
624 w1 -= _vocab.size();
625 }
626 #ifdef DEBUG
627 std::cout << "Searching for collocates of " << _vocab[w1].word << "\n";
628 #endif
629 // #pragma omp parallel num_threads(40)
630 // #pragma omp single
Marc Kupietzd31254c2018-01-20 21:29:30 +0100631 for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) {
632 uint64_t value = it->intValue(),
633 key = it->intKey();
Marc Kupietzbd966192018-10-13 14:14:37 +0200634 if((w2 = W2(key)) > max_w2)
635 continue;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100636 if(last_w2 == 0xffffffffffffffff) last_w2 = w2;
637 if (w2 != last_w2) {
Marc Kupietz75af60f2019-01-22 22:34:29 +0100638 if (sum >= FREQUENCY_THRESHOLD) {
Marc Kupietz8c62c372019-01-31 12:21:01 +0100639 collocators.push_back({});
640 rocksdb::Collocator *result = &(collocators[collocators.size()-1]);
Marc Kupietz6d0fa542021-02-26 09:24:35 +0100641 // #pragma omp task firstprivate(last_w2, sumWindow, sum, usedPositions, true_window_size) shared(w1, result) if(sum > 1000000)
Marc Kupietz8c62c372019-01-31 12:21:01 +0100642 {
643 // uint64_t *nsw = (uint64_t *)malloc(sizeof(uint64_t) * 2 *WINDOW_SIZE);
644 // memcpy(nsw, sumWindow, sizeof(uint64_t) * 2 *WINDOW_SIZE);
645 applyCAMeasures(w1, last_w2, sumWindow, sum, usedPositions, true_window_size, result);
646 // free(nsw);
Marc Kupietz75af60f2019-01-22 22:34:29 +0100647 }
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100648 }
Marc Kupietz75af60f2019-01-22 22:34:29 +0100649 memset(sumWindow, 0, 2*WINDOW_SIZE * sizeof(uint64_t));
Marc Kupietz39a4fd02019-01-23 10:18:43 +0100650 usedPositions = 1 << (-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0));
Marc Kupietz75af60f2019-01-22 22:34:29 +0100651 sumWindow[-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)] = value;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100652 last_w2 = w2;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100653 maxv = value;
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100654 sum = value;
Marc Kupietzade33222019-01-22 22:52:44 +0100655 true_window_size = 1;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100656 } else {
Marc Kupietz98cbcdc2019-01-21 17:11:27 +0100657 sum += value;
Marc Kupietz8e0ebea2018-01-24 09:53:26 +0100658 if(value > maxv)
659 maxv = value;
Marc Kupietz39a4fd02019-01-23 10:18:43 +0100660 usedPositions |= 1 << (-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0));
Marc Kupietz75af60f2019-01-22 22:34:29 +0100661 sumWindow[-DIST(key)+WINDOW_SIZE-(DIST(key)<0?1:0)] = value;
Marc Kupietzade33222019-01-22 22:52:44 +0100662 true_window_size++;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100663 }
664 }
665
Marc Kupietz6d0fa542021-02-26 09:24:35 +0100666 // #pragma omp taskwait
667 sort(collocators.begin(), collocators.end(), sortByLogDiceAF);
Marc Kupietz8c62c372019-01-31 12:21:01 +0100668
Marc Kupietz30e4d5f2021-02-26 09:27:49 +0100669 #ifdef DEBUG
Marc Kupietzd31254c2018-01-20 21:29:30 +0100670 int i=0;
671 for (Collocator c : collocators) {
672 if(i++>10) break;
Marc Kupietz8c62c372019-01-31 12:21:01 +0100673 std::cout << "w1:" << _vocab[w1].word << ", w2: *" << _vocab[c.w2].word << "*"
Marc Kupietzd31254c2018-01-20 21:29:30 +0100674 << "\t f(w1):" << _vocab[w1].freq
675 << "\t f(w2):" << _vocab[c.w2].freq
Marc Kupietz51f93792018-01-25 08:51:01 +0100676 << "\t f(w1, w2):" << c.raw
Marc Kupietzd31254c2018-01-20 21:29:30 +0100677 << "\t pmi:" << c.pmi
678 << "\t npmi:" << c.npmi
679 << "\t llr:" << c.llr
Marc Kupietz8c62c372019-01-31 12:21:01 +0100680 << "\t md:" << c.md
Marc Kupietzd31254c2018-01-20 21:29:30 +0100681 << "\t lfmd:" << c.lfmd
Marc Kupietzd31254c2018-01-20 21:29:30 +0100682 << "\t total:" << total
683 << std::endl;
684 }
Marc Kupietz30e4d5f2021-02-26 09:27:49 +0100685 #endif
Marc Kupietz8c62c372019-01-31 12:21:01 +0100686
687 return collocators;
Marc Kupietzd31254c2018-01-20 21:29:30 +0100688 }
689
Marc Kupietz8c62c372019-01-31 12:21:01 +0100690 std::vector<Collocator> rocksdb::CollocatorDB::get_collocators(uint32_t w1) {
Marc Kupietzbd966192018-10-13 14:14:37 +0200691 return get_collocators(w1, UINT32_MAX);
692 }
693
Marc Kupietz3400aa52018-06-05 10:28:55 +0200694 void rocksdb::CollocatorDB::dumpSparseLlr(uint32_t w1, uint32_t min_cooccur) {
695 std::vector<Collocator> collocators;
696 std::stringstream stream;
697 uint64_t w2, last_w2 = 0xffffffffffffffff;
698 uint64_t maxv = 0, total_w1 = 0;
699 bool first = true;
700 for ( auto it = std::unique_ptr<CollocatorIterator>(SeekIterator(w1, 0, 0)); it->isValid(); it->Next()) {
701 uint64_t value = it->intValue(),
702 key = it->intKey();
703 w2 = W2(key);
704 total_w1 += value;
705 if(last_w2 == 0xffffffffffffffff) last_w2 = w2;
706 if (w2 != last_w2) {
707 if(maxv >= min_cooccur) {
Marc Kupietzbbd236e2019-01-21 16:50:19 +0100708 double llr = ca_ll(_vocab[w1].freq, _vocab[last_w2].freq, maxv, total, 1);
Marc Kupietz3400aa52018-06-05 10:28:55 +0200709 if(first)
710 first = false;
711 else
712 stream << " ";
713 stream << w2 << " " << llr;
714 }
715 last_w2 = w2;
716 maxv = value;
717 } else {
718 if(value > maxv)
719 maxv = value;
720 }
721 }
722 if(first)
723 stream << "1 0.0";
724 stream << "\n";
725 std::cout << stream.str();
726 }
727
Marc Kupietz4b799e92018-01-02 11:04:56 +0100728 rocksdb::Slice rocksdb::CollocatorIterator::key() const { return base_iterator_->key(); }
729 rocksdb::Slice rocksdb::CollocatorIterator::value() const { return base_iterator_->value(); }
730 rocksdb::Status rocksdb::CollocatorIterator::status() const { return base_iterator_->status(); }
731
Marc Kupietz28cc53e2017-12-23 17:24:55 +0100732};
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100733
Marc Kupietz4a5e08a2018-06-05 11:07:11 +0200734string rocksdb::CollocatorDB::getWord(uint32_t w1) {
735 return _vocab[w1].word;
736}
737
Marc Kupietze9627152019-02-04 12:32:12 +0100738string rocksdb::CollocatorDB::collocators2json(uint32_t w1, vector<Collocator> collocators) {
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100739 ostringstream s;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100740 int i = 0;
Marc Kupietze9627152019-02-04 12:32:12 +0100741 s << " { \"f1\": " << _vocab[w1].freq << "," <<
742 "\"w1\":\"" << string(_vocab[w1].word) << "\", " <<
743 "\"N\": " << total << ", " <<
744 "\"collocates\": [";
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100745 bool first = true;
746 for (Collocator c : collocators) {
Marc Kupietzb999ec52018-06-05 11:20:46 +0200747 if(strncmp(_vocab[c.w2].word.c_str(), "quot", 4) == 0) continue;
Marc Kupietz0dd86ef2018-01-11 22:23:17 +0100748 if (i++ > 200)
749 break;
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100750 if(!first)
751 s << ",\n";
752 else
753 first = false;
754 s << "{"
Marc Kupietz7d9558f2019-01-22 16:26:50 +0100755 "\"word\":\"" << (string(_vocab[c.w2].word).compare("<num>") == 0? string("###") : string(_vocab[c.w2].word)) << "\"," <<
Marc Kupietzcc6c4592019-01-23 10:11:23 +0100756 "\"f2\":" << c.f2 << "," <<
Marc Kupietz51f93792018-01-25 08:51:01 +0100757 "\"f\":" << c.raw << "," <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100758 "\"npmi\":" << c.npmi << "," <<
Marc Kupietz41880452019-01-22 15:29:06 +0100759 "\"pmi\":" << c.pmi << "," <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100760 "\"llr\":" << c.llr << "," <<
761 "\"lfmd\":" << c.lfmd << "," <<
Marc Kupietz41880452019-01-22 15:29:06 +0100762 "\"md\":" << c.md << "," <<
763 "\"dice\":" << c.dice << "," <<
764 "\"ld\":" << c.logdice << "," <<
Marc Kupietz6702e042021-03-13 18:05:14 +0100765 "\"lncount\":" << c.left_raw << "," <<
766 "\"rncount\":" << c.right_raw << "," <<
767 "\"lnpmi\":" << c.left_pmi << "," <<
768 "\"rnpmi\":" << c.right_pmi << "," <<
Marc Kupietz3203e4c2019-02-04 12:42:45 +0100769 "\"af\":" << c.ldaf << "," <<
Marc Kupietze9f58932019-01-24 15:12:59 +0100770 "\"win\":" << c.window << "," <<
771 "\"afwin\":" << c.af_window <<
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100772 "}";
773 }
Marc Kupietze9627152019-02-04 12:32:12 +0100774 s << "]}\n";
Marc Kupietz8c62c372019-01-31 12:21:01 +0100775 std::cout << s.str();
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100776 return s.str();
777}
778
Marc Kupietz6aec7682018-01-10 09:47:48 +0100779typedef rocksdb::CollocatorDB COLLOCATORS;
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100780
781extern "C" {
Marc Kupietz6aec7682018-01-10 09:47:48 +0100782 COLLOCATORS *open_collocatordb_for_write(char *dbname) {
783 return new rocksdb::CollocatorDB(dbname, false);
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100784 }
785
Marc Kupietz6aec7682018-01-10 09:47:48 +0100786 COLLOCATORS *open_collocatordb(char *dbname) {
787 return new rocksdb::CollocatorDB(dbname, true);
Marc Kupietz6bb27762018-01-09 17:53:01 +0100788 }
789
Marc Kupietz6aec7682018-01-10 09:47:48 +0100790 void inc_collocator(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) {
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100791 db->inc(w1, w2, dist);
792 }
793
794 void dump_collocators(COLLOCATORS *db, uint32_t w1, uint32_t w2, int8_t dist) {
795 db->dump(w1, w2, dist);
796 }
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100797
Marc Kupietz37359b12018-01-09 21:11:37 +0100798 void get_collocators(COLLOCATORS *db, uint32_t w1) {
799 db->get_collocators(w1);
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100800 }
801
Marc Kupietzca3a52e2018-06-05 14:16:23 +0200802 const char *get_word(COLLOCATORS *db, uint32_t w) {
803 return db->getWord(w).c_str();
804 }
805
Marc Kupietz37359b12018-01-09 21:11:37 +0100806 const char *get_collocators_as_json(COLLOCATORS *db, uint32_t w1) {
Marc Kupietze9627152019-02-04 12:32:12 +0100807 return strdup(db->collocators2json(w1, db->get_collocators(w1)).c_str());
Marc Kupietzc8ddf452018-01-07 21:33:12 +0100808 }
Marc Kupietz06c9a9f2018-01-02 16:56:43 +0100809}