PowerToys/Wox/Storage/TopMostRecord.cs

56 lines
1.6 KiB
C#
Raw Normal View History

2015-10-31 07:17:34 +08:00
using System.Collections.Generic;
2015-02-05 23:29:41 +08:00
using System.Linq;
using Wox.Infrastructure.Storage;
2016-01-07 05:34:42 +08:00
using Wox.Plugin;
2015-02-05 23:29:41 +08:00
namespace Wox.Storage
{
public class TopMostRecord
2015-02-05 23:29:41 +08:00
{
public Dictionary<string, Record> records = new Dictionary<string, Record>();
2015-02-05 23:29:41 +08:00
2016-01-07 05:34:42 +08:00
internal bool IsTopMost(Result result)
2015-02-05 23:29:41 +08:00
{
return records.Any(o => o.Value.Title == result.Title
&& o.Value.SubTitle == result.SubTitle
2015-02-07 20:17:49 +08:00
&& o.Value.PluginID == result.PluginID
&& o.Key == result.OriginQuery.RawQuery);
2015-02-05 23:29:41 +08:00
}
2016-01-07 05:34:42 +08:00
internal void Remove(Result result)
2015-02-05 23:29:41 +08:00
{
if (records.ContainsKey(result.OriginQuery.RawQuery))
{
records.Remove(result.OriginQuery.RawQuery);
}
}
2016-01-07 05:34:42 +08:00
internal void AddOrUpdate(Result result)
2015-02-05 23:29:41 +08:00
{
if (records.ContainsKey(result.OriginQuery.RawQuery))
{
records[result.OriginQuery.RawQuery].Title = result.Title;
records[result.OriginQuery.RawQuery].SubTitle = result.SubTitle;
records[result.OriginQuery.RawQuery].PluginID = result.PluginID;
}
else
{
records.Add(result.OriginQuery.RawQuery, new Record
2016-01-07 05:34:42 +08:00
{
2016-01-07 10:31:17 +08:00
PluginID = result.PluginID,
Title = result.Title,
SubTitle = result.SubTitle
});
2015-02-05 23:29:41 +08:00
}
}
}
public class Record
2015-02-05 23:29:41 +08:00
{
public string Title { get; set; }
public string SubTitle { get; set; }
public string PluginID { get; set; }
}
}