summary refs log tree commit diff stats
path: root/lib/form.cpp
blob: feaf7659477ba1185ed13a4d85a3f1194f27c384 (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
67
68
69
70
71
72
73
74
#include "form.h"
#include <sqlite3.h>
#include <algorithm>
#include "filter.h"
#include "database.h"
#include "query.h"
#include "util.h"

namespace verbly {

  const object form::objectType = object::form;

  const std::list<std::string> form::select = {"form_id", "form", "complexity", "proper", "length"};

  const field form::id = field::integerField(object::form, "form_id");
  const field form::text = field::stringField(object::form, "form");
  const field form::complexity = field::integerField(object::form, "complexity");
  const field form::proper = field::booleanField(object::form, "proper");
  const field form::length = field::integerField(object::form, "length");

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

  field form::words(inflection category)
  {
    return field::joinThroughWhere(object::form, "form_id", object::word, "lemmas_forms", "lemma_id", "category", static_cast<int>(category));
  }

  form::form(const database& db, sqlite3_stmt* row) : db_(&db), valid_(true)
  {
    id_ = sqlite3_column_int(row, 0);
    text_ = std::string(reinterpret_cast<const char*>(sqlite3_column_text(row, 1)));
    complexity_ = sqlite3_column_int(row, 2);
    proper_ = (sqlite3_column_int(row, 3) == 1);
    length_ = sqlite3_column_int(row, 4);
  }

  const std::vector<pronunciation>& form::getPronunciations() const
  {
    if (!valid_)
    {
      throw std::domain_error("Bad access to uninitialized form");
    }

    if (!initializedPronunciations_)
    {
      pronunciations_ = db_->pronunciations(pronunciation::forms %= *this, pronunciation::id, -1).all();
      initializedPronunciations_ = true;
    }

    return pronunciations_;
  }

  bool form::startsWithVowelSound() const
  {
    if (!valid_)
    {
      throw std::domain_error("Bad access to uninitialized form");
    }

    const std::vector<pronunciation>& pronunciations = getPronunciations();
    if (!pronunciations.empty())
    {
      return std::any_of(std::begin(pronunciations), std::end(pronunciations), [] (const pronunciation& p) {
        return p.getPhonemes().front().find_first_of("012") != std::string::npos;
      });
    } else {
      // If the word is not in CMUDICT, fall back to checking whether the first letter is a vowel.
      // Not perfect but will work in most cases.
      char ch = std::tolower(text_.front());
      return (ch == 'a') || (ch == 'e') || (ch == 'i') || (ch == 'o') || (ch == 'u');
    }
  }

};