Вы находитесь на странице: 1из 16

private void CreateFiles(System.IO.

FileInfo file, string OMCID)


{
lblProcessing.Text = file.FullName;
if (file.Name.StartsWith("RMFS", StringComparison.OrdinalIgnoreCase)
)
{
WriteRMFSFile(file, OMCID);
}
else if (file.Name.StartsWith("R110", StringComparison.OrdinalIgnore
Case))
{
WriteR110File(file, OMCID);
}
else if (file.Name.StartsWith("R019", StringComparison.OrdinalIgnore
Case))
{
WriteR019File(file, OMCID);
}

}
private void WriteRMFSFile(System.IO.FileInfo file, string OMCID)
{
string lineRead;
bool found = false;
bool MoveHeader = false;
bool DataWritten = false;
string StartTime = "";
StreamWriter sw;
string RMFSCombinedPath = "";
string StartDate = "";
string FCheck = "";
string BSC = "";
if (file.FullName.ToLower().Contains("c2_swap") || file.FullName.ToL
ower().Contains("c2") || file.FullName.ToLower().Contains("c3") || file.FullName
.ToLower().Contains("c1") || file.FullName.ToLower().Contains("south"))
//if (file.FullName.ToLower().Contains("c2_swap") || file.FullNa
me.ToLower().Contains("c2"))
RMFSCombinedPath = rootDir.FullName + "\\GPRSB10.txt";
else
RMFSCombinedPath = rootDir.FullName + "\\GPRS.txt";
if (!File.Exists(RMFSCombinedPath))
{
MoveHeader = true;
}
else
{
MoveHeader = false;
}
sw = new StreamWriter(RMFSCombinedPath, true);
StreamReader sr = new StreamReader(file.FullName);
while (!sr.EndOfStream)
{
lineRead = sr.ReadLine().Trim();
if (lineRead.StartsWith("Measurement begin date and time", Strin
gComparison.OrdinalIgnoreCase))
{
StartTime = lineRead.Substring(lineRead.IndexOf(':') + 1).Tr
im();
string[] SpiltDateTime = StartTime.Split(' ');
StartDate = SpiltDateTime[0];
StartTime = SpiltDateTime[1];
}
else if (lineRead.StartsWith("Output file name"))
{
string[] GetNameSpilt = lineRead.Split('/');
FCheck = GetNameSpilt[GetNameSpilt.Length - 1];
BSC = GetNameSpilt[GetNameSpilt.Length - 3];
}
//else if (lineRead.StartsWith("Number of the MFS", StringCompar
ison.OrdinalIgnoreCase))
//{
// BSC = "mfs" + lineRead.Substring(lineRead.IndexOf(':') + 1
).Trim();
//}
if (found && lineRead.Trim().Equals(string.Empty))
break;
if (!found)
{
if (lineRead.StartsWith("BSS\tFABRIC\tBTS\tCI\tLAC\tP10\tP10
0c\tP100d\tP100e\tP105c", StringComparison.OrdinalIgnoreCase)
|| lineRead.StartsWith("BSS FABRIC\tBTS\tCI\tLAC\tMC
C\tMNC\tBS_PBCCH_BLKS\tBS_PRACH_BLKS\tCSSF\tDSF\tMAX_PDCH\tMIN_PDCH\tP10\tP100C\
tP100D\tP100E\tP105C\tP105D\tP105E\tP105F\tP105G\tP105H\tP105I", StringCompariso
n.OrdinalIgnoreCase))
{
found = true;
if (MoveHeader)
{
lineRead = "FCheck\tBSC\tDate\tTime\t" + lineRead;
sw.WriteLine(lineRead);
DataWritten = true;
}
}
}
else
{
lineRead = lineRead.Replace("?", "0");
lineRead = FCheck + "\t" + BSC + "\t" + StartDate + "\t" + S
tartTime + "\t" + lineRead;
sw.WriteLine(lineRead);
DataWritten = true;
}

Application.DoEvents();
}
sw.Close();
if (!DataWritten)
{
string[] lines = File.ReadAllLines(RMFSCombinedPath);
if (lines.Length == 0)
File.Delete(RMFSCombinedPath);
}
WriteGPRSCountFile(file, OMCID);
WriteGPRSCount2File(file, OMCID);
WriteGPRSCount3File(file, OMCID);

}
private void WriteGPRSCountFile(System.IO.FileInfo file, string OMCID)
{
string lineRead;
bool found = false;
bool MoveHeader = false;
bool DataWritten = false;
string StartTime = "";
StreamWriter sw;
string RMFSCombinedPath = "";
string StartDate = "";
string FCheck = "";
string BSC = "";
if (file.FullName.ToLower().Contains("c2_swap") || file.FullName.ToL
ower().Contains("c2") || file.FullName.ToLower().Contains("c3") || file.FullName
.ToLower().Contains("c1") || file.FullName.ToLower().Contains("south"))
return; //
else
RMFSCombinedPath = rootDir.FullName + "\\GPRS_Cont.txt";
if (!File.Exists(RMFSCombinedPath))
{
MoveHeader = true;
}
else
{
MoveHeader = false;
}
sw = new StreamWriter(RMFSCombinedPath, true);
StreamReader sr = new StreamReader(file.FullName);
while (!sr.EndOfStream)
{
lineRead = sr.ReadLine().Trim();
if (lineRead.StartsWith("Measurement begin date and time", Strin
gComparison.OrdinalIgnoreCase))
{
StartTime = lineRead.Substring(lineRead.IndexOf(':') + 1).Tr
im();
string[] SpiltDateTime = StartTime.Split(' ');
StartDate = SpiltDateTime[0];
StartTime = SpiltDateTime[1];
}
else if (lineRead.StartsWith("Output file name"))
{
string[] GetNameSpilt = lineRead.Split('/');
FCheck = GetNameSpilt[GetNameSpilt.Length - 1];
BSC = GetNameSpilt[GetNameSpilt.Length - 3];
}
//else if (lineRead.StartsWith("Number of the MFS", StringCompar
ison.OrdinalIgnoreCase))
//{
// BSC = "mfs" + lineRead.Substring(lineRead.IndexOf(':') + 1
).Trim();
//}
if (found && lineRead.Trim().Equals(string.Empty))
break;
if (!found)
{
if (lineRead.StartsWith("BSS\tFABRIC\tCI\tLAC\tP453a_1\tP453
a_10\tP453a_2\tP453a_3\tP453a_4\tP453a_5\tP453a_6\tP453a_7\tP453a_8\tP453a_9", S
tringComparison.OrdinalIgnoreCase))
{
found = true;
if (MoveHeader)
{
lineRead = "FCheck\t" + lineRead;
sw.WriteLine(lineRead);
DataWritten = true;
}
}
}
else
{
lineRead = lineRead.Replace("?", "0");
lineRead = FCheck + "\t" + lineRead;
sw.WriteLine(lineRead);
DataWritten = true;
}

