177 lines
7.2 KiB
C#
177 lines
7.2 KiB
C#
/*
|
|
* Copyright (c) 2006-2016, openmetaverse.co
|
|
* All rights reserved.
|
|
*
|
|
* - Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* - Redistributions of source code must retain the above copyright notice, this
|
|
* list of conditions and the following disclaimer.
|
|
* - Neither the name of the openmetaverse.co nor the names
|
|
* of its contributors may be used to endorse or promote products derived from
|
|
* this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using OpenMetaverse.StructuredData;
|
|
using System.IO;
|
|
|
|
namespace WinGridProxy
|
|
{
|
|
internal class FilterEntryOptions
|
|
{
|
|
public string Type { get; set; }
|
|
public bool Checked { get; set; }
|
|
public string Group { get; set; }
|
|
}
|
|
|
|
internal class SettingsStore
|
|
{
|
|
private const int FileVersion = 1;
|
|
|
|
public Dictionary<string, FilterEntryOptions> MessageSessions;
|
|
public Dictionary<string, FilterEntryOptions> PacketSessions;
|
|
public bool StatisticsEnabled;
|
|
public bool SaveSessionOnExit;
|
|
public bool AutoCheckNewCaps;
|
|
|
|
public SettingsStore()
|
|
{
|
|
MessageSessions = new Dictionary<string, FilterEntryOptions>();
|
|
PacketSessions = new Dictionary<string, FilterEntryOptions>();
|
|
}
|
|
|
|
public OSDMap Serialize()
|
|
{
|
|
OSDMap map = new OSDMap();
|
|
if (MessageSessions.Count > 0)
|
|
{
|
|
OSDArray messageArray = new OSDArray(MessageSessions.Count);
|
|
foreach (KeyValuePair<string, FilterEntryOptions> kvp in MessageSessions)
|
|
{
|
|
OSDMap sessionMap = new OSDMap(4);
|
|
sessionMap["Name"] = OSD.FromString(kvp.Key);
|
|
sessionMap["Type"] = OSD.FromString(kvp.Value.Type);
|
|
sessionMap["Capture"] = OSD.FromBoolean(kvp.Value.Checked);
|
|
sessionMap["Group"] = OSD.FromString(kvp.Value.Group);
|
|
messageArray.Add(sessionMap);
|
|
}
|
|
map.Add("message_sessions", messageArray);
|
|
}
|
|
|
|
if (PacketSessions.Count > 0)
|
|
{
|
|
OSDArray packetArray = new OSDArray(PacketSessions.Count);
|
|
foreach (KeyValuePair<string, FilterEntryOptions> kvp in PacketSessions)
|
|
{
|
|
OSDMap sessionMap = new OSDMap(4);
|
|
sessionMap["Name"] = OSD.FromString(kvp.Key);
|
|
sessionMap["Type"] = OSD.FromString(kvp.Value.Type);
|
|
sessionMap["Capture"] = OSD.FromBoolean(kvp.Value.Checked);
|
|
sessionMap["Group"] = OSD.FromString(kvp.Value.Group);
|
|
packetArray.Add(sessionMap);
|
|
}
|
|
map.Add("packet_sessions", packetArray);
|
|
}
|
|
|
|
map.Add("CaptureStatistics", OSD.FromBoolean(StatisticsEnabled));
|
|
map.Add("SaveProfileOnExit", OSD.FromBoolean(SaveSessionOnExit));
|
|
map.Add("AutoCheckNewCaps", OSD.FromBoolean(AutoCheckNewCaps));
|
|
map.Add("FileVersion", OSD.FromInteger(FileVersion));
|
|
return map;
|
|
}
|
|
|
|
public void Deserialize(OSDMap map)
|
|
{
|
|
MessageSessions.Clear();
|
|
PacketSessions.Clear();
|
|
|
|
if (map.ContainsKey("FileVersion") && map["FileVersion"].AsInteger() == FileVersion)
|
|
{
|
|
StatisticsEnabled = map["CaptureStatistics"].AsBoolean();
|
|
SaveSessionOnExit = map["SaveProfileOnExit"].AsBoolean();
|
|
AutoCheckNewCaps = map["AutoCheckNewCaps"].AsBoolean();
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine("Error loading saved settings, FileVersion is null or out of date.");
|
|
StatisticsEnabled = true;
|
|
AutoCheckNewCaps = true;
|
|
SaveSessionOnExit = true;
|
|
return;
|
|
}
|
|
|
|
if (map.ContainsKey("message_sessions"))
|
|
{
|
|
OSDArray messageArray = (OSDArray)map["message_sessions"];
|
|
|
|
//MessageSessions = new Dictionary<string, FilterEntryOptions>(messageArray.Count);
|
|
|
|
for (int i = 0; i < messageArray.Count; i++)
|
|
{
|
|
OSDMap sessionsMap = (OSDMap)messageArray[i];
|
|
FilterEntryOptions entry = new FilterEntryOptions();
|
|
entry.Checked = sessionsMap["Capture"].AsBoolean();
|
|
entry.Group = sessionsMap["Group"].AsString();
|
|
entry.Type = sessionsMap["Type"].AsString();
|
|
MessageSessions.Add(sessionsMap["Name"].AsString(), entry);
|
|
}
|
|
}
|
|
|
|
if (map.ContainsKey("packet_sessions"))
|
|
{
|
|
OSDArray packetArray = (OSDArray)map["packet_sessions"];
|
|
|
|
//PacketSessions = new Dictionary<string, FilterEntryOptions>(packetArray.Count);
|
|
|
|
for (int i = 0; i < packetArray.Count; i++)
|
|
{
|
|
OSDMap packetMap = (OSDMap)packetArray[i];
|
|
FilterEntryOptions entry = new FilterEntryOptions();
|
|
entry.Checked = packetMap["Capture"].AsBoolean();
|
|
entry.Group = packetMap["Group"].AsString();
|
|
entry.Type = packetMap["Type"].AsString();
|
|
PacketSessions.Add(packetMap["Name"].AsString(), entry);
|
|
}
|
|
}
|
|
}
|
|
|
|
public bool DeserializeFromFile(string fileName)
|
|
{
|
|
if (File.Exists(fileName))
|
|
{
|
|
try
|
|
{
|
|
OSDMap map = (OSDMap)OSDParser.DeserializeLLSDNotation(File.ReadAllText(fileName));
|
|
this.Deserialize(map);
|
|
return true;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Console.WriteLine("Exception Deserializing From File: {0} {1}", e.Message, e.StackTrace);
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public void SerializeToFile(string fileName)
|
|
{
|
|
File.WriteAllText(fileName, this.Serialize().ToString());
|
|
}
|
|
}
|
|
}
|