-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathARepository.cs
102 lines (87 loc) · 3.32 KB
/
ARepository.cs
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
using System.Collections.Generic;
using Oggy.Repository.Entities;
namespace Oggy.Repository
{
public abstract class ARepository
{
#region Variables
public Language srcLanguage;
public Language dstLanguage;
#endregion
public ARepository() { }
#region General
/// <summary>
/// This function should be invoked within constructor
/// </summary>
public void SetUp()
{
SetSourceLanguage("EN");
SetDstLanguage("SR");
}
public void SwapSourceAndDestination()
{
Language temp = srcLanguage;
SetSourceLanguage(dstLanguage.Code);
SetDstLanguage(temp.Code);
}
public virtual void SetSourceLanguage(string code)
{
srcLanguage = RetreiveLanguage(code);
}
public void SetDstLanguage(string code)
{
dstLanguage = RetreiveLanguage(code);
}
#endregion
#region CRUD for Languages + LanguageList Cache
public abstract IEnumerable<Language> ListLanguages(bool enabledOnly=false);
public abstract bool CreateLanguage(Language language);
public abstract Language RetreiveLanguage(string code);
public abstract void UpdateLanguage(Language code);
public abstract bool DeleteLanguage(string code);
private List<Language> listLaguagesCached;
public IEnumerable<Language> ListLaguagesCached
{
get
{
return listLaguagesCached ??
(listLaguagesCached=new List<Language>(ListLanguages(true)));
}
}
#endregion
#region Word
public abstract IEnumerable<Word> ListWords();
public abstract void CreateWord(Word word);
public abstract void UpdateWord(Word word);
public abstract void DeleteWord(string word);
#endregion
#region TransliterationRules
public abstract List<TransliterationRule> ListRules(bool enabledOnly = true);
public virtual int CountRules(bool enabledOnly = true)
{
return ListRules().Count;
}
public abstract void CreateRule(TransliterationRule rule);
public abstract void UpdateRule(TransliterationRule rule, string source);
public abstract void DeleteRule(string source);
#endregion
#region TransliterationExamples
public abstract List<TransliterationExample> ListExamples(bool enabledOnly = true);
public abstract void CreateExample(TransliterationExample example);
public abstract void UpdateExample(TransliterationExample example, string word);
public abstract void DeleteExample(string word);
#endregion
#region Jokers
public abstract Dictionary<char, string> GetJokers();
public abstract void AddJoker(char joker, string substitution);
public abstract void UpdateJoker(char joker, string substitution);
public abstract void DeleteJoker(char joker);
#endregion
#region TextSamples
public abstract List<TextSample> ListTextSamples(string langCode);
#endregion
#region Letters Distribution
public abstract Dictionary<char, double> LoadLetterDistribution(string langCode);
#endregion
}
}