Files
duplicati/Duplicati/Library/Snapshots/ISnapshotService.cs
T
Kenneth Skovhede 9dfe977d3f Changed logic so the source providers are now logically mounted into the source directory structure.
This fixes the restore issues as all sources will now appear as if they were originally part of the source file system.

The backend implementation has now been simplified so the backends only return names of entries with no path information.  Most backends already do this, but the S3 backends did not, so this was fixed as well.

This also clears up the interfaces, so the backend does not know about the `ISourceProviderEntry`. All mapping is done by the `BackendSourceProvider`, making it simpler to support other backends as sources.
2025-02-21 16:06:55 +01:00

163 lines
7.0 KiB
C#

// Copyright (C) 2025, The Duplicati Team
// https://duplicati.com, hello@duplicati.com
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#nullable enable
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Duplicati.Library.Interface;
namespace Duplicati.Library.Snapshots
{
/// <summary>
/// An interface for a snapshot implementation
/// </summary>
public interface ISnapshotService : IDisposable
{
/// <summary>
/// Gets the source entries
/// </summary>
IEnumerable<string> SourceEntries { get; }
/// <summary>
/// Enumerates the root source files and folders
/// </summary>
/// <returns>The source files and folders</returns>
IEnumerable<ISourceProviderEntry> EnumerateFilesystemEntries();
/// <summary>
/// Enumerates the files and folders in a given folder
/// </summary>
/// <param name="parent">The parent folder to enumerate</param>
/// <returns>The files and folders in the parent folder</returns>
IEnumerable<ISourceProviderEntry> EnumerateFilesystemEntries(ISourceProviderEntry parent);
/// <summary>
/// Gets a filesystem entry for a given path
/// </summary>
/// <param name="path">The path to get</param>
/// <param name="isFolder">True if the path is a folder</param>
/// <returns>The filesystem entry</returns>
ISourceProviderEntry? GetFilesystemEntry(string path, bool isFolder);
/// <summary>
/// Gets the last write time of a given file in UTC
/// </summary>
/// <param name="localPath">The full path to the file in non-snapshot format</param>
/// <returns>The last write time of the file</returns>
DateTime GetLastWriteTimeUtc(string localPath);
/// <summary>
/// Gets the last write time of a given file in UTC
/// </summary>
/// <param name="localPath">The full path to the file in non-snapshot format</param>
/// <returns>The last write time of the file</returns>
DateTime GetCreationTimeUtc(string localPath);
/// <summary>
/// Opens a file for reading
/// </summary>
/// <param name="localPath">The full path to the file in non-snapshot format</param>
/// <returns>An open filestream that can be read and seeked</returns>
Stream OpenRead(string localPath);
/// <summary>
/// Opens a file for reading
/// </summary>
/// <param name="localPath">The full path to the file in non-snapshot format</param>
/// <param name="cancellationToken">A token that can be used to cancel the operation</param>
/// <returns>An open filestream that can be read and seeked</returns>
Task<Stream> OpenReadAsync(string localPath, CancellationToken cancellationToken);
/// <summary>
/// Returns the size of a file
/// </summary>
/// <param name="localPath">The full path to the file in non-snapshot format</param>
/// <returns>The length of the file</returns>
long GetFileSize(string localPath);
/// <summary>
/// Returns the symlink target if the entry is a symlink, and null otherwise
/// </summary>
/// <param name="localPath">The file or folder to examine</param>
/// <returns>The symlink target</returns>
string GetSymlinkTarget(string localPath);
/// <summary>
/// Gets the attributes for the given file or folder
/// </summary>
/// <returns>The file attributes</returns>
/// <param name="localPath">The file or folder to examine</param>
FileAttributes GetAttributes(string localPath);
/// <summary>
/// Gets the metadata for the given file or folder
/// </summary>
/// <returns>The metadata for the given file or folder</returns>
/// <param name="localPath">The file or folder to examine</param>
/// <param name="isSymlink">A flag indicating if the target is a symlink</param>
Dictionary<string, string> GetMetadata(string localPath, bool isSymlink);
/// <summary>
/// Gets a value indicating if the path points to a block device
/// </summary>
/// <returns><c>true</c> if this instance is a block device; otherwise, <c>false</c>.</returns>
/// <param name="localPath">The file or folder to examine</param>
bool IsBlockDevice(string localPath);
/// <summary>
/// Gets a unique hardlink target ID
/// </summary>
/// <returns>The hardlink ID</returns>
/// <param name="localPath">The file or folder to examine</param>
string? HardlinkTargetID(string localPath);
/// <summary>
/// Converts a snapshot path to a local path
/// </summary>
/// <param name="snapshotPath">The snapshot-local path</param>
/// <returns>The local path</returns>
string ConvertToLocalPath(string snapshotPath);
/// <summary>
/// Converts a local path to a snapshot-local path
/// </summary>
/// <param name="localPath">The local path</param>
/// <returns>The snapshot path</returns>
string ConvertToSnapshotPath(string localPath);
/// <summary>
/// Tests if a file exists in the snapshot
/// </summary>
/// <param name="localFilePath">The local path</param>
/// <returns>True if file exists, false otherwise</returns>
bool FileExists(string localFilePath);
/// <summary>
/// Tests if a folder exists in the snapshot
/// </summary>
/// <param name="localFolderPath">The local path</param>
/// <returns>True if folder exists, false otherwise</returns>
bool DirectoryExists(string localFolderPath);
}
}