// OpenTween - Client of Twitter // Copyright (c) 2007-2011 kiri_feather (@kiri_feather) // (c) 2008-2011 Moz (@syo68k) // (c) 2008-2011 takeshik (@takeshik) // (c) 2010-2011 anis774 (@anis774) // (c) 2010-2011 fantasticswallow (@f_swallow) // (c) 2011 kim_upsilon (@kim_upsilon) // All rights reserved. // // This file is part of OpenTween. // // This program is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free // Software Foundation; either version 3 of the License, or (at your option) // any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License // for more details. // // You should have received a copy of the GNU General Public License along // with this program. If not, see , or write to // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, // Boston, MA 02110-1301, USA. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Xml; using System.Xml.Serialization; using System.Windows.Forms; using System.Threading; namespace OpenTween { abstract public class SettingBase where T : class, new() { /// /// XML に含まれる追加データを保持するフィールド /// /// /// 他バージョンから設定をコピーした場合など、クラスに存在しないフィールドが /// XML に含まれていた場合に破棄せず保持するため必要となる。 /// [XmlAnyElement] public XmlElement[] ExtraElements; private static object lockObj = new object(); protected static T LoadSettings(string FileId) { try { var settingFilePath = GetSettingFilePath(FileId); if (!File.Exists(settingFilePath)) { return new T(); } lock (lockObj) { using (FileStream fs = new FileStream(settingFilePath, FileMode.Open, FileAccess.Read)) { fs.Position = 0; XmlSerializer xs = new XmlSerializer(typeof(T)); T instance = (T)xs.Deserialize(fs); return instance; } } } catch (FileNotFoundException) { return new T(); } catch (Exception) { string backupFile = Path.Combine( Path.Combine( Application.StartupPath, MyCommon.GetAssemblyName() + "Backup1st"), typeof(T).Name + FileId + ".xml"); if (File.Exists(backupFile)) { try { lock (lockObj) { using (FileStream fs = new FileStream(backupFile, FileMode.Open, FileAccess.Read)) { fs.Position = 0; XmlSerializer xs = new XmlSerializer(typeof(T)); T instance = (T)xs.Deserialize(fs); MessageBox.Show("File: " + GetSettingFilePath(FileId) + Environment.NewLine + "Use old setting file, because application can't read this setting file."); return instance; } } } catch (Exception) { } } MessageBox.Show("File: " + GetSettingFilePath(FileId) + Environment.NewLine + "Use default setting, because application can't read this setting file."); return new T(); //ex.Data.Add("FilePath", GetSettingFilePath(FileId)); //FileInfo fi = new IO.FileInfo(GetSettingFilePath(FileId)); //ex.Data.Add("FileSize", fi.Length.ToString()); //ex.Data.Add("FileData", File.ReadAllText(GetSettingFilePath(FileId))); //throw; } } protected static T LoadSettings() { return LoadSettings(""); } protected static void SaveSettings(T instance, string fileId) { const int SaveRetryMax = 3; if (instance == null) return; var retryCount = 0; Exception lastException = null; var filePath = GetSettingFilePath(fileId); do { var tmpfilePath = GetSettingFilePath("_" + Path.GetRandomFileName()); try { lock (lockObj) { using (var stream = new FileStream(tmpfilePath, FileMode.Create, FileAccess.Write)) { var serializer = new XmlSerializer(typeof(T)); serializer.Serialize(stream, instance); stream.Flush(); } var fileInfo = new FileInfo(tmpfilePath); if (fileInfo.Length != 0) { // 成功 File.Copy(tmpfilePath, filePath, true); return; } } } catch (Exception e) { lastException = e; } finally { try { if (File.Exists(tmpfilePath)) File.Delete(tmpfilePath); } catch (Exception) { } } // リトライ retryCount++; Thread.Sleep(1000); } while (retryCount <= SaveRetryMax); // リトライオーバー if (lastException != null) MyCommon.ExceptionOut(lastException); MessageBox.Show("Can't write setting XML.(" + filePath + ")", "Save Settings", MessageBoxButtons.OK); } protected static void SaveSettings(T Instance) { SaveSettings(Instance, ""); } public static string GetSettingFilePath(string FileId) { return Path.Combine(MyCommon.settingPath, typeof(T).Name + FileId + ".xml"); } } }