-
Notifications
You must be signed in to change notification settings - Fork 936
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #144 from ruiminwang/TelcoGeneratorCore
add TelcoGeneratorCore project
- Loading branch information
Showing
7 changed files
with
730 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 16 | ||
VisualStudioVersion = 16.0.32602.290 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TelcoGeneratorCore", "TelcoGeneratorCore\TelcoGeneratorCore.csproj", "{57B6140A-E68A-4BEB-93CD-E4184EA46F9D}" | ||
EndProject | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TwitterClientCore", "TwitterClientCore\TwitterClientCore.csproj", "{4B42D4AE-A957-4BC5-B8D0-381F772CFBAB}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{57B6140A-E68A-4BEB-93CD-E4184EA46F9D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{57B6140A-E68A-4BEB-93CD-E4184EA46F9D}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{57B6140A-E68A-4BEB-93CD-E4184EA46F9D}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{57B6140A-E68A-4BEB-93CD-E4184EA46F9D}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{4B42D4AE-A957-4BC5-B8D0-381F772CFBAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{4B42D4AE-A957-4BC5-B8D0-381F772CFBAB}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{4B42D4AE-A957-4BC5-B8D0-381F772CFBAB}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{4B42D4AE-A957-4BC5-B8D0-381F772CFBAB}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {5CFD7572-EC31-45E4-91E1-316F3472DB63} | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<appSettings> | ||
<!-- Event Hub specific app setings for messaging connections --> | ||
<add key="EventHubName" value="***ENTER YOUR EVENT HUB NAME***"/> | ||
<add key="EventHubConnectionString" value="***ENTER YOUR KEY***"/> | ||
</appSettings> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,265 @@ | ||
//********************************************************* | ||
// | ||
// Copyright (c) Microsoft. All rights reserved. | ||
// This code is licensed under the Microsoft Public License. | ||
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF | ||
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY | ||
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR | ||
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. | ||
// | ||
//********************************************************* | ||
using System; | ||
using System.Collections; | ||
using System.Runtime.Serialization; | ||
using System.Text; | ||
|
||
namespace telcodatagen | ||
{ | ||
|
||
[DataContract] | ||
public class CDRrecord | ||
{ | ||
[DataMember] | ||
public String RecordType { get; set; } | ||
|
||
[DataMember] | ||
public String SystemIdentity { get; set; } | ||
|
||
[DataMember] | ||
public String FileNum { get; set; } | ||
|
||
[DataMember] | ||
public String SwitchNum { get; set; } | ||
|
||
|
||
[DataMember] | ||
public String CallingNum { get; set; } | ||
|
||
[DataMember] | ||
public String CallingIMSI { get; set; } | ||
|
||
[DataMember] | ||
public String CalledNum { get; set; } | ||
|
||
[DataMember] | ||
public String CalledIMSI { get; set; } | ||
|
||
[DataMember] | ||
public String DateS { get; set; } | ||
|
||
|
||
[DataMember] | ||
public String TimeS { get; set; } | ||
|
||
|
||
[DataMember] | ||
public int TimeType { get; set; } | ||
|
||
[DataMember] | ||
public int CallPeriod { get; set; } | ||
|
||
[DataMember] | ||
public String CallingCellID { get; set; } | ||
|
||
[DataMember] | ||
public String CalledCellID { get; set; } | ||
|
||
[DataMember] | ||
public String ServiceType { get; set; } | ||
|
||
[DataMember] | ||
public int Transfer { get; set; } | ||
|
||
[DataMember] | ||
public String IncomingTrunk { get; set; } | ||
|
||
[DataMember] | ||
public String OutgoingTrunk { get; set; } | ||
|
||
[DataMember] | ||
public String MSRN { get; set; } | ||
|
||
[DataMember] | ||
public String CalledNum2 { get; set; } | ||
|
||
[DataMember] | ||
public String FCIFlag { get; set; } | ||
|
||
[DataMember] | ||
public DateTime callrecTime { get; set; } | ||
|
||
|
||
|
||
|
||
static string[] columns = {"RecordType","SystemIdentity","FileNum","SwitchNum","CallingNum","CallingIMSI", | ||
"CalledNum","CalledIMSI","Date","Time","TimeType","CallPeriod","CallingCellID","CalledCellID", | ||
"ServiceType","Transfer","IMEI","EndType","IncomingTrunk","OutgoingTrunk","MSRN","CalledNum2","FCIFlag","DateTime"}; | ||
|
||
static string[] ServiceTypeList = { "a", "b", "S", "V" }; | ||
static string[] TimeTypeList = { "a", "d", "r", "s" }; | ||
static string[] EndTypeList = { "0", "3", "4" }; | ||
static string[] OutgoingTrunkList = { "F", "442", "623", "418", "425", "443", "426", "621", "614", "609", "419", "402", "411", "422", "420", "423", "421", "300", "400", "405", "409", "424" }; | ||
static string[] IMSIList = { "466923300507919", "466921602131264", "466923200348594", "466922002560205", "466922201102759", "466922702346260", "466920400352400", "466922202546859", "466923000886460", "466921302209862", "466923101048691", "466921200135361", "466922202613463", "466921402416657", "466921402237651", "466922202679249", "466923300236137", "466921602343040", "466920403025604", "262021390056324", "466920401237309", "466922000696024", "466923100098619", "466922702341485", "466922200432822", "466923000464324", "466923200779222", "466923100807296", "466923200408045" }; | ||
static string[] MSRNList = { "886932428687", "886932429021", "886932428306", "1415982715962", "886932429979", "1416916990491", "886937415371", "886932428876", "886932428688", "1412983121877", "886932429242", "1416955584542", "886932428258", "1412930064972", "886932429155", "886932423548", "1415980332015", "14290800303585", "14290800033338", "886932429626", "886932428112", "1417955696232", "1418986850453", "886932428927", "886932429827", "886932429507", "1416960750071", "886932428242", "886932428134", "886932429825", "" }; | ||
|
||
static Random coin = new Random(); | ||
Hashtable data; | ||
|
||
public CDRrecord() | ||
{ | ||
data = new Hashtable(); | ||
_init(); | ||
} | ||
|
||
public void _init() | ||
{ | ||
int idx = 0; | ||
// Initialize default values | ||
data.Add("SystemIdentity", "d0"); | ||
data.Add("RecordType", "MO"); | ||
this.SystemIdentity = "d0"; | ||
this.RecordType = "MO"; | ||
|
||
|
||
idx = coin.Next(0, TimeTypeList.Length); | ||
data.Add("TimeType", idx); | ||
this.TimeType = idx; | ||
|
||
idx = coin.Next(0, ServiceTypeList.Length); | ||
data.Add("ServiceType", ServiceTypeList[idx]); | ||
this.ServiceType = ServiceTypeList[idx]; | ||
|
||
idx = coin.Next(0, EndTypeList.Length); | ||
data.Add("EndType", EndTypeList[idx]); | ||
|
||
|
||
idx = coin.Next(0, OutgoingTrunkList.Length); | ||
data.Add("OutgoingTrunk", OutgoingTrunkList[idx]); | ||
this.OutgoingTrunk = OutgoingTrunkList[idx]; | ||
|
||
data.Add("Transfer", coin.Next(0, 2)); | ||
this.Transfer = coin.Next(0, 2); | ||
|
||
idx = coin.Next(0, IMSIList.Length); | ||
data.Add("CallingIMSI", IMSIList[idx]); | ||
this.CallingIMSI = IMSIList[idx]; | ||
|
||
idx = coin.Next(0, IMSIList.Length); | ||
data.Add("CalledIMSI", IMSIList[idx]); | ||
this.CalledIMSI = IMSIList[idx]; | ||
|
||
idx = coin.Next(0, MSRNList.Length); | ||
data.Add("MSRN", MSRNList[idx]); | ||
this.MSRN = MSRNList[idx]; | ||
} | ||
|
||
// set the data for the CDR record | ||
public void setData(string key, string value) | ||
{ | ||
if (data.ContainsKey(key)) | ||
data[key] = value; | ||
else | ||
data.Add(key, value); | ||
|
||
switch (key) | ||
{ | ||
case "RecordType": | ||
this.RecordType = value; | ||
break; | ||
case "SystemIdentity": | ||
this.SystemIdentity = value; | ||
break; | ||
case "FileNum": | ||
this.FileNum = value; | ||
break; | ||
case "SwitchNum": | ||
this.SwitchNum = value; | ||
break; | ||
case "CallingNum": | ||
this.CallingNum = value; | ||
break; | ||
case "CallingIMSI": | ||
this.CallingIMSI = value; | ||
break; | ||
case "CalledNum": | ||
this.CalledNum = value; | ||
break; | ||
case "CalledIMSI": | ||
this.CalledIMSI = value; | ||
break; | ||
case "Date": | ||
this.DateS = value; | ||
break; | ||
case "Time": | ||
break; | ||
this.TimeS = value; | ||
case "TimeType": | ||
this.TimeType = Int32.Parse(value); | ||
break; | ||
case "CallPeriod": | ||
this.CallPeriod = Int32.Parse(value); | ||
break; | ||
case "CallingCellID": | ||
this.CallingCellID = value; | ||
break; | ||
case "CalledCellID": | ||
this.CalledCellID = value; | ||
break; | ||
case "ServiceType": | ||
this.ServiceType = value; | ||
break; | ||
case "Transfer": | ||
this.Transfer = Int32.Parse(value); | ||
break; | ||
case "IncomingTrunk": | ||
this.IncomingTrunk = value; | ||
break; | ||
case "OutgoingTrunk": | ||
this.OutgoingTrunk = value; | ||
break; | ||
case "MSRN": | ||
this.MSRN = value; | ||
break; | ||
case "CalledNum2": | ||
this.CalledNum2 = value; | ||
break; | ||
case "FCIFlag": | ||
this.FCIFlag = value; | ||
break; | ||
case "DateTime": | ||
if (value.Length > 13) | ||
{ | ||
int hour = Int32.Parse(value.Substring(9, 2)); | ||
int min = Int32.Parse(value.Substring(11, 2)); | ||
int secs = Int32.Parse(value.Substring(13, 2)); | ||
|
||
int year = Int32.Parse(value.Substring(0, 4)); | ||
int month = Int32.Parse(value.Substring(4, 2)); | ||
int day = Int32.Parse(value.Substring(6, 2)); | ||
|
||
this.callrecTime = new DateTime(year, month, day, hour, min, secs).ToUniversalTime(); | ||
} | ||
|
||
break; | ||
} | ||
} | ||
|
||
override public String ToString() | ||
{ | ||
StringBuilder sb = new StringBuilder(); | ||
|
||
for (int i = 0; i < columns.Length; i++) | ||
{ | ||
if (!data.ContainsKey(columns[i]) || data[columns[i]] == null) | ||
sb.Append(""); | ||
else | ||
sb.Append(data[columns[i]]); | ||
|
||
if (i < columns.Length - 1) | ||
sb.Append(","); | ||
} | ||
|
||
return sb.ToString(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
//********************************************************* | ||
// | ||
// Copyright (c) Microsoft. All rights reserved. | ||
// This code is licensed under the Microsoft Public License. | ||
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF | ||
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY | ||
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR | ||
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. | ||
// | ||
//********************************************************* | ||
using System; | ||
|
||
namespace telcodatagen | ||
{ | ||
class CallStore | ||
{ | ||
public string[] CallNos; | ||
public string[] switchCountries = { "US", "China", "UK", "Germany", "Australia" }; | ||
static string[] NumPrefix = { "0123", "1234", "2345", "3456", "4567", "5678", "6789", "7890" }; | ||
|
||
public CallStore(int size) | ||
{ | ||
Random coin = new Random(); | ||
|
||
// CallNoStore | ||
CallNos = new String[size]; | ||
|
||
// Start generating the n numbers and putting it into the store | ||
for (int i = 0; i < size; i++) | ||
{ | ||
int prefixIdx = coin.Next(0, NumPrefix.Length); | ||
string prefix = NumPrefix[prefixIdx]; | ||
CallNos[i] = prefix + String.Format("{0:00000}", i); | ||
} | ||
|
||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
//********************************************************* | ||
// | ||
// Copyright (c) Microsoft. All rights reserved. | ||
// This code is licensed under the Microsoft Public License. | ||
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF | ||
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY | ||
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR | ||
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. | ||
// | ||
//********************************************************* | ||
using System; | ||
|
||
namespace telcodatagen | ||
{ | ||
|
||
class GenConfig | ||
{ | ||
public int nSets { get; set; } | ||
public int nFilesPerDump { get; set; } | ||
public int nCDRPerFile { get; set; } | ||
public float nCallBackPercent { get; set; } | ||
public int nDurationHours { get; set; } | ||
|
||
// Constructor | ||
public GenConfig(int _set, int _files, int _cdr, float _callback, int hours) | ||
{ | ||
nSets = _set; | ||
nFilesPerDump = _files; | ||
nCDRPerFile = _cdr; | ||
nCallBackPercent = _callback; | ||
nDurationHours = hours; | ||
} | ||
|
||
|
||
// Assume there is only 1 file, and 1 set | ||
public GenConfig(int _cdr, float _callback, int hours) | ||
{ | ||
nSets = 1; | ||
nFilesPerDump = 1; | ||
nCDRPerFile = _cdr; | ||
nCallBackPercent = _callback; | ||
nDurationHours = hours; | ||
} | ||
|
||
override public String ToString() | ||
{ | ||
return "#Sets: " + nSets + ",#FilesDump: " + nFilesPerDump + ",#CDRPerFile: " + nCDRPerFile + ",%CallBack: " + nCallBackPercent + ", #DurationHours: " + nDurationHours; | ||
} | ||
} | ||
} |
Oops, something went wrong.