-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPhrasesLoader.cs
More file actions
49 lines (45 loc) · 1.59 KB
/
PhrasesLoader.cs
File metadata and controls
49 lines (45 loc) · 1.59 KB
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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
namespace Autocomplete
{
public class PhrasesLoader
{
public static Phrases CreateFromFiles(string directory)
{
var verbs = LoadDictionary(directory, "verbs.txt");
var adjectives = LoadDictionary(directory, "adjectives.txt");
var nouns = LoadDictionary(directory, "nouns.txt");
return new Phrases(verbs, adjectives, nouns);
}
private static string[] LoadDictionary(string directory, string filename)
{
return File.ReadAllLines(Path.Combine(directory, filename))
.Select(a => a.ToLower())
.Distinct()
.OrderBy(a => a, StringComparer.OrdinalIgnoreCase)
.ToArray();
}
public static Phrases CreateFromResouces()
{
return new Phrases(
GetResourceContent("verbs.txt"),
GetResourceContent("adjectives.txt"),
GetResourceContent("nouns.txt"));
}
private static string[] GetResourceContent(string resouceName)
{
using (var stream = new StreamReader(Assembly.GetExecutingAssembly()
.GetManifestResourceStream(string.Join(".", "autocomplete", "dic", resouceName))))
{
var lines = new List<string>();
string line;
while ((line = stream.ReadLine()) != null)
lines.Add(line);
return lines.ToArray();
}
}
}
}