コード例 #1
0
        public static void Extract(string archive, string target)
        {
            const bool overwrite = true;

            void WriteSymbolicLink(string symlink, string pointTo)
            {
                if (Path.IsPathRooted(pointTo))
                {
                    throw new UnauthorizedAccessException();
                }
                pointTo = Path.Combine(Path.GetDirectoryName(symlink), pointTo);
                pointTo = Path.GetFullPath(pointTo);

                if (!PathEx.IsNested(target, symlink))
                {
                    throw new UnauthorizedAccessException();
                }

                if (overwrite)
                {
                    if (File.Exists(symlink))
                    {
                        File.Delete(symlink);
                    }
                    if (Directory.Exists(symlink))
                    {
                        Directory.Delete(symlink);
                    }
                }

                if (File.Exists(pointTo))
                {
                    Symlink.CreateForFile(filePath: pointTo, symlink: symlink);
                }
                else if (Directory.Exists(pointTo))
                {
                    Symlink.CreateForDirectory(directoryPath: pointTo, symlink: symlink);
                }
                else
                {
                    Directory.CreateDirectory(pointTo);
                    try {
                        Symlink.CreateForDirectory(directoryPath: pointTo, symlink: symlink);
                    } finally {
                        Directory.Delete(pointTo);
                    }
                }
            }

            var options = new ExtractionOptions {
                ExtractFullPath   = true,
                Overwrite         = overwrite,
                WriteSymbolicLink = WriteSymbolicLink,
            };

            using var stream = File.OpenRead(archive);
            using var reader = ReaderFactory.Open(stream);
            while (reader.MoveToNextEntry())
            {
                if (reader.Entry.IsDirectory)
                {
                    continue;
                }

                reader.WriteEntryToDirectory(target, options);
            }
        }
コード例 #2
0
        public static PythonEnvironment EnsureDeployed(DirectoryInfo target)
        {
            if (target is null)
            {
                throw new ArgumentNullException(nameof(target));
            }
            if (PathEx.IsNested(root: target.FullName, item: AssemblyPath))
            {
                throw new ArgumentException("Can not deploy over this assembly");
            }

            if (ProcessArchitecture != Architecture.X64)
            {
                throw new PlatformNotSupportedException(ProcessArchitecture.ToString());
            }

            string platform = IsOSPlatform(Windows) ? "win"
                : IsOSPlatform(Linux) ? "linux"
                : IsOSPlatform(OSX) ? "osx"
                : throw new PlatformNotSupportedException();

            var runtimeLibrary = DependencyContext.Default.RuntimeLibraries
                                 .Single(lib => lib.Type == "package" && lib.Name == $"LostTech.TensorFlow.Python.runtime.{platform}-x64");
            string?packagePath = PackageHelper.TryLocatePackage(runtimeLibrary.Path);

            if (packagePath is null)
            {
                throw new PlatformNotSupportedException($"Unable to find runtime package in {nameof(DependencyContext)}");
            }

            string archivePath = runtimeLibrary.NativeLibraryGroups
                                 .SelectMany(group => group.AssetPaths)
                                 .Single(path => path.EndsWith("/TensorFlow.tar.xz", StringComparison.Ordinal))
                                 .Replace('/', Path.DirectorySeparatorChar);

            archivePath = Path.Combine(packagePath, archivePath);
            if (!File.Exists(archivePath))
            {
                throw new FileNotFoundException(
                          message: "Packaged TensorFlow was not found. Perhaps the platform is not supported.",
                          fileName: archivePath);
            }

            string relativeInterpreterPath = IsOSPlatform(Windows) ? "python.exe"
                : IsOSPlatform(Linux) || IsOSPlatform(OSX) ? Path.Combine("bin", "python")
                : throw new PlatformNotSupportedException();

            string interpreterPath = Path.Combine(target.FullName, relativeInterpreterPath);

            // TODO: more robust detection
            if (!File.Exists(interpreterPath))
            {
                Archive.Extract(archivePath, target.FullName);
            }

            // TODO: detect Python version
            var version = new Version(3, 7);

            string dllName = IsOSPlatform(Windows)
                ? Invariant($"python{version.Major}{version.Minor}.dll")
                : Path.Combine("lib", Invariant($"libpython{version.Major}.{version.Minor}m{DynamicLibraryExtension}"));

            target.Refresh();

            return(new PythonEnvironment(
                       // TODO: support non-Windows
                       interpreterPath: new FileInfo(interpreterPath),
                       home: target,
                       // TODO: support non-Windows
                       dll: new FileInfo(Path.Combine(target.FullName, dllName)),
                       languageVersion: version,
                       Architecture.X64));
        }