diff --git a/RombaSharp/RombaSharp.Inits.cs b/RombaSharp/RombaSharp.Inits.cs
index 00d52b7d..1623ae78 100644
--- a/RombaSharp/RombaSharp.Inits.cs
+++ b/RombaSharp/RombaSharp.Inits.cs
@@ -33,6 +33,7 @@ namespace RombaSharp
/// True to skip the initial scan of the files to determine amount of work, false otherwise
/// True to use go zip implementation instead of zlib, false otherwise
/// True to archive into depot but do not touch DB index and ignore only-needed flag, false otherwise
+ /// TODO: Verify implementation
private static void InitArchive(
List inputs,
bool onlyNeeded,
@@ -210,6 +211,7 @@ namespace RombaSharp
/// True if files should be copied to output, false for rebuild
/// How many workers to launch for the job, default from config
/// How many subworkers to launch for each worker, default from config
+ /// TODO: Verify implementation
private static void InitBuild(
List inputs,
string outdat,
@@ -264,6 +266,7 @@ namespace RombaSharp
/// Wrap printing dat stats
///
/// List of input DATs to get stats from
+ /// TODO: Verify implementation
private static void InitDatStats(List inputs)
{
Globals.Logger.Error("This feature is not yet implemented: datstats");
@@ -285,6 +288,7 @@ namespace RombaSharp
/// New DAT file
/// Name value in DAT header
/// Description value in DAT header
+ /// TODO: Implement
private static void InitDiffDat(
string outdat,
string old,
@@ -302,6 +306,7 @@ namespace RombaSharp
/// Source directory
/// Name value in DAT header
/// Description value in DAT header
+ /// TODO: Implement
private static void InitDir2Dat(
string outdat,
string source,
@@ -317,6 +322,7 @@ namespace RombaSharp
/// Output file
/// Old DAT file
/// New DAT file
+ /// TODO: Implement
private static void InitEDiffDat(
string outdat,
string old,
@@ -328,6 +334,7 @@ namespace RombaSharp
///
/// Wrap exporting the database to CSV
///
+ /// TODO: Verify implementation
private static void InitExport()
{
ExportDatabase();
@@ -341,6 +348,7 @@ namespace RombaSharp
/// True to only fix dats and don't generate torrentzips, false otherwise
/// How many workers to launch for the job, default from config
/// How many subworkers to launch for each worker, default from config
+ /// TODO: Implement
private static void InitFixdat(
List inputs,
string outdat,
@@ -355,6 +363,7 @@ namespace RombaSharp
/// Wrap importing CSVs into the database
///
/// List of input CSV files to import information from
+ /// TODO: Implement
private static void InitImport(List inputs)
{
Globals.Logger.Error("This feature is not yet implemented: import");
@@ -366,6 +375,7 @@ namespace RombaSharp
/// List of input strings representing hashes to check for
/// Size to limit hash by, -1 otherwise
/// Output directory
+ /// TODO: Verify implementation
private static void InitLookup(
List inputs,
long size,
@@ -482,6 +492,7 @@ namespace RombaSharp
/// How many workers to launch for the job, default from config
/// True to skip the initial scan of the files to determine amount of work, false otherwise
/// TODO: Add way of specifying "current depot" since that's what Romba relies on
+ /// TODO: Implement
private static void InitMerge(
List inputs,
bool onlyNeeded,
@@ -495,7 +506,8 @@ namespace RombaSharp
///
/// Wrap creating a havefile and a missfile for each Dat
///
- /// List of DAT files to get a miss and have for
+ /// List of DAT files to get a miss and have for, empty means all
+ /// TODO: Implement
private static void InitMiss(List inputs)
{
Globals.Logger.Error("This feature is not yet implemented: miss");
@@ -517,6 +529,7 @@ namespace RombaSharp
/// List of depots to scan files in, empty means all
/// List of DATs to use as the basis of scanning, empty means all
/// True if only the output of the operation is shown, false to actually run
+ /// TODO: Verify implementation
private static void InitPurgeBackup(
string backup,
int workers,
@@ -536,6 +549,7 @@ namespace RombaSharp
/// List of depots to scan files in, empty means all
/// List of DATs to use as the basis of scanning, empty means all
/// True if only the output of the operation is shown, false to actually run
+ /// TODO: Verify implementation
private static void InitPurgeDelete(
int workers,
List depot,
@@ -552,6 +566,7 @@ namespace RombaSharp
///
/// How many workers to launch for the job, default from config
/// Write paths of dats with missing sha1s into this file
+ /// TODO: Verify implementation
private static void InitRefreshDats(
int workers,
string missingSha1s)
@@ -565,6 +580,7 @@ namespace RombaSharp
/// Wrap rescanning depots
///
/// List of depots to rescan, empty means all
+ /// TODO: Verify implementation
private static void InitRescanDepots(List inputs)
{
Globals.Logger.Error("This feature is not yet implemented: rescan-depots");