1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603 |
-
-
- #include "config.h"
-
- #include <ctype.h>
- #include <errno.h>
- #include <stdbool.h>
- #include <stdint.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <wctype.h>
-
- #include <espeak-ng/espeak_ng.h>
- #include <espeak-ng/speak_lib.h>
- #include <espeak-ng/encoding.h>
-
- #include "compiledict.h"
- #include "dictionary.h"
- #include "readclause.h"
-
- #include "dictionary.h"
- #include "error.h"
- #include "phoneme.h"
- #include "readclause.h"
- #include "speech.h"
- #include "synthesize.h"
- #include "translate.h"
-
- static FILE *f_log = NULL;
-
- extern char word_phonemes[N_WORD_PHONEMES];
-
- static int linenum;
- static int error_count;
- static bool text_mode = false;
- static int debug_flag = 0;
- static int error_need_dictionary = 0;
-
-
-
-
-
-
-
-
- static char *hash_chains[N_HASH_DICT];
-
- static char letterGroupsDefined[N_LETTER_GROUPS];
-
- MNEM_TAB mnem_rules[] = {
- { "unpr", DOLLAR_UNPR },
- { "noprefix", DOLLAR_NOPREFIX },
- { "list", DOLLAR_LIST },
-
- { "w_alt1", 0x11 },
- { "w_alt2", 0x12 },
- { "w_alt3", 0x13 },
- { "w_alt4", 0x14 },
- { "w_alt5", 0x15 },
- { "w_alt6", 0x16 },
- { "w_alt", 0x11 },
-
- { "p_alt1", 0x21 },
- { "p_alt2", 0x22 },
- { "p_alt3", 0x23 },
- { "p_alt4", 0x24 },
- { "p_alt5", 0x25 },
- { "p_alt6", 0x26 },
- { "p_alt", 0x21 },
-
- { NULL, -1 }
- };
-
- MNEM_TAB mnem_flags[] = {
-
- { "$1", 0x41 },
- { "$2", 0x42 },
- { "$3", 0x43 },
- { "$4", 0x44 },
- { "$5", 0x45 },
- { "$6", 0x46 },
- { "$7", 0x47 },
- { "$u", 0x48 },
- { "$u1", 0x49 },
- { "$u2", 0x4a },
- { "$u3", 0x4b },
- { "$u+", 0x4c },
- { "$u1+", 0x4d },
- { "$u2+", 0x4e },
- { "$u3+", 0x4f },
-
-
- { "$pause", 8 },
- { "$strend", 9 },
- { "$strend2", 10 },
- { "$unstressend", 11 },
- { "$accent_before", 12 },
- { "$abbrev", 13 },
-
-
- { "$double", 14 },
- { "$alt", 15 },
- { "$alt1", 15 },
- { "$alt2", 16 },
- { "$alt3", 17 },
- { "$alt4", 18 },
- { "$alt5", 19 },
- { "$alt6", 20 },
- { "$alt7", 21 },
-
- { "$combine", 23 },
-
- { "$dot", 24 },
- { "$hasdot", 25 },
-
- { "$max3", 27 },
- { "$brk", 28 },
- { "$text", 29 },
-
-
- { "$verbf", 0x20 },
- { "$verbsf", 0x21 },
- { "$nounf", 0x22 },
- { "$pastf", 0x23 },
- { "$verb", 0x24 },
- { "$noun", 0x25 },
- { "$past", 0x26 },
- { "$verbextend", 0x28 },
- { "$capital", 0x29 },
- { "$allcaps", 0x2a },
- { "$accent", 0x2b },
- { "$sentence", 0x2d },
- { "$only", 0x2e },
- { "$onlys", 0x2f },
- { "$stem", 0x30 },
- { "$atend", 0x31 },
- { "$atstart", 0x32 },
- { "$native", 0x33 },
-
-
- { "$?", 100 },
-
- { "$textmode", 200 },
- { "$phonememode", 201 },
-
- { NULL, -1 }
- };
-
- #define LEN_GROUP_NAME 12
-
- typedef struct {
- char name[LEN_GROUP_NAME+1];
- unsigned int start;
- unsigned int length;
- int group3_ix;
- } RGROUP;
-
- void print_dictionary_flags(unsigned int *flags, char *buf, int buf_len)
- {
- int stress;
- int ix;
- const char *name;
- int len;
- int total = 0;
-
- buf[0] = 0;
- if ((stress = flags[0] & 0xf) != 0) {
- sprintf(buf, "%s", LookupMnemName(mnem_flags, stress + 0x40));
- total = strlen(buf);
- buf += total;
- }
-
- for (ix = 8; ix < 64; ix++) {
- if (((ix < 30) && (flags[0] & (1 << ix))) || ((ix >= 0x20) && (flags[1] & (1 << (ix-0x20))))) {
- name = LookupMnemName(mnem_flags, ix);
- len = strlen(name) + 1;
- total += len;
- if (total >= buf_len)
- continue;
- sprintf(buf, " %s", name);
- buf += len;
- }
- }
- }
-
- char *DecodeRule(const char *group_chars, int group_length, char *rule, int control)
- {
-
-
- unsigned char rb;
- unsigned char c;
- char *p;
- char *p_end;
- int ix;
- int match_type;
- bool finished = false;
- int value;
- int linenum = 0;
- int flags;
- int suffix_char;
- int condition_num = 0;
- bool at_start = false;
- const char *name;
- char buf[200];
- char buf_pre[200];
- char suffix[20];
- static char output[80];
-
- static char symbols[] = {
- ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
- '&', '%', '+', '#', 'S', 'D', 'Z', 'A', 'L', '!',
- ' ', '@', '?', 'J', 'N', 'K', 'V', '?', 'T', 'X',
- '?', 'W'
- };
-
- static char symbols_lg[] = { 'A', 'B', 'C', 'H', 'F', 'G', 'Y' };
-
- match_type = 0;
- buf_pre[0] = 0;
-
- for (ix = 0; ix < group_length; ix++)
- buf[ix] = group_chars[ix];
- buf[ix] = 0;
-
- p = &buf[strlen(buf)];
- while (!finished) {
- rb = *rule++;
-
- if (rb <= RULE_LINENUM) {
- switch (rb)
- {
- case 0:
- case RULE_PHONEMES:
- finished = true;
- break;
- case RULE_PRE_ATSTART:
- at_start = true;
-
- case RULE_PRE:
- match_type = RULE_PRE;
- *p = 0;
- p = buf_pre;
- break;
- case RULE_POST:
- match_type = RULE_POST;
- *p = 0;
- strcat(buf, " (");
- p = &buf[strlen(buf)];
- break;
- case RULE_PH_COMMON:
- break;
- case RULE_CONDITION:
-
- condition_num = *rule++;
- break;
- case RULE_LINENUM:
- value = (rule[1] & 0xff) - 1;
- linenum = (rule[0] & 0xff) - 1 + (value * 255);
- rule += 2;
- break;
- }
- continue;
- }
-
- if (rb == RULE_DOLLAR) {
- value = *rule++ & 0xff;
- if ((value != 0x01) || (control & FLAG_UNPRON_TEST)) {
-
- p[0] = '$';
- name = LookupMnemName(mnem_rules, value);
- strcpy(&p[1], name);
- p += (strlen(name)+1);
- }
- c = ' ';
- } else if (rb == RULE_ENDING) {
- static const char *flag_chars = "eipvdfq tba ";
- flags = ((rule[0] & 0x7f)<< 8) + (rule[1] & 0x7f);
- suffix_char = 'S';
- if (flags & (SUFX_P >> 8))
- suffix_char = 'P';
- sprintf(suffix, "%c%d", suffix_char, rule[2] & 0x7f);
- rule += 3;
- for (ix = 0; ix < 9; ix++) {
- if (flags & 1)
- sprintf(&suffix[strlen(suffix)], "%c", flag_chars[ix]);
- flags = (flags >> 1);
- }
- strcpy(p, suffix);
- p += strlen(suffix);
- c = ' ';
- } else if (rb == RULE_LETTERGP)
- c = symbols_lg[*rule++ - 'A'];
- else if (rb == RULE_LETTERGP2) {
- value = *rule++ - 'A';
- if (value < 0)
- value += 256;
- p[0] = 'L';
- p[1] = (value / 10) + '0';
- c = (value % 10) + '0';
-
- if (match_type == RULE_PRE) {
- p[0] = c;
- c = 'L';
- }
- p += 2;
- } else if (rb <= RULE_LAST_RULE)
- c = symbols[rb];
- else if (rb == RULE_SPACE)
- c = '_';
- else
- c = rb;
- *p++ = c;
- }
- *p = 0;
-
- p = output;
- p_end = p + sizeof(output) - 1;
-
- if (linenum > 0) {
- sprintf(p, "%5d:\t", linenum);
- p += 7;
- }
- if (condition_num > 0) {
- sprintf(p, "?%d ", condition_num);
- p = &p[strlen(p)];
- }
- if (((ix = strlen(buf_pre)) > 0) || at_start) {
- if (at_start)
- *p++ = '_';
- while ((--ix >= 0) && (p < p_end-3))
- *p++ = buf_pre[ix];
- *p++ = ')';
- *p++ = ' ';
- }
- *p = 0;
-
- buf[p_end - p] = 0;
- strcat(p, buf);
- ix = strlen(output);
- while (ix < 8)
- output[ix++] = ' ';
- output[ix] = 0;
- return output;
- }
-
- typedef enum
- {
- LINE_PARSER_WORD = 0,
- LINE_PARSER_END_OF_WORD = 1,
- LINE_PARSER_MULTIPLE_WORDS = 2,
- LINE_PARSER_END_OF_WORDS = 3,
- LINE_PARSER_PRONUNCIATION = 4,
- LINE_PARSER_END_OF_PRONUNCIATION = 5,
- } LINE_PARSER_STATES;
-
- static int compile_line(char *linebuf, char *dict_line, int n_dict_line, int *hash)
- {
-
- unsigned char c;
- char *p;
- char *word;
- char *phonetic;
- char *phonetic_end;
- unsigned int ix;
- LINE_PARSER_STATES step;
- unsigned int n_flag_codes = 0;
- int flagnum;
- int flag_offset;
- int length;
- int multiple_words = 0;
- bool multiple_numeric_hyphen = false;
- char *multiple_string = NULL;
- char *multiple_string_end = NULL;
-
- int len_word;
- int len_phonetic;
- bool text_not_phonemes = false;
- unsigned int wc;
- bool all_upper_case;
-
- char *mnemptr;
- unsigned char flag_codes[100];
- char encoded_ph[200];
- char bad_phoneme_str[4];
- int bad_phoneme;
- static char nullstring[] = { 0 };
-
- phonetic = word = nullstring;
-
- p = linebuf;
-
- step = LINE_PARSER_WORD;
-
- c = *p;
- while (c != '\n' && c != '\0') {
- c = *p;
-
- if ((c == '?') && (step == 0)) {
-
- flag_offset = 100;
-
- p++;
- if (*p == '!') {
-
- flag_offset = 132;
- p++;
- }
-
- ix = 0;
- if (IsDigit09(*p)) {
- ix += (*p-'0');
- p++;
- }
- if (IsDigit09(*p)) {
- ix = ix*10 + (*p-'0');
- p++;
- }
- flag_codes[n_flag_codes++] = ix + flag_offset;
- c = *p;
- }
-
- if ((c == '$') && isalnum(p[1])) {
-
- mnemptr = p;
- while (!isspace2(c = *p)) p++;
- *p = 0;
-
- flagnum = LookupMnem(mnem_flags, mnemptr);
- if (flagnum > 0) {
- if (flagnum == 200)
- text_mode = true;
- else if (flagnum == 201)
- text_mode = false;
- else if (flagnum == BITNUM_FLAG_TEXTMODE)
- text_not_phonemes = true;
- else
- flag_codes[n_flag_codes++] = flagnum;
- } else {
- fprintf(f_log, "%5d: Unknown keyword: %s\n", linenum, mnemptr);
- error_count++;
- }
- }
-
- if ((c == '/') && (p[1] == '/') && (multiple_words == 0))
- c = '\n';
-
- switch (step)
- {
- case LINE_PARSER_WORD:
- if (c == '(') {
- multiple_words = 1;
- word = p+1;
- step = LINE_PARSER_END_OF_WORD;
- } else if (!isspace2(c)) {
- word = p;
- step = LINE_PARSER_END_OF_WORD;
- }
- break;
- case LINE_PARSER_END_OF_WORD:
- if ((c == '-') && multiple_words) {
- if (IsDigit09(word[0]))
- multiple_numeric_hyphen = true;
- flag_codes[n_flag_codes++] = BITNUM_FLAG_HYPHENATED;
- c = ' ';
- }
- if (isspace2(c)) {
- p[0] = 0;
-
- if (multiple_words) {
- multiple_string = multiple_string_end = p+1;
- step = LINE_PARSER_MULTIPLE_WORDS;
- } else
- step = LINE_PARSER_END_OF_WORDS;
- } else if (c == ')') {
- if (multiple_words) {
- p[0] = 0;
- multiple_words = 0;
- step = LINE_PARSER_END_OF_WORDS;
- } else if (word[0] != '_') {
- fprintf(f_log, "%5d: Missing '('\n", linenum);
- error_count++;
- step = LINE_PARSER_END_OF_WORDS;
- }
- }
- break;
- case LINE_PARSER_MULTIPLE_WORDS:
- if (isspace2(c))
- multiple_words++;
- else if (c == ')') {
- p[0] = ' ';
- multiple_string_end = p+1;
- step = LINE_PARSER_END_OF_WORDS;
- }
- break;
- case LINE_PARSER_END_OF_WORDS:
- if (!isspace2(c)) {
- phonetic = p;
- step = LINE_PARSER_PRONUNCIATION;
- }
- break;
- case LINE_PARSER_PRONUNCIATION:
- if (isspace2(c)) {
- phonetic_end = p;
- p[0] = 0;
- step = LINE_PARSER_END_OF_PRONUNCIATION;
- }
- break;
- case LINE_PARSER_END_OF_PRONUNCIATION:
- if (!isspace2(c)) {
- *phonetic_end = ' ';
- step = LINE_PARSER_PRONUNCIATION;
- }
- break;
- }
- p++;
- }
-
- if (word[0] == 0)
- return 0;
-
- if (text_mode)
- text_not_phonemes = true;
-
- if (text_not_phonemes) {
- if (word[0] == '_') {
-
- strcat(phonetic, " ");
-
-
-
- TranslateWord(translator, phonetic, NULL, NULL);
- text_not_phonemes = false;
- strncpy0(encoded_ph, word_phonemes, N_WORD_BYTES-4);
-
- if ((word_phonemes[0] == 0) && (error_need_dictionary < 3)) {
-
- error_need_dictionary++;
- fprintf(f_log, "%5d: Need to compile dictionary again\n", linenum);
- }
- } else
-
- strncpy0(encoded_ph, phonetic, N_WORD_BYTES-4);
- } else {
- EncodePhonemes(phonetic, encoded_ph, &bad_phoneme);
- if (strchr(encoded_ph, phonSWITCH) != 0)
- flag_codes[n_flag_codes++] = BITNUM_FLAG_ONLY_S;
-
-
- if (bad_phoneme != 0) {
-
- bad_phoneme_str[utf8_out(bad_phoneme, bad_phoneme_str)] = 0;
- fprintf(f_log, "%5d: Bad phoneme [%s] (U+%x) in: %s %s\n", linenum, bad_phoneme_str, bad_phoneme, word, phonetic);
- error_count++;
- }
- }
-
- if (text_not_phonemes != translator->langopts.textmode)
- flag_codes[n_flag_codes++] = BITNUM_FLAG_TEXTMODE;
-
- if (sscanf(word, "U+%x", &wc) == 1) {
-
- ix = utf8_out(wc, word);
- word[ix] = 0;
- } else if (word[0] != '_') {
-
- int c2;
-
- all_upper_case = true;
- for (p = word;;) {
-
-
- ix = utf8_in(&c2, p);
- if (c2 == 0)
- break;
- if (iswupper(c2))
- utf8_out(towlower2(c2, translator), p);
- else
- all_upper_case = false;
- p += ix;
- }
- if (all_upper_case)
- flag_codes[n_flag_codes++] = BITNUM_FLAG_ALLCAPS;
- }
-
- len_word = strlen(word);
-
- if (translator->transpose_min > 0)
- len_word = TransposeAlphabet(translator, word);
-
- *hash = HashDictionary(word);
- len_phonetic = strlen(encoded_ph);
-
- dict_line[1] = len_word;
- len_word &= 0x3f;
-
- memcpy(&dict_line[2], word, len_word);
-
- if (len_phonetic == 0) {
-
- dict_line[1] |= 0x80;
- length = len_word + 2;
- } else {
- length = len_word + len_phonetic + 3;
- if (length < n_dict_line) {
- strcpy(&dict_line[(len_word)+2], encoded_ph);
- } else {
- fprintf(f_log, "%5d: Dictionary line length would overflow the data buffer: %d\n", linenum, length);
- error_count++;
-
- dict_line[1] |= 0x80;
- length = len_word + 2;
- }
- }
-
- for (ix = 0; ix < n_flag_codes; ix++)
- dict_line[ix+length] = flag_codes[ix];
- length += n_flag_codes;
-
- if ((multiple_string != NULL) && (multiple_words > 0)) {
- if (multiple_words > 10) {
- fprintf(f_log, "%5d: Two many parts in a multi-word entry: %d\n", linenum, multiple_words);
- error_count++;
- } else {
- dict_line[length++] = 80 + multiple_words;
- ix = multiple_string_end - multiple_string;
- if (multiple_numeric_hyphen)
- dict_line[length++] = ' ';
- memcpy(&dict_line[length], multiple_string, ix);
- length += ix;
- }
- }
- *((uint8_t *)dict_line) = (uint8_t)length;
-
- return length;
- }
-
- static void compile_dictlist_start(void)
- {
-
- int ix;
- char *p;
- char *p2;
-
- for (ix = 0; ix < N_HASH_DICT; ix++) {
- p = hash_chains[ix];
- while (p != NULL) {
- memcpy(&p2, p, sizeof(char *));
- free(p);
- p = p2;
- }
- hash_chains[ix] = NULL;
- }
- }
-
- static void compile_dictlist_end(FILE *f_out)
- {
-
- int hash;
- int length;
- char *p;
-
- for (hash = 0; hash < N_HASH_DICT; hash++) {
- p = hash_chains[hash];
-
- while (p != NULL) {
- length = *(uint8_t *)(p+sizeof(char *));
- fwrite(p+sizeof(char *), length, 1, f_out);
- memcpy(&p, p, sizeof(char *));
- }
- fputc(0, f_out);
- }
- }
-
- static int compile_dictlist_file(const char *path, const char *filename)
- {
- int length;
- int hash;
- char *p;
- int count = 0;
- FILE *f_in;
- char buf[200];
- char fname[sizeof(path_home)+45];
- char dict_line[256];
-
- text_mode = false;
-
-
- sprintf(fname, "%s%s.txt", path, filename);
- if ((f_in = fopen(fname, "r")) == NULL) {
- sprintf(fname, "%s%s", path, filename);
- if ((f_in = fopen(fname, "r")) == NULL)
- return -1;
- }
-
- if (f_log != NULL)
- fprintf(f_log, "Compiling: '%s'\n", fname);
-
- linenum = 0;
-
- while (fgets(buf, sizeof(buf), f_in) != NULL) {
- linenum++;
-
- length = compile_line(buf, dict_line, sizeof(dict_line), &hash);
- if (length == 0) continue;
-
- p = (char *)malloc(length+sizeof(char *));
- if (p == NULL) {
- if (f_log != NULL) {
- fprintf(f_log, "Can't allocate memory\n");
- error_count++;
- }
- break;
- }
-
- memcpy(p, &hash_chains[hash], sizeof(char *));
- hash_chains[hash] = p;
-
- memcpy(p+sizeof(char *), dict_line, length);
- count++;
- }
-
- if (f_log != NULL)
- fprintf(f_log, "\t%d entries\n", count);
- fclose(f_in);
- return 0;
- }
-
- static char rule_cond[80];
- static char rule_pre[80];
- static char rule_post[80];
- static char rule_match[80];
- static char rule_phonemes[80];
- static char group_name[LEN_GROUP_NAME+1];
- static int group3_ix;
-
- #define N_RULES 3000
-
- static int isHexDigit(int c)
- {
- if ((c >= '0') && (c <= '9'))
- return c - '0';
- if ((c >= 'a') && (c <= 'f'))
- return c - 'a' + 10;
- if ((c >= 'A') && (c <= 'F'))
- return c - 'A' + 10;
- return -1;
- }
-
- static void copy_rule_string(char *string, int *state_out)
- {
-
- static char *outbuf[5] = { rule_cond, rule_pre, rule_match, rule_post, rule_phonemes };
- static int next_state[5] = { 2, 2, 4, 4, 4 };
- char *output;
- char *p;
- int ix;
- int len;
- char c;
- int c2, c3;
- int sxflags;
- int value;
- bool literal;
- bool hexdigit_input = false;
- int state = *state_out;
- MNEM_TAB *mr;
-
- if (string[0] == 0) return;
-
- output = outbuf[state];
- if (state == 4) {
-
- len = strlen(rule_phonemes);
- if (len > 0)
- rule_phonemes[len++] = ' ';
- output = &rule_phonemes[len];
- }
- sxflags = 0x808000;
-
- for (p = string, ix = 0;;) {
- literal = false;
- c = *p++;
- if ((c == '0') && (p[0] == 'x') && (isHexDigit(p[1]) >= 0) && (isHexDigit(p[2]) >= 0)) {
- hexdigit_input = true;
- c = p[1];
- p += 2;
- }
- if (c == '\\') {
- c = *p++;
- if ((c >= '0') && (c <= '3') && (p[0] >= '0') && (p[0] <= '7') && (p[1] >= '0') && (p[1] <= '7')) {
-
- c = (c-'0')*64 + (p[0]-'0')*8 + (p[1]-'0');
- p += 2;
- }
- literal = true;
- }
- if (hexdigit_input) {
- if (((c2 = isHexDigit(c)) >= 0) && ((c3 = isHexDigit(p[0])) >= 0)) {
- c = c2 * 16 + c3;
- literal = true;
- p++;
- } else
- hexdigit_input = false;
- }
- if ((state == 1) || (state == 3)) {
-
- if (literal == false) {
- static const char lettergp_letters[9] = { LETTERGP_A, LETTERGP_B, LETTERGP_C, 0, 0, LETTERGP_F, LETTERGP_G, LETTERGP_H, LETTERGP_Y };
- switch (c)
- {
- case '_':
- c = RULE_SPACE;
- break;
-
- case 'Y':
- c = 'I';
-
- case 'A':
- case 'B':
- case 'C':
- case 'H':
- case 'F':
- case 'G':
- if (state == 1) {
-
- output[ix++] = lettergp_letters[c-'A'] + 'A';
- c = RULE_LETTERGP;
- } else {
- output[ix++] = RULE_LETTERGP;
- c = lettergp_letters[c-'A'] + 'A';
- }
- break;
- case 'D':
- c = RULE_DIGIT;
- break;
- case 'K':
- c = RULE_NOTVOWEL;
- break;
- case 'N':
- c = RULE_NO_SUFFIX;
- break;
- case 'V':
- c = RULE_IFVERB;
- break;
- case 'Z':
- c = RULE_NONALPHA;
- break;
- case '+':
- c = RULE_INC_SCORE;
- break;
- case '<':
- c = RULE_DEC_SCORE;
- break;
- case '@':
- c = RULE_SYLLABLE;
- break;
- case '&':
- c = RULE_STRESSED;
- break;
- case '%':
- c = RULE_DOUBLE;
- break;
- case '#':
- c = RULE_DEL_FWD;
- break;
- case '!':
- c = RULE_CAPITAL;
- break;
- case 'T':
- output[ix++] = RULE_DOLLAR;
- c = 0x11;
- break;
- case 'W':
- c = RULE_SPELLING;
- break;
- case 'X':
- c = RULE_NOVOWELS;
- break;
- case 'J':
- c = RULE_SKIPCHARS;
- break;
- case 'L':
-
- c = *p++ - '0';
- value = *p++ - '0';
- c = c * 10 + value;
- if ((value < 0) || (value > 9)) {
- c = 0;
- fprintf(f_log, "%5d: Expected 2 digits after 'L'\n", linenum);
- error_count++;
- } else if ((c <= 0) || (c >= N_LETTER_GROUPS) || (letterGroupsDefined[(int)c] == 0)) {
- fprintf(f_log, "%5d: Letter group L%.2d not defined\n", linenum, c);
- error_count++;
- }
- c += 'A';
- if (state == 1) {
-
- output[ix++] = c;
- c = RULE_LETTERGP2;
- } else
- output[ix++] = RULE_LETTERGP2;
- break;
- case '$':
- value = 0;
- mr = mnem_rules;
- while (mr->mnem != NULL) {
- len = strlen(mr->mnem);
- if (memcmp(p, mr->mnem, len) == 0) {
- value = mr->value;
- p += len;
- break;
- }
- mr++;
- }
-
- if (state == 1) {
-
- output[ix++] = value;
- c = RULE_DOLLAR;
- } else {
- output[ix++] = RULE_DOLLAR;
- c = value;
- }
-
- if (value == 0) {
- fprintf(f_log, "%5d: $ command not recognized\n", linenum);
- error_count++;
- }
- break;
- case 'P':
- sxflags |= SUFX_P;
-
- case 'S':
- output[ix++] = RULE_ENDING;
- value = 0;
- while (!isspace2(c = *p++) && (c != 0)) {
- switch (c)
- {
- case 'e':
- sxflags |= SUFX_E;
- break;
- case 'i':
- sxflags |= SUFX_I;
- break;
- case 'p':
- sxflags |= SUFX_P;
- break;
- case 'v':
- sxflags |= SUFX_V;
- break;
- case 'd':
- sxflags |= SUFX_D;
- break;
- case 'f':
- sxflags |= SUFX_F;
- break;
- case 'q':
- sxflags |= SUFX_Q;
- break;
- case 't':
- sxflags |= SUFX_T;
- break;
- case 'b':
- sxflags |= SUFX_B;
- break;
- case 'a':
- sxflags |= SUFX_A;
- break;
- case 'm':
- sxflags |= SUFX_M;
- break;
- default:
- if (IsDigit09(c))
- value = (value*10) + (c - '0');
- break;
- }
- }
- p--;
- output[ix++] = sxflags >> 16;
- output[ix++] = sxflags >> 8;
- c = value | 0x80;
- break;
- }
- }
- }
- output[ix++] = c;
- if (c == 0) break;
- }
-
- *state_out = next_state[state];
- }
-
- static char *compile_rule(char *input)
- {
- int ix;
- unsigned char c;
- int wc;
- char *p;
- char *prule;
- int len;
- int len_name;
- int start;
- int state = 2;
- bool finish = false;
- char buf[80];
- char output[150];
- int bad_phoneme;
- char bad_phoneme_str[4];
-
- buf[0] = 0;
- rule_cond[0] = 0;
- rule_pre[0] = 0;
- rule_post[0] = 0;
- rule_match[0] = 0;
- rule_phonemes[0] = 0;
-
- p = buf;
-
- for (ix = 0; finish == false; ix++) {
- switch (c = input[ix])
- {
- case ')':
- *p = 0;
- state = 1;
- copy_rule_string(buf, &state);
- p = buf;
- break;
- case '(':
- *p = 0;
- state = 2;
- copy_rule_string(buf, &state);
- state = 3;
- p = buf;
- if (input[ix+1] == ' ') {
- fprintf(f_log, "%5d: Syntax error. Space after (, or negative score for previous rule\n", linenum);
- error_count++;
- }
- break;
- case '\n':
- case '\r':
- case 0:
- *p = 0;
- copy_rule_string(buf, &state);
- finish = true;
- break;
- case '\t':
- case ' ':
- *p = 0;
- copy_rule_string(buf, &state);
- p = buf;
- break;
- case '?':
- if (state == 2)
- state = 0;
- else
- *p++ = c;
- break;
- default:
- *p++ = c;
- break;
- }
- }
-
- if (strcmp(rule_match, "$group") == 0)
- strcpy(rule_match, group_name);
-
- if (rule_match[0] == 0) {
- if (rule_post[0] != 0) {
- fprintf(f_log, "%5d: Syntax error\n", linenum);
- error_count++;
- }
- return NULL;
- }
-
- EncodePhonemes(rule_phonemes, buf, &bad_phoneme);
- if (bad_phoneme != 0) {
- bad_phoneme_str[utf8_out(bad_phoneme, bad_phoneme_str)] = 0;
- fprintf(f_log, "%5d: Bad phoneme [%s] (U+%x) in: %s\n", linenum, bad_phoneme_str, bad_phoneme, input);
- error_count++;
- }
- strcpy(output, buf);
- len = strlen(buf)+1;
-
- len_name = strlen(group_name);
- if ((len_name > 0) && (memcmp(rule_match, group_name, len_name) != 0)) {
- utf8_in(&wc, rule_match);
- if ((group_name[0] == '9') && IsDigit(wc)) {
-
- } else {
- fprintf(f_log, "%5d: Wrong initial letters '%s' for group '%s'\n", linenum, rule_match, group_name);
- error_count++;
- }
- }
- strcpy(&output[len], rule_match);
- len += strlen(rule_match);
-
- if (debug_flag) {
- output[len] = RULE_LINENUM;
- output[len+1] = (linenum % 255) + 1;
- output[len+2] = (linenum / 255) + 1;
- len += 3;
- }
-
- if (rule_cond[0] != 0) {
- if (rule_cond[0] == '!') {
-
- ix = atoi(&rule_cond[1]) + 32;
- } else {
-
- ix = atoi(rule_cond);
- }
-
- if ((ix > 0) && (ix < 255)) {
- output[len++] = RULE_CONDITION;
- output[len++] = ix;
- } else {
- fprintf(f_log, "%5d: bad condition number ?%d\n", linenum, ix);
- error_count++;
- }
- }
- if (rule_pre[0] != 0) {
- start = 0;
- if (rule_pre[0] == RULE_SPACE) {
-
- c = RULE_PRE_ATSTART;
- start = 1;
- } else
- c = RULE_PRE;
- output[len++] = c;
-
-
- for (ix = strlen(rule_pre)-1; ix >= start; ix--)
- output[len++] = rule_pre[ix];
- }
-
- if (rule_post[0] != 0) {
- sprintf(&output[len], "%c%s", RULE_POST, rule_post);
- len += (strlen(rule_post)+1);
- }
- output[len++] = 0;
- if ((prule = (char *)malloc(len)) != NULL)
- memcpy(prule, output, len);
- return prule;
- }
-
- static int __cdecl string_sorter(char **a, char **b)
- {
- char *pa, *pb;
- int ix;
-
- if ((ix = strcmp(pa = *a, pb = *b)) != 0)
- return ix;
- pa += (strlen(pa)+1);
- pb += (strlen(pb)+1);
- return strcmp(pa, pb);
- }
-
- static int __cdecl rgroup_sorter(RGROUP *a, RGROUP *b)
- {
-
- int ix;
- ix = strlen(b->name) - strlen(a->name);
- if (ix != 0) return ix;
- ix = strcmp(a->name, b->name);
- if (ix != 0) return ix;
- return a->start-b->start;
- }
-
- static void output_rule_group(FILE *f_out, int n_rules, char **rules, char *name)
- {
- int ix;
- int len1;
- int len2;
- int len_name;
- char *p;
- char *p2, *p3;
- const char *common;
-
- short nextchar_count[256];
- memset(nextchar_count, 0, sizeof(nextchar_count));
-
- len_name = strlen(name);
-
-
- common = "";
- qsort((void *)rules, n_rules, sizeof(char *), (int(__cdecl *)(const void *, const void *))string_sorter);
-
- if (strcmp(name, "9") == 0)
- len_name = 0;
-
- for (ix = 0; ix < n_rules; ix++) {
- p = rules[ix];
- len1 = strlen(p) + 1;
- p3 = &p[len1];
- p2 = p3 + len_name;
- len2 = strlen(p2);
-
- nextchar_count[(unsigned char)(p2[0])]++;
-
- if ((common[0] != 0) && (strcmp(p, common) == 0)) {
- fwrite(p2, len2, 1, f_out);
- fputc(0, f_out);
- } else {
- if ((ix < n_rules-1) && (strcmp(p, rules[ix+1]) == 0)) {
- common = rules[ix];
- fputc(RULE_PH_COMMON, f_out);
- }
-
- fwrite(p2, len2, 1, f_out);
- fputc(RULE_PHONEMES, f_out);
- fwrite(p, len1, 1, f_out);
- }
- }
- }
-
- static int compile_lettergroup(char *input, FILE *f_out)
- {
- char *p;
- char *p_start;
- int group;
- int ix;
- int n_items;
- int length;
- int max_length = 0;
-
- #define N_LETTERGP_ITEMS 200
- char *items[N_LETTERGP_ITEMS];
- char item_length[N_LETTERGP_ITEMS];
-
- p = input;
- if (!IsDigit09(p[0]) || !IsDigit09(p[1])) {
- fprintf(f_log, "%5d: Expected 2 digits after '.L'\n", linenum);
- error_count++;
- return 1;
- }
-
- group = atoi(&p[0]);
- if (group >= N_LETTER_GROUPS) {
- fprintf(f_log, "%5d: lettergroup out of range (01-%.2d)\n", linenum, N_LETTER_GROUPS-1);
- error_count++;
- return 1;
- }
-
- while (!isspace2(*p)) p++;
-
- fputc(RULE_GROUP_START, f_out);
- fputc(RULE_LETTERGP2, f_out);
- fputc(group + 'A', f_out);
- if (letterGroupsDefined[group] != 0) {
- fprintf(f_log, "%5d: lettergroup L%.2d is already defined\n", linenum, group);
- error_count++;
- }
- letterGroupsDefined[group] = 1;
-
- n_items = 0;
- while (n_items < N_LETTERGP_ITEMS) {
- while (isspace2(*p)) p++;
- if (*p == 0)
- break;
-
- items[n_items] = p_start = p;
- while ((*p & 0xff) > ' ') {
- if (*p == '_') *p = ' ';
- p++;
- }
- *p++ = 0;
- length = p - p_start;
- if (length > max_length)
- max_length = length;
- item_length[n_items++] = length;
- }
-
-
- while (max_length > 1) {
- for (ix = 0; ix < n_items; ix++) {
- if (item_length[ix] == max_length)
- fwrite(items[ix], 1, max_length, f_out);
- }
- max_length--;
- }
-
- fputc(RULE_GROUP_END, f_out);
-
- return 0;
- }
-
- static void free_rules(char **rules, int n_rules)
- {
- for (int i = 0; i < n_rules; ++i) {
- free(*rules);
- *rules++ = NULL;
- }
- }
-
- static espeak_ng_STATUS compile_dictrules(FILE *f_in, FILE *f_out, char *fname_temp, espeak_ng_ERROR_CONTEXT *context)
- {
- char *prule;
- unsigned char *p;
- int ix;
- int c;
- int gp;
- FILE *f_temp;
- int n_rules = 0;
- int count = 0;
- int different;
- int wc;
- int err_n_rules = 0;
- const char *prev_rgroup_name;
- unsigned int char_code;
- int compile_mode = 0;
- char *buf;
- char buf1[500];
- char *rules[N_RULES];
-
- int n_rgroups = 0;
- int n_groups3 = 0;
- RGROUP rgroup[N_RULE_GROUP2];
-
- linenum = 0;
- group_name[0] = 0;
-
- if ((f_temp = fopen(fname_temp, "wb")) == NULL)
- return create_file_error_context(context, errno, fname_temp);
-
- for (;;) {
- linenum++;
- buf = fgets(buf1, sizeof(buf1), f_in);
- if (buf != NULL) {
- if ((p = (unsigned char *)strstr(buf, "//")) != NULL)
- *p = 0;
-
- if (buf[0] == '\r') buf++;
- }
-
- if ((buf == NULL) || (buf[0] == '.')) {
-
-
- if (n_rules > 0) {
- strcpy(rgroup[n_rgroups].name, group_name);
- rgroup[n_rgroups].group3_ix = group3_ix;
- rgroup[n_rgroups].start = ftell(f_temp);
- output_rule_group(f_temp, n_rules, rules, group_name);
- rgroup[n_rgroups].length = ftell(f_temp) - rgroup[n_rgroups].start;
- n_rgroups++;
-
- count += n_rules;
- free_rules(rules, n_rules);
- }
- n_rules = 0;
- err_n_rules = 0;
-
- if (compile_mode == 2) {
-
- fwrite(&n_rules, 1, 4, f_out);
- fputc(RULE_GROUP_END, f_out);
- compile_mode = 0;
- }
-
- if (buf == NULL) break;
-
- if (memcmp(buf, ".L", 2) == 0) {
- compile_lettergroup(&buf[2], f_out);
- continue;
- }
-
- if (memcmp(buf, ".replace", 8) == 0) {
- compile_mode = 2;
- fputc(RULE_GROUP_START, f_out);
- fputc(RULE_REPLACEMENTS, f_out);
-
-
- while ((ftell(f_out) & 3) != 0)
- fputc(0, f_out);
- }
-
- if (memcmp(buf, ".group", 6) == 0) {
- compile_mode = 1;
-
- p = (unsigned char *)&buf[6];
- while ((p[0] == ' ') || (p[0] == '\t')) p++;
- ix = 0;
- while ((*p > ' ') && (ix < LEN_GROUP_NAME))
- group_name[ix++] = *p++;
- group_name[ix] = 0;
- group3_ix = 0;
-
- if (sscanf(group_name, "0x%x", &char_code) == 1) {
-
- p = (unsigned char *)group_name;
-
- if (char_code > 0x100)
- *p++ = (char_code >> 8);
- *p++ = char_code;
- *p = 0;
- } else {
- if (translator->letter_bits_offset > 0) {
- utf8_in(&wc, group_name);
- if (((ix = (wc - translator->letter_bits_offset)) >= 0) && (ix < 128))
- group3_ix = ix+1;
- }
- }
-
- if ((group3_ix == 0) && (strlen(group_name) > 2)) {
- if (utf8_in(&c, group_name) < 2) {
- fprintf(f_log, "%5d: Group name longer than 2 bytes (UTF8)", linenum);
- error_count++;
- }
-
- group_name[2] = 0;
- }
- }
-
- continue;
- }
-
- switch (compile_mode)
- {
- case 1:
- prule = compile_rule(buf);
- if (prule != NULL) {
- if (n_rules < N_RULES)
- rules[n_rules++] = prule;
- else {
- if (err_n_rules == 0) {
- fprintf(stderr, "\nExceeded limit of rules (%d) in group '%s'\n", N_RULES, group_name);
- error_count++;
- err_n_rules = 1;
- }
- }
-
- }
- break;
- case 2:
- p = (unsigned char *)buf;
-
- while (isspace2(*p)) p++;
- if ((unsigned char)(*p) > 0x20) {
- while ((unsigned char)(*p) > 0x20) {
- fputc(*p, f_out);
- p++;
- }
- fputc(0, f_out);
-
- while (isspace2(*p)) p++;
- while ((unsigned char)(*p) > 0x20) {
- fputc(*p, f_out);
- p++;
- }
- fputc(0, f_out);
- }
- break;
- }
- }
- fclose(f_temp);
-
- qsort((void *)rgroup, n_rgroups, sizeof(rgroup[0]), (int(__cdecl *)(const void *, const void *))rgroup_sorter);
-
- if ((f_temp = fopen(fname_temp, "rb")) == NULL) {
- free_rules(rules, n_rules);
- return create_file_error_context(context, errno, fname_temp);
- }
-
- prev_rgroup_name = "\n";
-
- for (gp = 0; gp < n_rgroups; gp++) {
- fseek(f_temp, rgroup[gp].start, SEEK_SET);
-
- if ((different = strcmp(rgroup[gp].name, prev_rgroup_name)) != 0) {
-
- if (gp > 0)
- fputc(RULE_GROUP_END, f_out);
- fputc(RULE_GROUP_START, f_out);
-
- if (rgroup[gp].group3_ix != 0) {
- n_groups3++;
- fputc(1, f_out);
- fputc(rgroup[gp].group3_ix, f_out);
- } else
- fprintf(f_out, "%s", prev_rgroup_name = rgroup[gp].name);
- fputc(0, f_out);
- }
-
- for (ix = rgroup[gp].length; ix > 0; ix--) {
- c = fgetc(f_temp);
- fputc(c, f_out);
- }
- }
- fputc(RULE_GROUP_END, f_out);
- fputc(0, f_out);
-
- fclose(f_temp);
- remove(fname_temp);
-
- fprintf(f_log, "\t%d rules, %d groups (%d)\n\n", count, n_rgroups, n_groups3);
- free_rules(rules, n_rules);
- return ENS_OK;
- }
-
- #pragma GCC visibility push(default)
- ESPEAK_NG_API espeak_ng_STATUS espeak_ng_CompileDictionary(const char *dsource, const char *dict_name, FILE *log, int flags, espeak_ng_ERROR_CONTEXT *context)
- {
- if (!log) log = stderr;
- if (!dict_name) dict_name = dictionary_name;
-
-
-
-
- FILE *f_in;
- FILE *f_out;
- int offset_rules = 0;
- int value;
- char fname_in[sizeof(path_home)+45];
- char fname_out[sizeof(path_home)+15];
- char fname_temp[sizeof(path_home)+15];
- char path[sizeof(path_home)+40];
-
- error_count = 0;
- error_need_dictionary = 0;
- memset(letterGroupsDefined, 0, sizeof(letterGroupsDefined));
-
- debug_flag = flags & 1;
-
- if (dsource == NULL)
- dsource = "";
-
- f_log = log;
- if (f_log == NULL)
- f_log = stderr;
-
-
- sprintf(path, "%s%s_", dsource, dict_name);
- sprintf(fname_in, "%srules.txt", path);
- if ((f_in = fopen(fname_in, "r")) == NULL) {
- sprintf(fname_in, "%srules", path);
- if ((f_in = fopen(fname_in, "r")) == NULL)
- return create_file_error_context(context, errno, fname_in);
- }
-
- sprintf(fname_out, "%s%c%s_dict", path_home, PATHSEP, dict_name);
- if ((f_out = fopen(fname_out, "wb+")) == NULL) {
- int error = errno;
- fclose(f_in);
- return create_file_error_context(context, error, fname_out);
- }
- sprintf(fname_temp, "%s%ctemp", path_home, PATHSEP);
-
- value = N_HASH_DICT;
- Write4Bytes(f_out, value);
- Write4Bytes(f_out, offset_rules);
-
- compile_dictlist_start();
-
- fprintf(f_log, "Using phonemetable: '%s'\n", phoneme_tab_list[phoneme_tab_number].name);
- compile_dictlist_file(path, "roots");
- if (translator->langopts.listx) {
- compile_dictlist_file(path, "list");
- compile_dictlist_file(path, "listx");
- } else {
- compile_dictlist_file(path, "listx");
- compile_dictlist_file(path, "list");
- }
- compile_dictlist_file(path, "emoji");
- compile_dictlist_file(path, "extra");
-
- compile_dictlist_end(f_out);
- offset_rules = ftell(f_out);
-
- fprintf(f_log, "Compiling: '%s'\n", fname_in);
-
- espeak_ng_STATUS status = compile_dictrules(f_in, f_out, fname_temp, context);
- fclose(f_in);
-
- fseek(f_out, 4, SEEK_SET);
- Write4Bytes(f_out, offset_rules);
- fclose(f_out);
- fflush(f_log);
-
- if (status != ENS_OK)
- return status;
-
- LoadDictionary(translator, dict_name, 0);
-
- return error_count > 0 ? ENS_COMPILE_ERROR : ENS_OK;
- }
- #pragma GCC visibility pop
|