summary refs log tree commit diff stats
path: root/lib/pronunciation.cpp
blob: 3aef815aab27398eedfdff2f3d4c46436199827c (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
63
64
65
66
#include "pronunciation.h"
#include <hkutil/string.h>
#include "form.h"
#include "word.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,
    hatkirby::row row) :
      valid_(true)
  {
    id_ = mpark::get<int>(row[0]);

    phonemes_ =
      hatkirby::split<std::vector<std::string>>(
        mpark::get<std::string>(row[1]),
        " ");

    syllables_ = mpark::get<int>(row[2]);
    stress_ = mpark::get<std::string>(row[3]);

    if (!mpark::holds_alternative<std::nullptr_t>(row[5]))
    {
      hasRhyme_ = true;

      prerhyme_ = mpark::get<std::string>(row[4]);
      rhyme_ = mpark::get<std::string>(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));
  }

};