PCMCluster.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #include "../include/PCMCluster.h"
00030
00031 #include <tinyxml/tinyxml.h>
00032
00033 namespace ParCompMark
00034 {
00035
00036 template <> Cluster * Singleton < Cluster >::mInstance = 0;
00037
00038
00039
00040
00041 Cluster::Cluster()
00042
00043
00044
00045 {
00046 mHosts = new Container < HostInfo, Mutex >;
00047
00048 }
00049
00050
00051
00052 Cluster::~Cluster()
00053 {
00054 }
00055
00056
00057
00058
00059
00060
00061
00062 Cluster *Cluster::parseXML(const std::string & strXml)
00063 {
00064 TiXmlDocument tiDocument;
00065
00066 tiDocument.Parse(strXml.c_str());
00067
00068
00069 TiXmlElement *tiCluster = tiDocument.RootElement();
00070
00071 Cluster *myCluster = new Cluster();
00072
00073
00074 TiXmlElement *tiParam = tiCluster->FirstChildElement();
00075
00076 for(; tiParam != NULL; tiParam = tiParam->NextSiblingElement())
00077 {
00078
00079 if(false)
00080 {
00081
00082 } else
00083 {
00084
00085
00086 HostInfo::Pointer currentHI = HostInfo::parseXML(tiParam);
00087
00088 if(currentHI.isNotNull())
00089 {
00090 myCluster->mHosts->add(currentHI->getName(), currentHI);
00091 }
00092
00093 }
00094 }
00095
00096 return myCluster;
00097 }
00098
00099
00100
00101
00102
00103
00104
00105 void Cluster::refreshData()
00106 {
00107
00108 if(mClusterDescription.isNotNull())
00109 mClusterDescription.kill();
00110
00111 mClusterDescription = new OutputNode("cluster", OutputNode::INFORMATION);
00112 for(Container < HostInfo, Mutex >::Iterator i = mHosts->begin(); i != mHosts->end(); i++)
00113 {
00114
00115
00116 }
00117 }
00118
00119
00120
00121 std::string Cluster::serialize2Squirrel()
00122 {
00123
00124 std::ostringstream osstr;
00125 osstr << "{" << std::endl;
00126
00127
00128 osstr << "hosts = [" << std::endl;
00129 for(Container < HostInfo, Mutex >::Iterator i = mHosts->begin(); i != mHosts->end(); i++)
00130 {
00131 osstr << "{" << std::endl;
00132 osstr << "address = \"" << i->first << '\"' << std::endl;
00133 osstr << "}" << std::endl;
00134 }
00135 osstr << "]" << std::endl;
00136
00137 osstr << "}" << std::endl;
00138
00139 return osstr.str();
00140 }
00141
00142
00143
00144 std::string Cluster::serialize2XML()
00145 {
00146 refreshData();
00147
00148 return mClusterDescription->serialize2XML();
00149 }
00150
00151
00152
00153 }