diff --git a/VaderSharp/VaderSharp/SentimentIntensityAnalyzer.cs b/VaderSharp/VaderSharp/SentimentIntensityAnalyzer.cs index 5348976..9ab5972 100644 --- a/VaderSharp/VaderSharp/SentimentIntensityAnalyzer.cs +++ b/VaderSharp/VaderSharp/SentimentIntensityAnalyzer.cs @@ -16,32 +16,53 @@ public class SentimentIntensityAnalyzer private const double QuesIncrSmall = 0.18; private const double QuesIncrLarge = 0.96; - private static Dictionary Lexicon { get; } - private static string[] LexiconFullFile { get; } + private Dictionary Lexicon = null; + private string[] LexiconFullFile = null; - static SentimentIntensityAnalyzer() + public SentimentIntensityAnalyzer() { - Assembly assembly; + if (Lexicon == null) + { + Assembly assembly; #if NET_35 assembly = typeof(SentimentIntensityAnalyzer).Assembly; #else - assembly = typeof(SentimentIntensityAnalyzer).GetTypeInfo().Assembly; + assembly = typeof(SentimentIntensityAnalyzer).GetTypeInfo().Assembly; #endif - using (var stream = assembly.GetManifestResourceStream("VaderSharp.vader_lexicon.txt")) - using(var reader = new StreamReader(stream)) + using (var stream = assembly.GetManifestResourceStream("VaderSharp.vader_lexicon.txt")) + using (var reader = new StreamReader(stream)) + { + LexiconFullFile = reader.ReadToEnd().Split('\n'); + Lexicon = MakeLexDic(); + } + } + } + + public SentimentIntensityAnalyzer(string fileName) + { + if (Lexicon == null) { - LexiconFullFile = reader.ReadToEnd().Split('\n'); - Lexicon = MakeLexDic(); + if (!File.Exists(fileName)) + { + throw new Exception("Lexicon file not found"); + } + + using (var stream = new FileStream(fileName, FileMode.Open)) + using (var reader = new StreamReader(stream)) + { + LexiconFullFile = reader.ReadToEnd().Split('\n'); + Lexicon = MakeLexDic(); + } } } - private static Dictionary MakeLexDic() + private Dictionary MakeLexDic() { var dic = new Dictionary(); foreach (var line in LexiconFullFile) { var lineArray = line.Trim().Split('\t'); - dic.Add(lineArray[0], Double.Parse(lineArray[1])); + dic.Add(lineArray[0], Double.Parse(lineArray[1], System.Globalization.CultureInfo.InvariantCulture)); } return dic; }