Application.DoEvents();
}
sw.Close();

if (!DataWritten)
{
string[] lines = File.ReadAllLines(RMFSCombinedPath);
if (lines.Length == 0)
File.Delete(RMFSCombinedPath);
}

}
private void WriteGPRSCount2File(System.IO.FileInfo file, string OMCID)
{
string lineRead;
bool found = false;
bool MoveHeader = false;
bool DataWritten = false;
string StartTime = "";
StreamWriter sw;
string RMFSCombinedPath = "";
string StartDate = "";
string FCheck = "";
string BSC = "";
if (file.FullName.ToLower().Contains("c2_swap") || file.FullName.ToL
ower().Contains("c2") || file.FullName.ToLower().Contains("c3") || file.FullName
.ToLower().Contains("c1") || file.FullName.ToLower().Contains("south"))
RMFSCombinedPath = rootDir.FullName + "\\GPRS_Cont2_B10.txt";
else
RMFSCombinedPath = rootDir.FullName + "\\GPRS_Cont2.txt";
if (!File.Exists(RMFSCombinedPath))
{
MoveHeader = true;
}
else
{
MoveHeader = false;
}
sw = new StreamWriter(RMFSCombinedPath, true);
StreamReader sr = new StreamReader(file.FullName);
while (!sr.EndOfStream)
{
lineRead = sr.ReadLine().Trim();
if (lineRead.StartsWith("Measurement begin date and time", Strin
gComparison.OrdinalIgnoreCase))
{
StartTime = lineRead.Substring(lineRead.IndexOf(':') + 1).Tr
im();
string[] SpiltDateTime = StartTime.Split(' ');
StartDate = SpiltDateTime[0];
StartTime = SpiltDateTime[1];
}
else if (lineRead.StartsWith("Output file name"))
{
string[] GetNameSpilt = lineRead.Split('/');
FCheck = GetNameSpilt[GetNameSpilt.Length - 1];
BSC = GetNameSpilt[GetNameSpilt.Length - 3];
}
//else if (lineRead.StartsWith("Number of the MFS", StringCompar
ison.OrdinalIgnoreCase))
//{
// BSC = "mfs" + lineRead.Substring(lineRead.IndexOf(':') + 1
).Trim();
//}
if (found && lineRead.Trim().Equals(string.Empty))
break;
if (!found)
{
if (lineRead.StartsWith("BSS\tFABRIC\tBTS\tP472\tP484", Stri
ngComparison.OrdinalIgnoreCase)
|| lineRead.StartsWith("BSS\tFABRIC\tBTS\tBTS_NB_EXTRA_A
BIS_TS\tP472\tP484", StringComparison.OrdinalIgnoreCase))
{
found = true;
if (MoveHeader)
{
lineRead = "FCheck\t" + lineRead;
sw.WriteLine(lineRead);
DataWritten = true;
}
}
}
else
{
lineRead = lineRead.Replace("?", "0");
lineRead = FCheck + "\t" + lineRead;
sw.WriteLine(lineRead);
DataWritten = true;
}

Application.DoEvents();
}
sw.Close();

if (!DataWritten)
{
string[] lines = File.ReadAllLines(RMFSCombinedPath);
if (lines.Length == 0)
File.Delete(RMFSCombinedPath);
}

}
private void WriteGPRSCount3File(System.IO.FileInfo file, string OMCID)
{
string lineRead;
bool found = false;
bool MoveHeader = false;
bool DataWritten = false;
string StartTime = "";
StreamWriter sw;
string RMFSCombinedPath = "";
string StartDate = "";
string FCheck = "";
string BSC = "";
StreamReader sr = new StreamReader(file.FullName);
if (file.FullName.ToLower().Contains("c2_swap") || file.FullName.ToL
ower().Contains("c2") || file.FullName.ToLower().Contains("c3") || file.FullName
.ToLower().Contains("c1") || file.FullName.ToLower().Contains("south"))
{
string RMFSfile = sr.ReadToEnd();
if (RMFSfile.Contains("BSS FABRIC GCSF P100F P101
P103 P104 P106 P107 P201 P202 P383A P383B P384 P391A
P391B P392A P392B P402 P450A P450B P450C P474 P486 P487
P76A P77A"))
RMFSCombinedPath = rootDir.FullName + "\\GPRS_Cont3_B10.txt"
;
else
RMFSCombinedPath = rootDir.FullName + "\\GPRS_Cont3_B10_1.tx
t";
}
else
{
RMFSCombinedPath = rootDir.FullName + "\\GPRS_Cont3.txt";
}
if (!File.Exists(RMFSCombinedPath))
{
MoveHeader = true;
}
else
{
MoveHeader = false;
}
sr = new StreamReader(file.FullName);
sw = new StreamWriter(RMFSCombinedPath, true);
while (!sr.EndOfStream)
{
lineRead = sr.ReadLine().Trim();
if (lineRead.StartsWith("Measurement begin date and time", Strin
gComparison.OrdinalIgnoreCase))
{
StartTime = lineRead.Substring(lineRead.IndexOf(':') + 1).Tr
im();
string[] SpiltDateTime = StartTime.Split(' ');
StartDate = SpiltDateTime[0];
StartTime = SpiltDateTime[1];
}
else if (lineRead.StartsWith("Output file name"))
{
string[] GetNameSpilt = lineRead.Split('/');
FCheck = GetNameSpilt[GetNameSpilt.Length - 1];
BSC = GetNameSpilt[GetNameSpilt.Length - 3];
}
//else if (lineRead.StartsWith("Number of the MFS", StringCompar
ison.OrdinalIgnoreCase))
//{
// BSC = "mfs" + lineRead.Substring(lineRead.IndexOf(':') + 1
).Trim();
//}
if (found && lineRead.Trim().Equals(string.Empty))
break;
if (!found)
{
if (lineRead.StartsWith("BSS\tFABRIC\tP100f\tP101\tP103\tP10
4\tP106\tP107\tP201\tP202\tP383a\tP383b\tP384\tP391a", StringComparison.OrdinalI
gnoreCase)
|| lineRead.StartsWith("BSS\tFABRIC\tGCSF\tP100F\tP101\t
P103\tP104\tP106\tP107\tP201\tP202\tP383A", StringComparison.OrdinalIgnoreCase))
{
found = true;
if (MoveHeader)
{
lineRead = "FCheck\t" + lineRead;
sw.WriteLine(lineRead);
DataWritten = true;
}
}
}
else
{
lineRead = lineRead.Replace("?", "0");
lineRead = FCheck + "\t" + lineRead;
sw.WriteLine(lineRead);
DataWritten = true;
}

Application.DoEvents();
}
sw.Close();

if (!DataWritten)
{
string[] lines = File.ReadAllLines(RMFSCombinedPath);
if (lines.Length == 0)
File.Delete(RMFSCombinedPath);
}

}
private void WriteR019File(System.IO.FileInfo file, string OMCID)
{
string lineRead;
bool found = false;
bool MoveHeader = false;
bool DataWritten = false;
string StartTime = "";
string EndTime = "";
string BSC = "";
string StartDate = "";
StreamWriter sw;
string R019CombinedPath = "";
StreamReader sr = new StreamReader(file.FullName);
lineRead = sr.ReadLine();
//if (file.FullName.ToLower().Contains("c2_swap") && IsB10BSC(file.F
ullName))
if (lineRead.Contains("10"))//check if BSC on B9 OR B10
R019CombinedPath = rootDir.FullName + "\\CELL_Cont_B10.txt";
else
R019CombinedPath = rootDir.FullName + "\\CELL_Cont_B9.txt";

