summaryrefslogtreecommitdiff
blob: c84c9b6839ae4ef550da1569c787d7d093ab9049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
#include <stdlib.h>
#include <string.h>
#include <stdint.h> /* defines SIZE_MAX */

#include "../core/index.h"

#include "../error/error.h"

#include "knowledge.h"

/******************************************************************************/
/** INITIALIZING STRUCTURES ***************************************************/
/******************************************************************************/

static void initialize_sequence_collection
(
   struct JH_knowledge_sequence_collection c [const restrict static 1]
)
{
   c->sequences_ref = (struct JH_knowledge_sequence_data *) NULL;
   c->sequences_ref_length = 0;
   c->sequences_ref_sorted = (JH_index *) NULL;
}

static int initialize_word
(
   struct JH_knowledge_word w [const restrict static 1]
)
{
   int error;

   w->word = (const JH_char *) NULL;
   w->word_length = 0;
   w->occurrences = 0;

   initialize_sequence_collection(&(w->swt));
   initialize_sequence_collection(&(w->tws));

   error =
      pthread_rwlock_init
      (
         &(w->lock),
         (const pthread_rwlockattr_t *) NULL
      );

   if (error != 0)
   {
      JH_ERROR
      (
         stderr,
         "Unable to initialize a knowledge's word lock: %s.",
         strerror(error)
      );

      return -1;
   }

   return 0;
}

/******************************************************************************/
/** ALLOCATING MEMORY *********************************************************/
/******************************************************************************/
static JH_char * copy_word
(
   const JH_char original [const restrict static 1],
   const JH_index original_length,
   FILE io [const restrict static 1]
)
{
   JH_char * result;

   result =
      (JH_char *)
      calloc
      (
         original_length,
         sizeof(JH_char)
      );

   if (result == (JH_char *) NULL)
   {
      JH_S_ERROR(io, "Unable to allocate memory to store new word.");

      return (JH_char *) NULL;
   }

   memcpy
   (
      (void *) result,
      (const void *) original,
      (((size_t) original_length) * sizeof(JH_char))
   );

   return result;
}

static int reallocate_words_list
(
   struct JH_knowledge k [const restrict static 1],
   FILE io [const restrict static 1]
)
{
   struct JH_knowledge_word * new_words;

   if
   (
      JH_index_cannot_allocate_more
      (
         sizeof(struct JH_knowledge_word),
         k->words_length
      )
   )
   {
      JH_S_ERROR
      (
         io,
         "Unable to store the size of the words list, as it would overflow "
         "size_t variables."
      );

      return -1;
   }

   new_words =
      (struct JH_knowledge_word *) realloc
      (
         (void *) k->words,
         (((size_t) k->words_length) * sizeof(struct JH_knowledge_word))
      );

   if (new_words == (struct JH_knowledge_word *) NULL)
   {
      JH_S_ERROR
      (
         io,
         "Unable to allocate the memory required for the new words list."
      );

      return -1;
   }

   k->words = new_words;

   return 0;
}

static int reallocate_words_sorted_list
(
   struct JH_knowledge k [const restrict static 1],
   FILE io [const restrict static 1]
)
{
   JH_index * new_words_sorted;

   /*
    * This has already been tested previously for a struct JH_knowledge_word,
    * whose size is bigger than a JH_index.
    * */
   /*
   if ((SIZE_MAX / sizeof(JH_index)) < k->words_length)
   {
      JH_S_ERROR
      (
         "Unable to store the size of the sorted words list, as it would "
         "overflow size_t variables."
      );

      return -1;
   }
   */

   new_words_sorted =
      (JH_index *) realloc
      (
         (void *) k->words_sorted,
         (((size_t) k->words_length) * sizeof(JH_index))
      );

   if (new_words_sorted == (JH_index *) NULL)
   {
      JH_S_ERROR
      (
         io,
         "Unable to allocate the memory required for the new sorted words list."
      );

      return -1;
   }

   k->words_sorted = new_words_sorted;

   return 0;
}

