Before starting I am sorry for my awfull coding skills and I hope you can help me with advices and the such.
I have a HashSet of unique int values:
private HashSet<int> found = null;
That I use to read data from an entity, so each entry inserted on found is unique and gives me a whole new set of data.
So let's consider that from each unique int I get the follow data:
ID,M,X,Y,Z
The HashSet is updated every second and when this happens it may gather repeated entities with new data so I still have to compare if I am not updating a duplicated entity.
So initially I made a Dictionary as follow
Dictionary<int, myList> myItemList = new Dictionary<int, myList>();
And the above Class for myList
public class myList
{
public int ID { get; set; }
public string M { get; set; }
public string X { get; set; }
public string Y { get; set; }
public string Z { get; set; }
}
So here is a sample of found feeding the dictionary:
foreach (var myFoundID in found.Except(myItemList.Keys))
{
myList listData = new myList();
listData.ID = get(myFoundID, "ID");
listData.M = get(myFoundID, "M");
listData.X = get(myFoundID, "X");
listData.Y = get(myFoundID, "Y");
listData.Z = get(myFoundID, "Z");
myItemList.Add(myFoundID, listData);
}
Questions and doubts:
Should I change how I am handling the above data ? What should I change it to, to make it better for what I want ?
When generating the XML of that data, I need entity element to have the Total count of objects:
Example XML:
<?xml version="1.0" encoding="UTF-8"?> <entities> <entity ID="21231" M="somedata" TOTAL="2"> <object X="somedata" Y="somedata" Z="somedata" /> <object X="somedata" Y="somedata" Z="somedata" /> </entity> </entities>Example code:
writeXML.WriteStartElement("entities"); int myLastID; foreach (KeyValuePair<int, myList> thisList in myItemList) { int objectCount = 0;
} writeXML.WriteEndElement(); writeXML.Close();myList thisData = thisList.Value; if (myLastID == thisData.ID) continue; myLastID = thisData.ID; writeXML.WriteStartElement("entity"); writeXML.WriteAttributeString("ID", thisData.ID.ToString()); writeXML.WriteAttributeString("M", thisData.M); foreach (KeyValuePair<int, myList> thisListAgain in myItemList) { myList thisData2 = thisListAgain.Value; if (thisData2.ID == thisData.ID) { writeXML.WriteStartElement("object"); writeXML.WriteAttributeString("X", thisData2.X); writeXML.WriteAttributeString("Y", thisData2.Y); writeXML.WriteAttributeString("Z", thisData2.Z); writeXML.WriteEndElement(); objectCount++; } writeXML.WriteAttributeString("TOTAL", objectCount.ToString()); } writeXML.WriteEndElement();The problem is that
writeXML.WriteAttributeString("TOTAL", objectCount.ToString());does not work in there even tough that element is not closed yet so I need some how to sort out the count before and write it along with entity start element.Also I think there are better ways to accomplish the above xml generating code other then with those 2 foreachs and would like your guidance here.
Fake Data Producer for tests:
int myID = random.Next(10000);
for (int i = 0; i < 100; i++)
{
if (i % 10 == 0)
myID = random.Next(10000);
myList listData = new myList();
listData.ID = myID;
listData.M = "M";
listData.X = "X";
listData.Y = "Y";
listData.Z = "Z";
myItemList.Add(i, listData);
}