ConfigurationHelper.cs :  » RSS-RDF » RSS-Feeder » RSSFeeder » Helpers » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » RSS RDF » RSS Feeder 
RSS Feeder » RSSFeeder » Helpers » ConfigurationHelper.cs
// Copyright  2005 by Omar Al Zabir. All rights are reserved.
// 
// If you like this code then feel free to go ahead and use it.
// The only thing I ask is that you don't remove or alter my copyright notice.
//
// Your use of this software is entirely at your own risk. I make no claims or
// warrantees about the reliability or fitness of this code for any particular purpose.
// If you make changes or additions to this code please mark your code as being yours.
// 
// website http://www.oazabir.com, email OmarAlZabir@gmail.com, msn oazabir@hotmail.com

using System;
using System.Diagnostics;
using System.IO;
using System.Collections;
using System.Xml;
using System.Xml.Serialization;
using Microsoft.Practices.EnterpriseLibrary.Logging;

namespace RSSFeeder.Helpers{
  using RSSCommon;
  using RSSCommon.Helper;
  using RSSBlogAPI;

  /// <summary>
  /// Helper class for storing/retrieving global configuration
  /// </summary>
  public class ConfigurationHelper
  {
    public const string CONFIGURATION_BACKUP_FILE = "ConfigurationBackup.xml";

    public static void CopyFiles()
    {
      #region Log
      Logger.Write("Copying files...");
      #endregion

      string exeFileName = Process.GetCurrentProcess().MainModule.FileName;
      DateTime exeDateTime = File.GetLastWriteTime( exeFileName );

      // 1. Create the default XSLT file
      Configuration.Instance.XSLFileName = Path.Combine( ApplicationSettings.ApplicationDataPath, "default.xslt" );
      if( !File.Exists( Configuration.Instance.XSLFileName ) || File.GetLastWriteTime( Configuration.Instance.XSLFileName ) < exeDateTime )
        SerializationHelper.WriteEmbeddedFile( "default.xslt", Configuration.Instance.XSLFileName );

      // 2. Copy the java script file
      //string jsFilePath = Path.Combine( ApplicationSettings.ApplicationDataPath, "fix.js" );
      //SerializationHelper.WriteEmbeddedFile( "RSSFeeder.Resources.fix.js", jsFilePath );

      // 3. Copy newspaper XSL 
      Configuration.Instance.NewspaperXSL = Path.Combine( ApplicationSettings.ApplicationDataPath, "rss2html.xslt" );
      if( !File.Exists( Configuration.Instance.NewspaperXSL ) || File.GetLastWriteTime( Configuration.Instance.NewspaperXSL ) < exeDateTime )
        SerializationHelper.WriteEmbeddedFile( "rss2html.xslt", Configuration.Instance.NewspaperXSL );

      // 4. Copy outlook view XML
      Configuration.Instance.OutlookViewXmlPath = Path.Combine( ApplicationSettings.ApplicationDataPath, "RSSFeederView.xml" );
      if( !File.Exists( Configuration.Instance.OutlookViewXmlPath ) || File.GetLastWriteTime( Configuration.Instance.OutlookViewXmlPath ) < exeDateTime )
        SerializationHelper.WriteEmbeddedFile( "RSSFeederView.xml", Configuration.Instance.OutlookViewXmlPath );

      // 5. Copy outlook XSL
      Configuration.Instance.OutlookXSL = Path.Combine( ApplicationSettings.ApplicationDataPath, "outlook.xslt" );
      if( !File.Exists( Configuration.Instance.OutlookXSL ) || File.GetLastWriteTime( Configuration.Instance.OutlookXSL ) < exeDateTime )
        SerializationHelper.WriteEmbeddedFile( "outlook.xslt", Configuration.Instance.OutlookXSL );

      // 6. Atom to RSS Converter XSL
      Configuration.Instance.AtomToRssXsl= Path.Combine( ApplicationSettings.ApplicationDataPath, "atomtorss2.xslt" );
      if( !File.Exists( Configuration.Instance.AtomToRssXsl ) || File.GetLastWriteTime( Configuration.Instance.AtomToRssXsl ) < exeDateTime )
        SerializationHelper.WriteEmbeddedFile( "atomtorss2.xslt", Configuration.Instance.AtomToRssXsl );
    }

    public static void LoadGlobalSettings()
    {
      EntLibHelper.LoadConfiguration();
      
      // Try loading the web log configuration. For first time, it may fail, never mind
      try
      {
        WebLogProvider.LoadWebLogs();
      }
      catch
      {
      }
    
      // If this is the new installation, try restoring the old configuration
      if( Configuration.Instance.IsNewInstall )
      {
        string configPath = Path.Combine( ApplicationSettings.ApplicationDataPath, CONFIGURATION_BACKUP_FILE );
        if( File.Exists( configPath ) )
        {
          using( FileStream file = new FileStream( configPath, FileMode.Open ) )
          {
            Configuration oldConfig = (Configuration)SerializationHelper.Deserialize( file, typeof( Configuration ) );

            // Copy old config settings to new config
            SerializationHelper.CopyProperties( oldConfig, Configuration.Instance );
          }
        }

        Configuration.Instance.IsNewInstall = false;

        SaveGlobalSettings();
      }

      RSSCommon.PropertyEditor.PasswordEditor.PasswordProvider = new EntLibHelper();
      // Subscribe to change event so that whenever the configuration object changes, it is saved
      Configuration.Instance.PropertyChanged += new System.ComponentModel.PropertyChangedEventHandler(Instance_PropertyChanged);      
    }
    public static void SaveGlobalSettings()
    {
      EntLibHelper.Debug("Saving configuration", "");      
      EntLibHelper.SaveConfiguration();

      // 6. Copy the configuration file to application data in order to maintain a backup of it.
      // Next time when a new version comes, we need to get settings from this backup
      string configPath = Path.Combine( ApplicationSettings.ApplicationDataPath, CONFIGURATION_BACKUP_FILE );
      using( FileStream file = new FileStream( configPath, FileMode.Create ) )
      {
        SerializationHelper.Serialize( file, Configuration.Instance );
      }
      
      WebLogProvider.SaveWebLogs();
    }

    private static void Instance_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
    {
      if( Configuration.Instance.LoadAtStartup )
        RegistryHelper.RegisterAtStartup();
      else
        RegistryHelper.UnregisterAtStartup();

      SaveGlobalSettings();
    }
  }
}
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.