if (!File.Exists(R019CombinedPath))
{
MoveHeader = true;
}
else
{
MoveHeader = false;
}
sw = new StreamWriter(R019CombinedPath, true);
while (!sr.EndOfStream)
{
lineRead = sr.ReadLine().Trim();
if (lineRead.StartsWith("Measurement begin date and time", Strin
gComparison.OrdinalIgnoreCase))
{
StartTime = lineRead.Substring(lineRead.IndexOf(':') + 1).Tr
im();
string[] SpiltDateTime = StartTime.Split(' ');
StartDate = SpiltDateTime[0];
StartTime = SpiltDateTime[1];
}
//else if (lineRead.StartsWith("Input file name", StringComparis
on.OrdinalIgnoreCase))
//{
// OMCID = lineRead.Substring(lineRead.IndexOf("alcomc"), 7).
Trim();
//}
else if (lineRead.StartsWith("Name of BSC", StringComparison.Ord
inalIgnoreCase))
{
BSC = lineRead.Substring(lineRead.IndexOf(':') + 1).Trim();
}

if (found && lineRead.Trim().Equals(string.Empty))


break;
if (!found)
{
if (lineRead.StartsWith("BTS_INDEX\tBTS_SECTOR\tCELL_NAME\tC
ELL_CI\tCELL_LAC\t", StringComparison.OrdinalIgnoreCase))
{
found = true;

if (MoveHeader)
{
lineRead = "OMC Name\tBSC Name\tDATE\tTIME\t" + line
Read;
sw.WriteLine(lineRead);
DataWritten = true;
}
}
}
else
{
lineRead = lineRead.Replace("?", "0");
lineRead = OMCID + "\t" + BSC + "\t" + StartDate + "\t" + St
artTime + "\t" + lineRead;
sw.WriteLine(lineRead);
DataWritten = true;
}

Application.DoEvents();
}
sw.Close();
if (!DataWritten)
{
string[] lines = File.ReadAllLines(R019CombinedPath);
if (lines.Length == 0)
File.Delete(R019CombinedPath);
}

}
private void WriteR110File(System.IO.FileInfo file, string OMCID)
{
string lineRead;
bool found = false;
bool MoveHeader = false;
bool DataWritten = false;
string StartTime = "";
string EndTime = "";
string BSC = "";
string StartDate = "";

StreamWriter sw;
string R110CombinedPath = "";
StreamReader sr = new StreamReader(file.FullName);
lineRead = sr.ReadLine();
//if (file.FullName.ToLower().Contains("c2_swap") && IsB10BSC(file.F
ullName))
if (lineRead.Contains("10"))//check if BSC on B9 OR B10
R110CombinedPath = rootDir.FullName + "\\Cell_B10.txt";
else
R110CombinedPath = rootDir.FullName + "\\Cell_B9.txt";
if (!File.Exists(R110CombinedPath))
{
MoveHeader = true;
}
else
{
MoveHeader = false;
}

sw = new StreamWriter(R110CombinedPath, true);


//sr = new StreamReader(file.FullName);
while (!sr.EndOfStream)
{
lineRead = sr.ReadLine().Trim();
if (lineRead.StartsWith("Measurement begin date and time", Strin
gComparison.OrdinalIgnoreCase))
{
StartTime = lineRead.Substring(lineRead.IndexOf(':') + 1).Tr
im();
string[] SpiltDateTime = StartTime.Split(' ');
StartDate = SpiltDateTime[0];
StartTime = SpiltDateTime[1];
}
//else if (lineRead.StartsWith("Input file name", StringComparis
on.OrdinalIgnoreCase))
//{
// OMCID = lineRead.Substring(lineRead.IndexOf("alcomc"), 7).
Trim();
//}
else if (lineRead.StartsWith("Name of BSC", StringComparison.Ord
inalIgnoreCase))
{
BSC = lineRead.Substring(lineRead.IndexOf(':') + 1).Trim();
}

if (found && lineRead.Trim().Equals(string.Empty))


break;
if (!found)
{

if (lineRead.StartsWith("BTS_INDEX\tBTS_SECTOR\tCELL_NAME\tC
ELL_CI\tCELL_LAC\tMC01\tMC02", StringComparison.OrdinalIgnoreCase)
|| lineRead.StartsWith("BTS_INDEX\tBTS_SECTOR\tCELL_NAME
\tCELL_CI\tCELL_LAC\tBSC_MCC\tBSC_MNC\tMC01\tMC02", StringComparison.OrdinalIgno
reCase))
{
found = true;
if (MoveHeader)
{
lineRead = "OMC Name\tBSC Name\tDATE\tTIME\t" + line
Read;
sw.WriteLine(lineRead);
DataWritten = true;
}
}
}
else
{
lineRead = lineRead.Replace("?", "0");
lineRead = OMCID + "\t" + BSC + "\t" + StartDate + "\t" + St
artTime + "\t" + lineRead;
sw.WriteLine(lineRead);
DataWritten = true;
}

Application.DoEvents();
}
sw.Close();
if (!DataWritten)
{
string[] lines = File.ReadAllLines(R110CombinedPath);
if (lines.Length == 0)
File.Delete(R110CombinedPath);
}
WriteTRXFile(file, OMCID);
}
private void WriteTRXFile(System.IO.FileInfo file, string OMCID)
{
string lineRead;
bool found = false;
bool MoveHeader = false;
bool DataWritten = false;
string StartTime = "";
string EndTime = "";
string BSC = "";
string StartDate = "";

StreamWriter sw;
string R110CombinedPath = "";

StreamReader sr = new StreamReader(file.FullName);


lineRead = sr.ReadLine();
if (lineRead.Contains("10"))//check if BSC on B9 OR B10
R110CombinedPath = rootDir.FullName + "\\CARRIER_B10.txt";
else
R110CombinedPath = rootDir.FullName + "\\CARRIER_B9.txt";
//if (file.FullName.ToLower().Contains("c2_swap") && IsB10BSC(file.F
ullName))

