Table of Contents

Class FileSystemCDRepositoryManager

Namespace
CMS.ContinuousIntegration
Assembly
CMS.ContinuousIntegration.dll

Manages file system repository for continuous integration - stores and restores supported objects to and from the repository. Ensures mutual exclusion of the repository access across processes.

public class FileSystemCDRepositoryManager
Inheritance
object
FileSystemCDRepositoryManager
Extension Methods

Remarks

This class is responsible for the synchronization of objects de/serialization to the repository.

Members of this class are thread-safe.

Constructors

FileSystemCDRepositoryManager(string)

Private constructor ensures uniqueness of singleton class.

protected FileSystemCDRepositoryManager(string repositoryPath = null)

Parameters

repositoryPath string

Exceptions

RepositoryConfigurationException

Thrown when loading of repository configuration fails.

Methods

Dispose()

Releases all resources used by the current instance of the FileSystemCDRepositoryManager class.

public void Dispose()

Dispose(bool)

When overridden in a derived class, releases the unmanaged resources used by the FileSystemCDRepositoryManager, and optionally releases the managed resources.

protected virtual void Dispose(bool disposing)

Parameters

disposing bool

True to release both managed and unmanaged resources; false to release only unmanaged resources.

Remarks

The FileSystemRepositoryManager uses only managed resources. If unmanaged resources are used in inherited class, make sure its destructor contains call to Dispose(false) (i.e. this class does not have any destructor implemented).

Restore(string, Action<LogItem>, CancellationToken?)

Restores all supported objects from the file system repository.

public static RepositoryActionResult Restore(string repositoryPath, Action<LogItem> messageHandler = null, CancellationToken? cancellationToken = null)

Parameters

repositoryPath string

Relative path to the repository.

messageHandler Action<LogItem>

Handler with messages from restore process.

cancellationToken CancellationToken?

Operation can be canceled at any time using given cancellation token. This method's operation terminates as soon as cancellation request is detected.

Returns

RepositoryActionResult

Returns result object of the restoring process. Successful restoring is indicating by Success flag.

Exceptions

RepositoryConfigurationException

Thrown when loading of repository configuration fails.

StoreAll(string, Action<LogItem>, CancellationToken?)

Stores all supported objects to the file system repository.

public static RepositoryActionResult StoreAll(string repositoryPath, Action<LogItem> messageHandler = null, CancellationToken? cancellationToken = null)

Parameters

repositoryPath string

Relative path to the repository.

messageHandler Action<LogItem>

Handler with messages from store process.

cancellationToken CancellationToken?

Operation can be canceled at any time using given cancellation token. This method's operation terminates as soon as cancellation request is detected.

Returns

RepositoryActionResult

Returns result object of the restoring process. Successful restoring is indicating by Success flag.

Remarks

Target location on the file system will be cleaned up before storing.

Restoring of all is disabled when storing of all objects is running.

Exceptions

RepositoryConfigurationException

Thrown when loading of repository configuration fails.