diff --git a/RombaSharp/Partials/RombaSharp_Helpers.cs b/RombaSharp/Partials/RombaSharp_Helpers.cs
index fcd07ec3..124a32b6 100644
--- a/RombaSharp/Partials/RombaSharp_Helpers.cs
+++ b/RombaSharp/Partials/RombaSharp_Helpers.cs
@@ -253,16 +253,49 @@ namespace SabreTools
_port = port;
}
+ ///
+ /// Display the statistics in the database
+ ///
+ ///
+ /// 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
+ ///
private static void DisplayDBStats()
{
_logger.User("This feature is not yet implemented: dbstats");
}
+ ///
+ /// Display the current memory usage of the application
+ ///
private static void DisplayMemoryStats()
{
_logger.User("This feature is not yet implemented: memstats");
}
+ ///
+ /// Moves DAT index entries for orphaned DATs to backup folder
+ ///
+ private static void PurgeBackup()
+ {
+ _logger.User("This feature is not yet implemented: purge-backup");
+ }
+
+ ///
+ /// Deletes DAT index entries for orphaned DATs
+ ///
+ private static void PurgeDelete()
+ {
+ _logger.User("This feature is not yet implemented: purge-delete");
+ }
+
///
/// Populate or refresh the database information
///
diff --git a/RombaSharp/Partials/RombaSharp_Inits.cs b/RombaSharp/Partials/RombaSharp_Inits.cs
index 8946cb3a..f66127e8 100644
--- a/RombaSharp/Partials/RombaSharp_Inits.cs
+++ b/RombaSharp/Partials/RombaSharp_Inits.cs
@@ -10,51 +10,70 @@ namespace SabreTools
{
#region Init Methods
+ ///
+ /// Wrap adding files to the depots
+ ///
+ ///
+ ///
private static void InitArchive(List inputs, bool onlyNeeded)
{
_logger.User("This feature is not yet implemented: archive");
}
+ ///
+ /// Wrap building all files from a set of DATs
+ ///
+ ///
private static void InitBuild(List inputs)
{
_logger.User("This feature is not yet implemented: build");
}
+ ///
+ /// Wrap finding all files that are in both the database and a new Dat
+ ///
+ ///
private static void InitDiffDat(string newdat)
{
_logger.User("This feature is not yet implemented: diffdat");
}
+ ///
+ /// Wrap creating a Dat from a directory
+ ///
+ ///
private static void InitDir2Dat(List inputs)
{
_logger.User("This feature is not yet implemented: dir2dat");
}
+ ///
+ /// Wrap creating a fixdat for each Dat
+ ///
+ ///
private static void InitFixdat(List inputs)
{
_logger.User("This feature is not yet implemented: fixdat");
}
+ ///
+ /// Wrap looking up if hashes exist in the database
+ ///
+ ///
private static void InitLookup(List inputs)
{
_logger.User("This feature is not yet implemented: lookup");
}
+ ///
+ /// Wrap creating a havefile and a missfile for each Dat
+ ///
+ ///
private static void InitMiss(List inputs)
{
_logger.User("This feature is not yet implemented: miss");
}
- private static void InitPurgeBackup()
- {
- _logger.User("This feature is not yet implemented: purge-backup");
- }
-
- private static void InitPurgeDelete()
- {
- _logger.User("This feature is not yet implemented: purge-delete");
- }
-
#endregion
}
}
diff --git a/RombaSharp/RombaSharp.cs b/RombaSharp/RombaSharp.cs
index 0c269e20..350df363 100644
--- a/RombaSharp/RombaSharp.cs
+++ b/RombaSharp/RombaSharp.cs
@@ -277,19 +277,19 @@ namespace SabreTools
// Shows progress of the currently running command
else if (progress)
{
- _logger.User("This feature is not yet implemented!");
+ _logger.User("This feature is not used in RombaSharp: progress");
}
// Moves DAT index entries for orphaned DATs
else if (purgeBackup)
{
- InitPurgeBackup();
+ PurgeBackup();
}
// Deletes DAT index entries for orphaned DATs
else if (purgeDelete)
{
- InitPurgeDelete();
+ PurgeDelete();
}
// Refreshes the DAT index from the files in the DAT master directory tree
@@ -301,7 +301,7 @@ namespace SabreTools
// Gracefully shuts down server
else if (shutdown)
{
- _logger.User("This feature is not yet implemented!");
+ _logger.User("This feature is not used in RombaSharp: shutdown");
}
// If nothing is set, show the help