An alternative to UBB.threads
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.9 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using FLocal.Core;
using FLocal.Core.DB;
using FLocal.Core.DB.conditions;
namespace FLocal.Common.dataobjects {
public class Skin : SqlObject<Skin> {
public class TableSpec : ISqlObjectTableSpec {
public const string TABLE = "Skins";
public const string FIELD_ID = "Id";
public const string FIELD_NAME = "SkinName";
public static readonly TableSpec instance = new TableSpec();
public string name { get { return TABLE; } }
public string idName { get { return FIELD_ID; } }
public void refreshSqlObject(int id) { Refresh(id); }
}
protected override ISqlObjectTableSpec table { get { return TableSpec.instance; } }
private string _name;
public string name {
get {
this.LoadIfNotLoaded();
return this._name;
}
}
protected override void doFromHash(Dictionary<string, string> data) {
this._name = data[TableSpec.FIELD_NAME];
}
private static readonly object allSkins_Locker = new object();
public static IEnumerable<Skin> allSkins {
get {
return
from id in Cache<IEnumerable<int>>.instance.get(
allSkins_Locker,
() => {
IEnumerable<int> ids = from stringId in Config.instance.mainConnection.LoadIdsByConditions(
TableSpec.instance,
new FLocal.Core.DB.conditions.EmptyCondition(),
Diapasone.unlimited
) select int.Parse(stringId);
Skin.LoadByIds(ids);
return ids;
}
)
let skin = Skin.LoadById(id)
orderby skin.id
select skin;
}
}
internal static void allLayers_Reset() {
Cache<IEnumerable<int>>.instance.delete(allSkins_Locker);
}
public XElement exportToXml() {
return new XElement("skin",
new XElement("id", this.id),
new XElement("name", this.name)
);
}
}
}