Created
July 29, 2014 20:46
-
-
Save jakesays-old/6d4413fdfdf67fc3e55b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.IO; | |
using System.Net; | |
using System.Reflection; | |
using JetBrains.Annotations; | |
namespace Foo.Utility.Process | |
{ | |
public static class ProcessHelpers | |
{ | |
private static string _applicationVersion; | |
public static string ApplicationVersion | |
{ | |
get | |
{ | |
if (_applicationVersion == null) | |
{ | |
Assembly hostAssembly; | |
if (IsTestHostProcess) | |
{ | |
hostAssembly = Assembly.GetExecutingAssembly(); | |
} | |
else | |
{ | |
hostAssembly = Assembly.GetEntryAssembly(); | |
} | |
if (hostAssembly == null) | |
{ | |
_applicationVersion = "0.0.0.0"; | |
} | |
else | |
{ | |
_applicationVersion = hostAssembly.GetName().Version.ToString(); | |
} | |
} | |
return _applicationVersion; | |
} | |
} | |
private static string _machineName; | |
public static string MachineName | |
{ | |
get | |
{ | |
InitializeProcessInformation(); | |
return _machineName; | |
} | |
} | |
//this will never change during the course of | |
//an exe's lifetime. | |
private static string _processPath; | |
private static string _processName; | |
[NotNull] | |
public static string HostProcessPath | |
{ | |
get | |
{ | |
InitializeProcessInformation(); | |
return _processPath; | |
} | |
} | |
[NotNull] | |
public static string HostProcessName | |
{ | |
get | |
{ | |
InitializeProcessInformation(); | |
return _processName; | |
} | |
} | |
//if you wish to mock this, use a private accessor | |
//and set its value. | |
private static bool? _isTestHost; | |
/// <summary> | |
/// Returns true if the caller is running under an mstest host process | |
/// </summary> | |
public static bool IsTestHostProcess | |
{ | |
get | |
{ | |
if (!_isTestHost.HasValue) | |
{ | |
var processFileName = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName.ToLower(); | |
_isTestHost = processFileName.Contains("qtagent") || processFileName.Contains("vstesthost") || | |
processFileName.Contains("jetbrains.resharper.taskrunner"); | |
} | |
//?? false is redundant, but it shuts up resharper | |
return _isTestHost ?? false; | |
} | |
} | |
private static void InitializeProcessInformation() | |
{ | |
if (string.IsNullOrEmpty(_processPath)) | |
{ | |
_machineName = Dns.GetHostName().ToLowerInvariant(); | |
if (IsTestHostProcess) | |
{ | |
_processPath = Directory.GetCurrentDirectory(); | |
_processName = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName; | |
} | |
else | |
{ | |
//first try the executable assembly location. it appears this isn't always available. | |
//seems to be the case when running under the vs test host process. | |
var assy = Assembly.GetEntryAssembly(); | |
if (assy != null && !string.IsNullOrEmpty(assy.Location)) | |
{ | |
_processName = Path.GetFileName(assy.Location); | |
if (assy.Location.ToLower().EndsWith(".exe")) | |
{ | |
_processPath = Path.GetDirectoryName(assy.Location); | |
} | |
else | |
{ | |
_processPath = assy.Location; | |
} | |
} | |
else | |
{ | |
//fall back to the process location | |
var fullPath = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName; | |
_processName = Path.GetFileName(fullPath); | |
_processPath = Path.GetDirectoryName(fullPath); | |
} | |
} | |
var nameLowered = _processName.ToLowerInvariant(); | |
var vsHostPos = nameLowered.IndexOf(".vshost"); | |
if (vsHostPos != -1) | |
{ | |
_processName = _processName.Substring(0, vsHostPos); | |
if (nameLowered.EndsWith(".exe")) | |
{ | |
_processName += ".exe"; | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment