1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
using FLY.Thick.Blowing.Common;
using FLY.Thick.Blowing.IService;
using FObjBase;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace FLY.Thick.Blowing.Server
{
public class BlowingFixProfile: IBlowingFixProfileService
{
BlowingFixProfileParam param = new BlowingFixProfileParam();
public BlowingFixProfileParam Param
{
get
{
return param;
}
}
public BlowingFixProfile()
{
}
public BlowingFixProfile(string path)
{
if (path == null)
Load();
else
Load(path);
}
public bool Load()
{
return Misc.SaveToXmlHepler.Load("profile.xml", this.Param);
}
bool Load(string path)
{
return Misc.SaveToXmlHepler.Load(path, this.Param);
}
bool Save()
{
bool ret2 = Misc.SaveToXmlHepler.Save(@"profile.xml", this.Param);
bool ret1 = Misc.SaveToXmlHepler.Save(@"profile\" + Param.PName + ".xml", this.Param);
return (ret1 && ret2);
}
/// <summary>
/// 应用 & 保存
/// </summary>
public void Apply()
{
Save();
}
/// <summary>
/// 获取产品列表, 返回类型为 List<string>
/// </summary>
/// <param name="AsyncDelegate"></param>
/// <param name="AsyncState"></param>
public void GetList(AsyncCBHandler AsyncDelegate, object AsyncState)
{
DirectoryInfo dinfo = new DirectoryInfo(@"profile");
List<string> filenames = new List<string>();
if (dinfo.Exists)
{
foreach (FileInfo info in dinfo.GetFiles())
{
if (Path.GetExtension(info.Name) == ".xml")
{
filenames.Add(Path.GetFileNameWithoutExtension(info.Name));
}
}
}
AsyncDelegate(AsyncState, filenames);
}
/// <summary>
/// 删除指定产品
/// </summary>
/// <param name="productname"></param>
public void Del(string productname)
{
string path = @"profile\" + productname + ".xml";
if (System.IO.File.Exists(path))
System.IO.File.Delete(path);
}
/// <summary>
/// 读取指定产品,返回类型为 ProfileParam
/// </summary>
/// <param name="productname"></param>
/// <param name="AsyncDelegate"></param>
/// <param name="AsyncState"></param>
public void Read(string productname, AsyncCBHandler AsyncDelegate, object AsyncState)
{
BlowingFixProfile p = new BlowingFixProfile();
p.Load(@"profile\" + productname + ".xml");
AsyncDelegate(AsyncState, p.Param);
}
}
}