aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/TextEncoding/NLangDetect/LanguageDetector.cs
blob: 044c7e7592bc2700a91088d41ee3d73995b99862 (plain)
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
using System;
using MediaBrowser.Model.Serialization;

namespace NLangDetect.Core
{
    // TODO IMM HI: change to non-static class
    // TODO IMM HI: hide other, unnecassary classes via internal?
    public static class LanguageDetector
    {
        private const double _DefaultAlpha = 0.5;

        #region Public methods

        public static void Initialize(IJsonSerializer json)
        {
            DetectorFactory.LoadProfiles(json);
        }

        public static void Release()
        {
            DetectorFactory.Clear();
        }

        public static string DetectLanguage(string plainText)
        {
            if (string.IsNullOrEmpty(plainText)) { throw new ArgumentException("Argument can't be null nor empty.", nameof(plainText)); }

            Detector detector = DetectorFactory.Create(_DefaultAlpha);

            detector.Append(plainText);

            return detector.Detect();
        }

        #endregion
    }
}