/// <summary>
 /// Creates instance of this class.
 /// </summary>
 /// <param name="remoteStorageRootPath">Remote storage path. Folder that contains source files to monitor changes.</param>
 /// <param name="virtualDrive">Virtual drive to send notifications about changes in the remote storage.</param>
 /// <param name="log">Logger.</param>
 internal RemoteStorageMonitor(string remoteStorageRootPath, VirtualDrive virtualDrive, ILog log) : base("Remote Storage Monitor", log)
 {
     this.remoteStorageRootPath = remoteStorageRootPath;
     this.virtualDrive          = virtualDrive;
 }
 /// <summary>
 /// Creates instance of this class.
 /// </summary>
 /// <param name="userFileSystemFilePath">Path of this file in the user file system.</param>
 /// <param name="virtualDrive">Virtual Drive instance that created this item.</param>
 /// <param name="logger">Logger.</param>
 public VirtualFile(string userFileSystemFilePath, VirtualDrive virtualDrive, ILogger logger)
     : base(userFileSystemFilePath, virtualDrive, logger)
 {
 }
Exemple #3
0
        static async Task <int> Main(string[] args)
        {
            // Load Settings.
            IConfiguration configuration = new ConfigurationBuilder().AddJsonFile("appsettings.json", false, true).Build();

            Settings        = configuration.ReadSettings();
            Config.Settings = Settings;

            // Load Log4Net for net configuration.
            var logRepository = LogManager.GetRepository(Assembly.GetEntryAssembly());

            XmlConfigurator.Configure(logRepository, new FileInfo("log4net.config"));

            // Enable UTF8 for Console Window
            Console.OutputEncoding = System.Text.Encoding.UTF8;

            log.Info($"\n{System.Diagnostics.Process.GetCurrentProcess().ProcessName} {Settings.AppID}");
            log.Info("\nPress 'Q' to unregister file system, delete all files/folders and exit (simulate uninstall with full cleanup).");
            log.Info("\nPress 'q' to unregister file system and exit (simulate uninstall).");
            log.Info("\nPress any other key to exit without unregistering (simulate reboot).");
            log.Info("\n----------------------\n");

            // Typically you will register sync root during your application installation.
            // Here we register it during first program start for the sake of the development convenience.
            if (!await Registrar.IsRegisteredAsync(Settings.UserFileSystemRootPath))
            {
                log.Info($"\nRegistering {Settings.UserFileSystemRootPath} sync root.");
                Directory.CreateDirectory(Settings.UserFileSystemRootPath);
                Directory.CreateDirectory(Settings.ServerDataFolderPath);

                await Registrar.RegisterAsync(SyncRootId, Settings.UserFileSystemRootPath, Settings.ProductName,
                                              Path.Combine(Config.Settings.IconsFolderPath, "Drive.ico"));
            }
            else
            {
                log.Info($"\n{Settings.UserFileSystemRootPath} sync root already registered.");
            }

            // Log indexed state.
            StorageFolder userFileSystemRootFolder = await StorageFolder.GetFolderFromPathAsync(Settings.UserFileSystemRootPath);

            log.Info($"\nIndexed state: {(await userFileSystemRootFolder.GetIndexedStateAsync())}\n");

            ConsoleKeyInfo exitKey;

            try
            {
                virtualDrive = new VirtualDrive(Settings.UserFileSystemLicense, Settings.UserFileSystemRootPath, log, Settings.SyncIntervalMs);
                RemoteStorageMonitorInstance = new RemoteStorageMonitor(Settings.RemoteStorageRootPath, log);

                // Start processing OS file system calls.
                //engine.ChangesProcessingEnabled = false;
                await virtualDrive.StartAsync();

                // Start monitoring changes in remote file system.
                await RemoteStorageMonitorInstance.StartAsync();

#if DEBUG
                // Opens Windows File Manager with user file system folder and remote storage folder.
                ShowTestEnvironment();
#endif
                // Keep this application running until user input.
                exitKey = Console.ReadKey();
            }
            finally
            {
                virtualDrive.Dispose();
                RemoteStorageMonitorInstance.Dispose();
            }

            if (exitKey.KeyChar == 'q')
            {
                // Unregister during programm uninstall.
                await Registrar.UnregisterAsync(SyncRootId);

                log.Info($"\n\nUnregistering {Settings.UserFileSystemRootPath} sync root.");
                log.Info("\nAll empty file and folder placeholders are deleted. Hydrated placeholders are converted to regular files / folders.\n");
            }
            else if (exitKey.KeyChar == 'Q')
            {
                log.Info($"\n\nUnregistering {Settings.UserFileSystemRootPath} sync root.");
                log.Info("\nAll files and folders placeholders are deleted.\n");

                // Unregister during programm uninstall and delete all files/folder.
                await Registrar.UnregisterAsync(SyncRootId);

                try
                {
                    Directory.Delete(Settings.UserFileSystemRootPath, true);
                }
                catch (Exception ex)
                {
                    log.Error($"\n{ex}");
                }

                try
                {
                    Directory.Delete(Config.Settings.ServerDataFolderPath, true);
                }
                catch (Exception ex)
                {
                    log.Error($"\n{ex}");
                }
            }
            else
            {
                log.Info("\n\nAll downloaded file / folder placeholders remain in file system. Restart the application to continue managing files.\n");
            }

            return(1);
        }
 /// <summary>
 /// Creates instance of this class.
 /// </summary>
 /// <param name="userfileSystemFolderPath">Path of this folder in the user file system.</param>
 /// <param name="virtualDrive">Virtual Drive instance that created this item.</param>
 /// <param name="logger">Logger.</param>
 public VirtualFolder(string userfileSystemFolderPath, VirtualDrive virtualDrive, ILogger logger)
     : base(userfileSystemFolderPath, virtualDrive, logger)
 {
 }