[RombaSharp] Create all skeleton methods

This commit is contained in:
Matt Nadareski
2016-09-02 14:08:34 -07:00
parent aca3588a3d
commit 223755843c
3 changed files with 66 additions and 14 deletions

View File

@@ -253,16 +253,49 @@ namespace SabreTools
_port = port;
}
/// <summary>
/// Display the statistics in the database
/// </summary>
/// <remarks>
/// This list of stats should include:
/// - Total uncompressed size of the files
/// - Total number of files
/// - Total number of files that exist
/// - Total number of files that don't exist
/// - Total number of files with CRC
/// - Total number of files with MD5
/// - Total number of files with SHA-1
/// - Total number of unique DAT hashes
/// </remarks>
private static void DisplayDBStats()
{
_logger.User("This feature is not yet implemented: dbstats");
}
/// <summary>
/// Display the current memory usage of the application
/// </summary>
private static void DisplayMemoryStats()
{
_logger.User("This feature is not yet implemented: memstats");
}
/// <summary>
/// Moves DAT index entries for orphaned DATs to backup folder
/// </summary>
private static void PurgeBackup()
{
_logger.User("This feature is not yet implemented: purge-backup");
}
/// <summary>
/// Deletes DAT index entries for orphaned DATs
/// </summary>
private static void PurgeDelete()
{
_logger.User("This feature is not yet implemented: purge-delete");
}
/// <summary>
/// Populate or refresh the database information
/// </summary>