|
| 1 | +// Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | +// Licensed under the MIT license. See LICENSE file in the project root for full license information. |
| 3 | + |
| 4 | +namespace Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices |
| 5 | +{ |
| 6 | + using System; |
| 7 | + using System.Collections.Generic; |
| 8 | + using System.IO; |
| 9 | + using System.Reflection; |
| 10 | + using Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface; |
| 11 | + |
| 12 | +#pragma warning disable SA1649 // SA1649FileNameMustMatchTypeName |
| 13 | + |
| 14 | + public class FileOperations : IFileOperations |
| 15 | + { |
| 16 | + /// <summary> |
| 17 | + /// Loads an assembly. |
| 18 | + /// </summary> |
| 19 | + /// <param name="assemblyName"> The assembly name. </param> |
| 20 | + /// <param name="isReflectionOnly">Indicates whether this should be a reflection only load.</param> |
| 21 | + /// <returns> The <see cref="Assembly"/>. </returns> |
| 22 | + /// <exception cref="NotImplementedException"> This is currently not implemented. </exception> |
| 23 | + public Assembly LoadAssembly(string assemblyName, bool isReflectionOnly) |
| 24 | + { |
| 25 | + return Assembly.LoadFrom(assemblyName); |
| 26 | + } |
| 27 | + |
| 28 | + /// <summary> |
| 29 | + /// Gets the path to the .DLL of the assembly. |
| 30 | + /// </summary> |
| 31 | + /// <param name="assembly">The assembly.</param> |
| 32 | + /// <returns>Path to the .DLL of the assembly.</returns> |
| 33 | + public string GetAssemblyPath(Assembly assembly) |
| 34 | + { |
| 35 | + #if NETSTANDARD2_0 |
| 36 | + return assembly.Location; |
| 37 | + #else |
| 38 | + return null; |
| 39 | + #endif |
| 40 | + } |
| 41 | + |
| 42 | + /// <summary> |
| 43 | + /// Verifies if file exists in context. |
| 44 | + /// </summary> |
| 45 | + /// <param name="assemblyFileName"> The assembly file name. </param> |
| 46 | + /// <returns> true if file exists. </returns> |
| 47 | + /// <exception cref="NotImplementedException"> This is currently not implemented. </exception> |
| 48 | + public bool DoesFileExist(string assemblyFileName) |
| 49 | + { |
| 50 | + // For projectK these assemblies can be created on the fly which means the file might not exist on disk. |
| 51 | + // Depend on Assembly Load failures intead of this validation. |
| 52 | + return true; |
| 53 | + } |
| 54 | + |
| 55 | + /// <summary> |
| 56 | + /// Creates a Navigation session for the source file. |
| 57 | + /// This is used to get file path and line number information for its components. |
| 58 | + /// </summary> |
| 59 | + /// <param name="source"> The source file. </param> |
| 60 | + /// <returns> A Navigation session instance for the current platform. </returns> |
| 61 | + public object CreateNavigationSession(string source) |
| 62 | + { |
| 63 | + return DiaSessionOperations.CreateNavigationSession(source); |
| 64 | + } |
| 65 | + |
| 66 | + /// <summary> |
| 67 | + /// Get's the navigation data for a navigation session. |
| 68 | + /// </summary> |
| 69 | + /// <param name="navigationSession"> The navigation session. </param> |
| 70 | + /// <param name="className"> The class name. </param> |
| 71 | + /// <param name="methodName"> The method name. </param> |
| 72 | + /// <param name="minLineNumber"> The min line number. </param> |
| 73 | + /// <param name="fileName"> The file name. </param> |
| 74 | + public void GetNavigationData(object navigationSession, string className, string methodName, out int minLineNumber, out string fileName) |
| 75 | + { |
| 76 | + DiaSessionOperations.GetNavigationData(navigationSession, className, methodName, out minLineNumber, out fileName); |
| 77 | + } |
| 78 | + |
| 79 | + /// <summary> |
| 80 | + /// Dispose's the navigation session instance. |
| 81 | + /// </summary> |
| 82 | + /// <param name="navigationSession"> The navigation session. </param> |
| 83 | + public void DisposeNavigationSession(object navigationSession) |
| 84 | + { |
| 85 | + DiaSessionOperations.DisposeNavigationSession(navigationSession); |
| 86 | + } |
| 87 | + |
| 88 | + /// <summary> |
| 89 | + /// Gets the full file path of an assembly file. |
| 90 | + /// </summary> |
| 91 | + /// <param name="assemblyFileName"> The file name. </param> |
| 92 | + /// <returns> The full file path. </returns> |
| 93 | + public string GetFullFilePath(string assemblyFileName) |
| 94 | + { |
| 95 | + return assemblyFileName; |
| 96 | + } |
| 97 | + } |
| 98 | + |
| 99 | +#pragma warning restore SA1649 // SA1649FileNameMustMatchTypeName |
| 100 | +} |
0 commit comments