INT_PT002/INT_PT002/Controls/Log/ControlMenuLogAlarm.cs

280 lines
9.4 KiB
C#

using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Collections.ObjectModel;
using INT_PT002.Forms;
using INT_PT002.DataStore;
using INT_PT002.DialogForms;
namespace INT_PT002.Controls
{
public partial class ControlMenuLogAlarm : UserControl
{
#region Field
private string SelectedNodeFullPath;
private int ListBoxCount;
private FormMenu m_ParentForm;
private Define.E_DataType CurrentDataType;
private List<DataBackupYear> ListAlarmFile;
private Collection<SmartX.SmartListBox> CollectionListBox;
#endregion
#region Constructor
public ControlMenuLogAlarm(FormMenu parent)
{
InitializeComponent();
this.ParentForm = parent;
this.Initialize();
this.DefaultSetting();
}
#endregion
#region Property
public FormMenu ParentForm
{
get { return this.m_ParentForm; }
private set { this.m_ParentForm = value; }
}
#endregion
#region Method
private void Initialize()
{
this.smartGroupBox1.Text = "Log > Alarm";
}
private void DefaultSetting()
{
this.CurrentDataType = Define.E_DataType.Alarm;
this.ListBoxCount = 0;
this.ListAlarmFile = new List<DataBackupYear>();
this.CollectionListBox = new Collection<SmartX.SmartListBox>();
this.CollectionListBox.Clear();
this.CollectionListBox.Add(this.listBoxTime);
this.CollectionListBox.Add(this.listBoxLoginID);
this.CollectionListBox.Add(this.listBoxEvent);
this.CollectionListBox.Add(this.listBoxDetail);
}
public void LoadFile(string fullFilePath)
{
if (fullFilePath.Contains("_Alarm") == false)
return;
this.smartFile1.FilePathName = fullFilePath;
this.smartFile1.Open();
this.smartFile1.StringType.EncodingType = SmartX.SmartFile.Encodings.ANSI;
try
{
this.smartFile1.StringType.FillBuffer();
long lineNum = this.smartFile1.StringType.GetCount();
this.ListBoxCount = (int)lineNum;
for (int i = 1; i < lineNum; i++)
{
this.UpdateListBoxDataDisplay(this.smartFile1.StringType.ReadBuffer(i));
}
}
catch
{
DialogFormMessage myMsg = new DialogFormMessage(16, this.ParentForm.ParentForm.SystemConfig.LANGUAGE);
myMsg.ShowDialog();
this.smartFile1.Close();
}
this.smartFile1.Close();
}
private void UpdateListBoxCount()
{
this.labelTotalIndex.Text = (this.ListBoxCount - 1).ToString();
if (this.ListBoxCount - 1 - this.listBoxTime.ViewRemainCount < 0)
this.labelRemainIndex.Text = "0";
else
this.labelRemainIndex.Text = (this.ListBoxCount - 1 - this.listBoxTime.ViewRemainCount).ToString();
}
private void UpdateListBoxDataDisplay(string data)
{
if (data.Contains(",") == false)
return;
string[] sb = data.Split(',');
// Date-생략, Time, LoginID, Event, Detail
for (int i = 0; i < this.CollectionListBox.Count; i++)
this.CollectionListBox[i].AddItem(sb[i + 1]);
}
private void UpdateDisplayFile()
{
int fileCount = 0;
//TreeNode node;
List<string> years = new List<string>();
List<string> months = new List<string>();
List<string> days = new List<string>();
this.treeView.Nodes.Clear();
this.ListAlarmFile.Clear();
DirectoryInfo dir = new DirectoryInfo(this.ParentForm.ParentForm.PathDataAlarmFolder);
List<string> fileNames = new List<string>();
// 폴더 체크
if (dir.Exists == false)
dir.Create();
// year 폴더 가져오기
DirectoryInfo[] yearDirectorys = dir.GetDirectories();
// year 폴더 정렬
years = this.ParentForm.DirectorySort(yearDirectorys);
// Alarm File 리스트 생성
if (years.Count != 0)
{
// Year
foreach (string year in years)
{
DataBackupYear y = new DataBackupYear(year);
DirectoryInfo monthDir = new DirectoryInfo(string.Format("{0}{1}", this.ParentForm.ParentForm.PathDataAlarmFolder, year));
DirectoryInfo[] monthDirectorys = monthDir.GetDirectories();
months = this.ParentForm.DirectorySort(monthDirectorys);
if (months.Count != 0)
{
// Month
foreach (string month in months)
{
DirectoryInfo dayDir = new DirectoryInfo(string.Format("{0}{1}\\{2}", this.ParentForm.ParentForm.PathDataAlarmFolder, year, month));
FileInfo[] dayFiles = dayDir.GetFiles();
days = this.DayAlarmDirectorySort(dayFiles);
DataBackupMonth m = new DataBackupMonth(month);
m.Days = days;
y.Months.Add(m);
}
this.ListAlarmFile.Add(y);
}
else
{
this.ListAlarmFile.Add(y);
}
}
// node 생성
for (int i = 0; i < this.ListAlarmFile.Count; i++)
{
TreeNode node = new TreeNode(this.ListAlarmFile[i].Year);
for (int j = 0; j < this.ListAlarmFile[i].Months.Count; j++)
{
TreeNode nodeMonth = new TreeNode(this.ListAlarmFile[i].Months[j].Month);
for (int k = 0; k < this.ListAlarmFile[i].Months[j].Days.Count; k++)
{
nodeMonth.Nodes.Add(this.ListAlarmFile[i].Months[j].Days[k]);
fileCount++;
}
node.Nodes.Add(nodeMonth);
}
this.treeView.Nodes.Add(node);
}
}
this.labelCount.Text = fileCount.ToString();
}
private List<string> DayAlarmDirectorySort(FileInfo[] files)
{
List<string> listFile = new List<string>();
Dictionary<string, int> dirNames = new Dictionary<string, int>();
Dictionary<string, int> dirNamesSort = new Dictionary<string, int>();
#region File List 날짜 순서대로 정렬
foreach (FileInfo file in files)
dirNames.Add(file.Name, int.Parse(file.Name.Substring(0, 8)));
var vrList = dirNames.Keys.ToList();
vrList.Sort();
foreach (var v in vrList)
dirNamesSort.Add(v, dirNames[v]);
foreach (var v in dirNamesSort)
listFile.Add(v.Key);
#endregion
return listFile;
}
public void DisplayRefresh()
{
this.ParentForm.ParentForm.CurrentSystemStatus.CurrentDisplayMode = Define.E_DisplayModeStore.LogAlarm;
this.ParentForm.ParentForm.SetDisplayMode(Define.E_EquipmentMode.Menu);
this.UpdateDisplayFile();
this.treeView.ExpandAll();
this.labelRemainIndex.Text = "0";
this.labelTotalIndex.Text = "0";
if (int.Parse(this.labelCount.Text) == 0)
{
DialogFormMessage msg = new DialogFormMessage(36, this.ParentForm.ParentForm.SystemConfig.LANGUAGE);
msg.ShowDialog();
return;
}
}
#endregion
#region Event Handler
private void treeViewLogAlarm_AfterSelect(object sender, TreeViewEventArgs e)
{
this.labelFileName.Text = e.Node.Text;
this.SelectedNodeFullPath = this.treeView.SelectedNode.FullPath;
for (int i = 0; i < this.CollectionListBox.Count; i++)
this.CollectionListBox[i].ClearAll();
this.LoadFile(this.ParentForm.ParentForm.PathDataAlarmFolder + this.treeView.SelectedNode.FullPath);
this.UpdateListBoxCount();
}
private void buttonBackup_Click(object sender, EventArgs e)
{
if (this.labelFileName.Text == "")
return;
this.ParentForm.FileCopy(Define.E_DataType.Alarm, this.SelectedNodeFullPath);
}
private void buttonUp_Click(object sender, EventArgs e)
{
for (int i = 0; i < this.CollectionListBox.Count; i++)
this.CollectionListBox[i].ScrollUp();
this.UpdateListBoxCount();
}
private void buttonDown_Click(object sender, EventArgs e)
{
for (int i = 0; i < this.CollectionListBox.Count; i++)
this.CollectionListBox[i].ScrollDown();
this.UpdateListBoxCount();
}
#endregion
}
}