summary refs log tree commit diff stats
path: root/lib/pronunciation.cpp
blob: fa471eccb723090e27e6d9ef19c9f04b075fcda3 (plain) (blame)
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
#include "pronunciation.h"
#include <sqlite3.h>
#include "form.h"
#include "word.h"
#include "util.h"

namespace verbly {

  const object pronunciation::objectType = object::pronunciation;

  const std::list<std::string> pronunciation::select = {"pronunciation_id", "phonemes", "syllables", "stress", "prerhyme", "rhyme"};

  const field pronunciation::id = field::integerField(object::pronunciation, "pronunciation_id");
  const field pronunciation::numOfSyllables = field::integerField(object::pronunciation, "syllables");
  const field pronunciation::stress = field::stringField(object::pronunciation, "stress");

  const field pronunciation::forms = field::joinThrough(object::pronunciation, "pronunciation_id", object::form, "forms_pronunciations", "form_id");

  const field pronunciation::prerhyme = field::stringField(object::pronunciation, "prerhyme", true);
  const field pronunciation::rhyme = field::stringField(object::pronunciation, "rhyme", true);

  const field pronunciation::rhymes_field::rhymeJoin = field::joinField(object::pronunciation, "rhyme", object::pronunciation);
  const pronunciation::rhymes_field pronunciation::rhymes = {};

  pronunciation::pronunciation(const database& db, sqlite3_stmt* row) : db_(&db), valid_(true)
  {
    id_ = sqlite3_column_int(row, 0);

    std::string phonemesStr(reinterpret_cast<const char*>(sqlite3_column_text(row, 1)));
    phonemes_ = split<std::vector<std::string>>(phonemesStr, " ");

    syllables_ = sqlite3_column_int(row, 2);
    stress_ = std::string(reinterpret_cast<const char*>(sqlite3_column_text(row, 3)));

    if (sqlite3_column_type(row, 5) != SQLITE_NULL)
    {
      hasRhyme_ = true;

      prerhyme_ = std::string(reinterpret_cast<const char*>(sqlite3_column_text(row, 4)));
      rhyme_ = std::string(reinterpret_cast<const char*>(sqlite3_column_text(row, 5)));
    }
  }

  filter pronunciation::rhymes_field::operator%=(filter joinCondition) const
  {
    return (rhymeJoin %= (
      joinCondition
      && filter(
        verbly::pronunciation::prerhyme,
        filter::comparison::field_does_not_equal,
        verbly::pronunciation::prerhyme)));
  }

  pronunciation::rhymes_field::operator filter() const
  {
    return (rhymeJoin %= filter(
      verbly::pronunciation::prerhyme,
      filter::comparison::field_does_not_equal,
      verbly::pronunciation::prerhyme));
  }

};