static void set_nth_word
(
   struct JH_knowledge k [const restrict static 1],
   const JH_index sorted_word_id,
   const JH_index word_id
)
{
   /* Safe: (> k->words_length 1) */
   if (sorted_word_id < (k->words_length - 1))
   {
      memmove
      (
         /* Safe: (=< (+ sorted_word_id 1) k->words_length) */
         (void *) (k->words_sorted + (sorted_word_id + 1)),
         (const void *) (k->words_sorted + sorted_word_id),
         (
            ((size_t) ((k->words_length - 1) - sorted_word_id))
            * sizeof(JH_index)
         )
      );
   }

   k->words_sorted[sorted_word_id] = word_id;
}

static int add_word
(
   struct JH_knowledge k [const restrict static 1],
   const JH_char word [const restrict static 1],
   const JH_index word_length,
   const JH_index word_id,
   const JH_index sorted_word_id,
   FILE io [const restrict static 1]
)
{
   JH_char * stored_word;

   if (k->words_length == JH_INDEX_MAX)
   {
      JH_S_ERROR
      (
         io,
         "Unable to add word: the variable that stores the number of known "
         "words would overflow."
      );

      return -1;
   }

   stored_word = copy_word(word, word_length, io);

   if (stored_word == (JH_char *) NULL)
   {
      return -1;
   }

   k->words_length += 1;

   if (reallocate_words_list(k, io) < 0)
   {
      k->words_length -= 1;

      return -1;
   }

   initialize_word(k->words + word_id);

   k->words[word_id].word = stored_word;
   k->words[word_id].word_length = word_length;

   if (reallocate_words_sorted_list(k, io) < 0)
   {
      k->words_length -= 1;

      return -1;
   }

   set_nth_word(k, sorted_word_id, word_id);

   return 0;
}

/******************************************************************************/
/** EXPORTED ******************************************************************/
/******************************************************************************/

int JH_knowledge_learn_word
(
   struct JH_knowledge k [const restrict static 1],
   const JH_char word [const restrict static 1],
   const size_t word_length,
   JH_index word_id [const restrict static 1],
   FILE io [const restrict static 1]
)
{
   JH_index sorted_id;

   if (word_length >= (size_t) JH_INDEX_MAX)
   {
      JH_S_ERROR(io, "Word is too long to be learned.");

      return -1;
   }

   JH_knowledge_readlock_words(k, io);

   if
   (
      JH_knowledge_find_word_id
      (
         k,
         word,
         (((size_t) word_length) * sizeof(JH_char)),
         word_id
      ) == 0
   )
   {
      JH_knowledge_readunlock_words(k, io);

      JH_DEBUG
      (
         io,
         JH_DEBUG_KNOWLEDGE_LEARN_WORD,
         "Word of size %u is already known (id: %u).",
         (JH_index) word_length,
         *word_id
      );

      return 0;
   }

   /*
    * We need to write, but we currently have reading access.
    * We can't get the writing access while someone (even us) has the reading
    * access, so we release the reading access.
    */
   JH_knowledge_readunlock_words(k, io);

   JH_knowledge_writelock_words(k, io);
   /*
    * Now we have writer access, but someone else might have modified 'k' before
    * we did, so we need to find the word's location again.
    */
   if
   (
      JH_knowledge_find_word_id
      (
         k,
         word,
         (((size_t) word_length) * sizeof(JH_char)),
         word_id
      ) == 0
   )
   {
      JH_knowledge_writeunlock_words(k, io);

      JH_DEBUG
      (
         io,
         JH_DEBUG_KNOWLEDGE_LEARN_WORD,
         "Word of size %u is already known (id: %u).",
         (JH_index) word_length,
         *word_id
      );

      return 0;
   }

   sorted_id = *word_id;
   *word_id = k->words_length;

   JH_DEBUG
   (
      io,
      JH_DEBUG_KNOWLEDGE_LEARN_WORD,
      "Learning new word of size %u (id: %u, sorted_id: %u).",
      (JH_index) word_length,
      *word_id,
      sorted_id
   );

   if (add_word(k, word, (JH_index) word_length, *word_id, sorted_id, io) < 0)
   {
      JH_knowledge_writeunlock_words(k, io);

      return -1;
   }
   else
   {
      JH_knowledge_writeunlock_words(k, io);

      return 0;
   }
}