/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ using System; using Lucene.Net.Support; using LucenePackage = Lucene.Net.LucenePackage; namespace Lucene.Net.Util { /// Some useful constants. public sealed class Constants { private Constants() { } // can't construct /// The value of System.getProperty("java.version"). * public static readonly System.String JAVA_VERSION = AppSettings.Get("java.version", ""); /// True iff this is Java version 1.1. public static readonly bool JAVA_1_1 = JAVA_VERSION.StartsWith("1.1."); /// True iff this is Java version 1.2. public static readonly bool JAVA_1_2 = JAVA_VERSION.StartsWith("1.2."); /// True iff this is Java version 1.3. public static readonly bool JAVA_1_3 = JAVA_VERSION.StartsWith("1.3."); /// The value of System.getProperty("os.name"). * public static readonly System.String OS_NAME = GetEnvironmentVariable("OS","Windows_NT") ?? "Linux"; /// True iff running on Linux. public static readonly bool LINUX = OS_NAME.StartsWith("Linux"); /// True iff running on Windows. public static readonly bool WINDOWS = OS_NAME.StartsWith("Windows"); /// True iff running on SunOS. public static readonly bool SUN_OS = OS_NAME.StartsWith("SunOS"); public static readonly System.String OS_ARCH = GetEnvironmentVariable("PROCESSOR_ARCHITECTURE","x86"); public static readonly System.String OS_VERSION = GetEnvironmentVariable("OS_VERSION", "?"); public static readonly System.String JAVA_VENDOR = AppSettings.Get("java.vendor", ""); // NOTE: this logic may not be correct; if you know of a // more reliable approach please raise it on java-dev! public static bool JRE_IS_64BIT; // this method prevents inlining the final version constant in compiled // classes, // see: http://www.javaworld.com/community/node/3400 private static System.String Ident(System.String s) { return s.ToString(); } public static readonly System.String LUCENE_MAIN_VERSION = Ident("3.0.3"); public static System.String LUCENE_VERSION="8.8.8.8"; static Constants() { if (IntPtr.Size == 8) { JRE_IS_64BIT = true;// 64 bit machine } else if (IntPtr.Size == 4) { JRE_IS_64BIT = false;// 32 bit machine } try { LUCENE_VERSION = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); } catch (System.Security.SecurityException) //Ignore in medium trust. { } } #region MEDIUM-TRUST Support static string GetEnvironmentVariable(string variable, string defaultValueOnSecurityException) { try { if (variable == "OS_VERSION") return System.Environment.OSVersion.ToString(); return System.Environment.GetEnvironmentVariable(variable); } catch (System.Security.SecurityException) { return defaultValueOnSecurityException; } } #endregion } }