55 lines
1.6 KiB
C#
55 lines
1.6 KiB
C#
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using System.Reflection;
|
|
|
|
namespace TestApplication.MultipleAppDomains.NetFramework;
|
|
|
|
using TestLibrary.InstrumentationTarget;
|
|
|
|
public static class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
// Always execute the code to be instrumented.
|
|
var command = new Command();
|
|
command.Execute();
|
|
|
|
const string NoAppDomainsSwitch = "--no-app-domains";
|
|
|
|
if (args?.Length > 0)
|
|
{
|
|
if (args.Length == 1 && args[0] == NoAppDomainsSwitch)
|
|
{
|
|
// Nothing else to do, exit.
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception($"Unrecognized command-line arguments: \"{string.Join(" ", args)}\"");
|
|
}
|
|
}
|
|
|
|
#if NETFRAMEWORK
|
|
const int numberOfAppDomains = 4;
|
|
var appDomains = new AppDomain[numberOfAppDomains];
|
|
var tasks = new List<Task>(numberOfAppDomains);
|
|
var applicationCodeBase = Assembly.GetExecutingAssembly().CodeBase;
|
|
for (var i = 0; i < appDomains.Length; i++)
|
|
{
|
|
// Use a name that contains characters that can't be used in file names.
|
|
appDomains[i] = AppDomain.CreateDomain("|invalid:in:file:name|");
|
|
var targetAppDomain = appDomains[i];
|
|
tasks.Add(Task.Run(() => targetAppDomain.ExecuteAssembly(applicationCodeBase, new string[] { NoAppDomainsSwitch })));
|
|
}
|
|
|
|
Task.WaitAll(tasks.ToArray());
|
|
|
|
for (var i = 0; i < appDomains.Length; i++)
|
|
{
|
|
AppDomain.Unload(appDomains[i]);
|
|
}
|
|
#endif
|
|
}
|
|
}
|