//if (file.FullName.ToLower().Contains("c2_swap") && IsB10BSC(file.F


ullName))
// R110CombinedPath = rootDir.FullName + "\\CARRIER_B10.txt";
//else
// R110CombinedPath = rootDir.FullName + "\\CARRIER_B9.txt";
if (!File.Exists(R110CombinedPath))
{
//sw = new StreamWriter(R110CombinedPath);
MoveHeader = true;
}
else
{
//sw = new StreamWriter(R110CombinedPath, true);
MoveHeader = false;
//string[] lines = File.ReadAllLines(R110CombinedPath);
//if (lines.Length == 0)
// MoveHeader = true;
}

sw = new StreamWriter(R110CombinedPath, true);


//StreamReader sr = new StreamReader(file.FullName);
while (!sr.EndOfStream)
{
lineRead = sr.ReadLine().Trim();
if (lineRead.StartsWith("Measurement begin date and time", Strin
gComparison.OrdinalIgnoreCase))
{
StartTime = lineRead.Substring(lineRead.IndexOf(':') + 1).Tr
im();
string[] SpiltDateTime = StartTime.Split(' ');
StartDate = SpiltDateTime[0];
StartTime = SpiltDateTime[1];
}
//else if (lineRead.StartsWith("Input file name", StringComparis
on.OrdinalIgnoreCase))
//{
// OMCID = lineRead.Substring(lineRead.IndexOf("alcomc"), 7).
Trim();
//}
else if (lineRead.StartsWith("Name of BSC", StringComparison.Ord
inalIgnoreCase))
{
BSC = lineRead.Substring(lineRead.IndexOf(':') + 1).Trim();
}

