File: CultureDetector.cs

package info (click to toggle)
mono 4.6.2.7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 778,148 kB
  • ctags: 914,052
  • sloc: cs: 5,779,509; xml: 2,773,713; ansic: 432,645; sh: 14,749; makefile: 12,361; perl: 2,488; python: 1,434; cpp: 849; asm: 531; sql: 95; sed: 16; php: 1
file content (127 lines) | stat: -rw-r--r-- 3,537 bytes parent folder | download
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// ****************************************************************
// This is free software licensed under the NUnit license. You
// may obtain a copy of the license as well as information regarding
// copyright ownership at http://nunit.org/?p=license&r=2.4.
// ****************************************************************

using System;
using System.Reflection;
using System.Globalization;

namespace NUnit.Core
{
	public class CultureDetector
	{
		private CultureInfo currentCulture;

		// Set whenever we fail to support a list of platforms
		private string reason = string.Empty;

		/// <summary>
		/// Default constructor uses the current culutre.
		/// </summary>
		public CultureDetector()
		{
			this.currentCulture = System.Threading.Thread.CurrentThread.CurrentCulture;
		}

		/// <summary>
		/// Contruct a CultureHelper for a particular culture for testing.
		/// </summary>
		/// <param name="culture">The culture to be used</param>
		public CultureDetector( string culture )
		{
			this.currentCulture = new CultureInfo( culture );
		}

		/// <summary>
		/// Test to determine if one of a collection of culturess
		/// is being used currently.
		/// </summary>
		/// <param name="cultures"></param>
		/// <returns></returns>
		public bool IsCultureSupported( string[] cultures )
		{
			foreach( string culture in cultures )
				if ( IsCultureSupported( culture ) )
					return true;

			return false;
		}

		/// <summary>
		/// Tests to determine if the current culture is supported
		/// based on a culture attribute.
		/// </summary>
		/// <param name="platformAttribute">The attribute to examine</param>
		/// <returns></returns>
		public bool IsCultureSupported( Attribute cultureAttribute )
		{
			//Use reflection to avoid dependency on a particular framework version
			string include = (string)Reflect.GetPropertyValue( 
				cultureAttribute, "Include", 
				BindingFlags.Public | BindingFlags.Instance );

			string exclude = (string)Reflect.GetPropertyValue(
				cultureAttribute, "Exclude", 
				BindingFlags.Public | BindingFlags.Instance );

			try
			{
				if (include != null && !IsCultureSupported(include))
				{
					reason = string.Format("Only supported under culture {0}", include);
					return false;
				}

				if (exclude != null && IsCultureSupported(exclude))
				{
					reason = string.Format("Not supported under culture {0}", exclude);
					return false;
				}
			}
			catch( ArgumentException ex )
			{
				reason = string.Format( "Invalid culture: {0}", ex.ParamName );
				return false; 
			}

			return true;
		}

		/// <summary>
		/// Test to determine if the a particular culture or comma-
		/// delimited set of cultures is in use.
		/// </summary>
		/// <param name="platform">Name of the culture or comma-separated list of culture names</param>
		/// <returns>True if the culture is in use on the system</returns>
		public bool IsCultureSupported( string culture )
		{
			culture = culture.Trim();

			if ( culture.IndexOf( ',' ) >= 0 )
			{
				if ( IsCultureSupported( culture.Split( new char[] { ',' } ) ) )
					return true;
			}
			else
			{
				if( this.currentCulture.Name == culture || this.currentCulture.TwoLetterISOLanguageName == culture)
					return true;
			}

			this.reason = "Only supported under culture " + culture;
			return false;
		}

		/// <summary>
		/// Return the last failure reason. Results are not
		/// defined if called before IsSupported( Attribute )
		/// is called.
		/// </summary>
		public string Reason
		{
			get { return reason; }
		}
	}
}