Exemple #1
0
        public void CreateInitialDataIfNeeded()
        {
            try
            {
                bool initializationNeeded = false;

                // only create default data if the action mappings are missing

                // check if action mappings are there
                Task <bool> .Run(async() => initializationNeeded = await _actionMappingLogic.IsInitializationNeededAsync()).Wait();

                if (!initializationNeeded)
                {
                    Trace.TraceInformation("No initial data needed.");
                    return;
                }

                Trace.TraceInformation("Beginning initial data creation...");

                List <string> bootstrappedDevices = null;

                // 1) create default devices
                Task.Run(async() => bootstrappedDevices = await _deviceLogic.BootstrapDefaultDevices()).Wait();

                // 2) create default rules
                Task.Run(() => _deviceRulesLogic.BootstrapDefaultRulesAsync(bootstrappedDevices)).Wait();

                // 3) create action mappings (do this last to ensure that we'll try to
                //    recreate if any of the above throws)
                _actionMappingLogic.InitializeDataIfNecessaryAsync();

                Trace.TraceInformation("Initial data creation completed.");
            }
            catch (Exception ex)
            {
                Trace.TraceError("Failed to create initial default data: {0}", ex.ToString());
            }
        }