if (found && lineRead.Trim().Equals(string.Empty))


break;
if (!found)
{

if (lineRead.StartsWith("BTS_INDEX\tBTS_SECTOR\tCELL_NAME\tC
ELL_CI\tCELL_LAC\tTRXID\tMC370A\tMC370B\tMC380A\tMC380B\tMC380C\tMC380D", String
Comparison.OrdinalIgnoreCase)
|| lineRead.StartsWith("BTS_INDEX\tBTS_SECTOR\tCELL_NAME
\tCELL_CI\tCELL_LAC\tBSC_MCC\tBSC_MNC\tTRXID\tMC370A", StringComparison.OrdinalI
gnoreCase))
{
found = true;
if (MoveHeader)
{
lineRead = "OMC Name\tBSC Name\tDATE\tTIME\t" + line
Read;
sw.WriteLine(lineRead);
DataWritten = true;
}
}
}
else
{
lineRead = lineRead.Replace("?", "0");
lineRead = OMCID + "\t" + BSC + "\t" + StartDate + "\t" + St
artTime + "\t" + lineRead;
sw.WriteLine(lineRead);
DataWritten = true;
}

Application.DoEvents();
}
sw.Close();
if (!DataWritten)
{
string[] lines = File.ReadAllLines(R110CombinedPath);
if (lines.Length == 0)
File.Delete(R110CombinedPath);
}
}
private bool IsB10BSC(string file)
{
bool isTrue = false;
if (file.Contains("FSD701E") || file.Contains("FSD704E") || file.Con
tains("FSD812E") || file.Contains("FSD713E")
|| file.Contains("FSD706E") || file.Contains("FSD811E"))
isTrue = true;
return isTrue;
}
private string CellB10()
{
return "OMC Name BSC Name DATE TIME BTS_INDEX
BTS_SECTOR CELL_NAME CELL_CI CELL_LAC BSC_MCC BSC_MNC MC01
MC02 MC02A MC02B MC02C MC02D MC02E MC02F MC02G MC02H MC02I
MC03 MC04 MC07 MC10 MC101 MC1040 MC1044 MC1050 MC137 MC138
MC13A MC13B MC140A MC140B MC141 MC142E MC142F MC144E MC144F MC147
MC148 MC149 MC14A MC14C MC151 MC153 MC15A MC15B MC161 MC162
MC170 MC191 MC196 MC197 MC24 MC250 MC26 MC27 MC28A MC29A
MC31 MC320A MC320B MC320C MC320D MC320E MC34 MC370A MC370B MC380A
MC380B MC380C MC380D MC380E MC380F MC381 MC390 MC400 MC41B MC448A
MC448B MC449 MC460A MC461 MC462A MC462B MC462C MC463A MC463B MC463C
MC480 MC481 MC541 MC541A MC551 MC555 MC561 MC586A MC586B MC586C
MC607 MC612A MC612B MC612C MC612D MC621 MC642 MC643 MC645A MC646
MC647 MC648 MC650 MC652 MC653 MC655A MC656 MC657 MC658 MC660
MC662 MC663 MC667 MC670 MC671 MC672 MC673 MC674 MC675 MC676
MC677 MC678 MC679 MC701A MC701B MC701C MC701D MC701E MC701F MC701G
MC702A MC702B MC702C MC703 MC704A MC704B MC705 MC706 MC710 MC711
MC712 MC713 MC714 MC717A MC717B MC718 MC736 MC739 MC746B MC785A
MC785D MC785E MC785F MC800 MC801A MC801B MC802A MC802B MC803 MC804A
MC804B MC805A MC805B MC81 MC812 MC820 MC821 MC830 MC831 MC850
MC870 MC871 MC8A MC8B MC8C MC8D MC901 MC902 MC903 MC91
MC921A MC921B MC921C MC921D MC921E MC922A MC922B MC922C MC922D MC922E
MC922F MC922G MC922H MC923A MC923B MC923C MC923D MC924A MC924B MC924C
MC924D MC924E MC924F MC924G MC924H MC924I MC924J MC924K MC925A MC925B
MC925C MC925D MC925E MC925F MC925G MC925H MC927A MC927B MC927C MC927D
MC927E MC927F MC928A MC928B MC928C MC928D MC928E MC928F MC928G MC928H
MC928I MC930 MC931 MC932 MC933 MC934 MC935 MC936 MC937 MC938
MC939 MC950 MC951 MC952 MC953 MC954 MC955 MC956 MC957 MC958
MC959 MC960 MC961 MC962 MC963 MC964 MC965 MC966 MC967 MC968
MC969 MC970 MC971 MC972 MC973 MC974";
}
private string CellContB10()
{
return "OMC Name BSC Name DATE TIME BTS_INDEX
BTS_SECTOR CELL_NAME CELL_CI CELL_LAC BSC_MCC BSC_MNC C190
C191 C192 C193 C194A C194B C194C C195";
}
private string CarrierB10()
{
return "OMC Name BSC Name DATE TIME BTS_INDEX
BTS_SECTOR CELL_NAME CELL_CI CELL_LAC BSC_MCC BSC_MNC TRXID
MC370A MC370B MC380A MC380B MC380C MC380D MC380E MC380F MC381 MC390
MC400 MC621 MC703 MC710 MC711 MC712 MC713 MC714 MC717A MC717B
MC718 MC736 MC739 MC746B";
}
private string GPRS_Cont3_B10_1()
{
return "FCheck BSS FABRIC GCSF P100F P101 P103
P104 P106 P107 P201 P202 P383A P383B P384 P391A P391B
P392A P392B P402 P450A P450B P450C P450D P450E P474 P486
P487 P500 P530A_1 P530A_2 P530A_3 P530A_4 P530A_5 P530B_5 P594 P76A
P77A";
}

Вам также может понравиться