1 // Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SALOME ResourcesCatalog : implementation of catalog resources parsing (SALOME_ModuleCatalog.idl)
24 // File : SALOME_ResourcesCatalog_Handler.cxx
25 // Author : Estelle Deville
29 #include "SALOME_ResourcesCatalog_Handler.hxx"
30 #include "Basics_Utils.hxx"
31 #include "Utils_SALOME_Exception.hxx"
38 //=============================================================================
41 * \param listOfResources: map of ParserResourcesType to fill when parsing
43 //=============================================================================
45 SALOME_ResourcesCatalog_Handler::
46 SALOME_ResourcesCatalog_Handler(MapOfParserResourcesType& resources_list): _resources_list(resources_list)
48 //XML tags initialisation
49 test_machine = "machine";
50 test_cluster = "cluster";
52 test_hostname = "hostname";
54 test_protocol = "protocol";
55 test_cluster_internal_protocol = "iprotocol";
59 test_user_name = "userName";
60 test_appli_path = "appliPath";
61 test_modules = "modules";
62 test_module_name = "moduleName";
63 test_components = "component";
64 test_component_name = "name";
66 test_mem_in_mb = "memInMB";
67 test_cpu_freq_mhz = "CPUFreqMHz";
68 test_nb_of_nodes = "nbOfNodes";
69 test_nb_of_proc = "nbOfProc";
70 test_nb_of_proc_per_node = "nbOfProcPerNode";
71 test_batch_queue = "batchQueue";
72 test_user_commands = "userCommands";
74 test_members = "members";
75 test_is_cluster_head = "isClusterHead";
76 test_working_directory = "workingDirectory";
77 test_can_launch_batch_jobs = "canLaunchBatchJobs";
78 test_can_run_containers = "canRunContainers";
81 //=============================================================================
85 //=============================================================================
87 SALOME_ResourcesCatalog_Handler::~SALOME_ResourcesCatalog_Handler()
89 // cout << "SALOME_ResourcesCatalog_Handler destruction") << endl;
92 //=============================================================================
94 * Retrieves DS after the file parse.
96 //=============================================================================
98 const MapOfParserResourcesType&
99 SALOME_ResourcesCatalog_Handler::GetResourcesAfterParsing() const
101 return _resources_list;
104 //=============================================================================
106 * Processes XML document and fills the list of resources
108 //=============================================================================
110 void SALOME_ResourcesCatalog_Handler::ProcessXmlDocument(xmlDocPtr theDoc)
112 // Empty private elements
113 _resources_list.clear();
115 // Get the document root node
116 xmlNodePtr aCurNode = xmlDocGetRootElement(theDoc);
118 aCurNode = aCurNode->xmlChildrenNode;
120 // Processing the document nodes
121 while(aCurNode != NULL)
123 // Declaration of a single machine or a frontal node for a cluster managed by a batch manager
124 if (!xmlStrcmp(aCurNode->name,(const xmlChar*)test_machine))
126 ParserResourcesType resource;
127 bool Ok = ProcessMachine(aCurNode, resource);
131 if(resource.HostName == "localhost")
133 resource.HostName = Kernel_Utils::GetHostname();
135 std::map<std::string, ParserResourcesType>::const_iterator iter = _resources_list.find(resource.Name);
136 if (iter != _resources_list.end())
137 RES_INFOS("Warning resource " << resource.Name << " already added, keep last resource found !");
138 _resources_list[resource.Name] = resource;
141 // Declaration of a cluster
142 // Here, a cluster is NOT the frontal node of a cluster managed by a batch manager (classical
143 // usage of a cluster). It is a group of machines intended to be used for a parallel container.
144 // The methods ProcessCluster and ProcessMember are only used in the context of parallel
145 // containers. They are not used in classical Salome usage scenarios.
146 if (!xmlStrcmp(aCurNode->name,(const xmlChar*)test_cluster))
148 ParserResourcesType resource;
149 if(ProcessCluster(aCurNode, resource))
151 std::map<std::string, ParserResourcesType>::const_iterator iter = _resources_list.find(resource.Name);
152 if (iter != _resources_list.end())
153 RES_INFOS("Warning resource " << resource.Name << " already added, keep last resource found !");
154 _resources_list[resource.Name] = resource;
157 aCurNode = aCurNode->next;
161 for (std::map<std::string, ParserResourcesType>::const_iterator iter = _resources_list.begin();
162 iter != _resources_list.end();
165 std::cerr << "************************************************" << std::endl;
166 std::cerr << "Resource " << (*iter).first << " found:" << std::endl;
167 std::cerr << (*iter).second;
168 std::cerr << "************************************************" << std::endl;
174 SALOME_ResourcesCatalog_Handler::ProcessCluster(xmlNodePtr cluster_descr, ParserResourcesType & resource)
176 // Ajout d'un cluster
177 // hostname, use et nbOfProc sont obligatoires
178 if (xmlHasProp(cluster_descr, (const xmlChar*)test_hostname))
180 xmlChar* hostname = xmlGetProp(cluster_descr, (const xmlChar*)test_hostname);
181 resource.HostName = (const char*)hostname;
186 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessCluster : !!! Warning !!! found a cluster without a hostname" << std::endl;
187 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessCluster : !!! Warning !!! this cluster will not be added" << std::endl;
191 if (xmlHasProp(cluster_descr, (const xmlChar*)test_name))
193 xmlChar* name = xmlGetProp(cluster_descr, (const xmlChar*)test_name);
194 resource.Name = (const char*)name;
195 resource.DataForSort._Name = (const char*)name;
200 resource.Name = resource.HostName;
201 resource.DataForSort._Name = resource.HostName;
202 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessCluster : !!! Warning !!! No Name found use Hostname for resource: " << resource.Name << std::endl;
205 if (xmlHasProp(cluster_descr, (const xmlChar*)test_use))
207 xmlChar* use = xmlGetProp(cluster_descr, (const xmlChar*)test_use);
208 resource.use = (const char*)use;
213 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessCluster : !!! Warning !!! found a cluster without a use" << std::endl;
214 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessCluster : !!! Warning !!! this cluster will not be added" << std::endl;
218 if (xmlHasProp(cluster_descr, (const xmlChar*)test_nb_of_proc))
220 xmlChar* nb_of_proc = xmlGetProp(cluster_descr, (const xmlChar*)test_nb_of_proc);
221 resource.nbOfProc = atoi((const char*)nb_of_proc);
226 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessCluster : !!! Warning !!! found a cluster without a nbOfProc" << std::endl;
227 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessCluster : !!! Warning !!! this cluster will not be added" << std::endl;
231 if (xmlHasProp(cluster_descr, (const xmlChar*)test_mpi))
233 xmlChar* mpi = xmlGetProp(cluster_descr, (const xmlChar*)test_mpi);
234 std::string anMpi = (const char*)mpi;
236 resource.setMpiImplTypeStr(anMpi);
239 // Parsing des membres du cluster
240 xmlNodePtr aCurSubNode = cluster_descr->xmlChildrenNode;
241 while(aCurSubNode != NULL)
243 if (!xmlStrcmp(aCurSubNode->name, (const xmlChar*)test_members))
245 xmlNodePtr members = aCurSubNode->xmlChildrenNode;
246 while (members != NULL)
249 if (!xmlStrcmp(members->name, (const xmlChar*)test_machine))
251 ParserResourcesType new_member;
252 if (ProcessMember(members, new_member))
253 resource.ClusterMembersList.push_back(new_member);
255 members = members->next;
258 aCurSubNode = aCurSubNode->next;
261 // Test: Il faut au moins un membre pour que le cluster soit correct !
262 if (resource.ClusterMembersList.empty())
264 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessCluster : !!! Warning !!! found a cluster without a member" << std::endl;
265 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessCluster : !!! Warning !!! this cluster will not be added" << std::endl;
272 SALOME_ResourcesCatalog_Handler::ProcessMember(xmlNodePtr member_descr, ParserResourcesType & resource)
274 if (xmlHasProp(member_descr, (const xmlChar*)test_hostname))
276 xmlChar* hostname = xmlGetProp(member_descr, (const xmlChar*)test_hostname);
277 resource.HostName = (const char*)hostname;
282 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning found a machine without a hostname" << std::endl;
283 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning this machine will not be added" << std::endl;
287 if (xmlHasProp(member_descr, (const xmlChar*)test_protocol))
289 xmlChar* protocol= xmlGetProp(member_descr, (const xmlChar*)test_protocol);
292 resource.setAccessProtocolTypeStr((const char *)protocol);
294 catch (const SALOME_Exception & e)
296 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning found a machine with a bad protocol" << std::endl;
297 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning this machine will not be added" << std::endl;
304 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning found a machine without a protocol" << std::endl;
305 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning this machine will not be added" << std::endl;
309 if (xmlHasProp(member_descr, (const xmlChar*)test_cluster_internal_protocol))
311 xmlChar* iprotocol= xmlGetProp(member_descr, (const xmlChar*)test_cluster_internal_protocol);
314 resource.setClusterInternalProtocolStr((const char *)iprotocol);
316 catch (const SALOME_Exception & e)
318 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning found a machine with a bad protocol" << std::endl;
319 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning this machine will not be added" << std::endl;
326 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning found a machine without a protocol" << std::endl;
327 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning this machine will not be added" << std::endl;
331 if (xmlHasProp(member_descr, (const xmlChar*)test_user_name))
333 xmlChar* user_name= xmlGetProp(member_descr, (const xmlChar*)test_user_name);
334 resource.UserName = (const char*)user_name;
339 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning found a machine without a user name" << std::endl;
340 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning this machine will not be added" << std::endl;
344 if (xmlHasProp(member_descr, (const xmlChar*)test_nb_of_nodes))
346 xmlChar* nb_of_nodes = xmlGetProp(member_descr, (const xmlChar*)test_nb_of_nodes);
347 resource.DataForSort._nbOfNodes = atoi((const char*)nb_of_nodes);
348 xmlFree(nb_of_nodes);
352 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning found a machine without a nbOfNodes" << std::endl;
353 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning this machine will not be added" << std::endl;
357 if (xmlHasProp(member_descr, (const xmlChar*)test_nb_of_proc_per_node))
359 xmlChar* nb_of_proc_per_node = xmlGetProp(member_descr, (const xmlChar*)test_nb_of_proc_per_node);
360 resource.DataForSort._nbOfProcPerNode = atoi((const char*)nb_of_proc_per_node);
361 xmlFree(nb_of_proc_per_node);
365 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning found a machine without a nbOfProcPerNode" << std::endl;
366 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning this machine will not be added" << std::endl;
370 if (xmlHasProp(member_descr, (const xmlChar*)test_appli_path))
372 xmlChar* appli_path = xmlGetProp(member_descr, (const xmlChar*)test_appli_path);
373 resource.AppliPath = (const char*)appli_path;
378 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning found a machine without a AppliPath" << std::endl;
379 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMember : Warning this machine will not be added" << std::endl;
386 SALOME_ResourcesCatalog_Handler::ProcessMachine(xmlNodePtr machine_descr, ParserResourcesType & resource)
388 if (xmlHasProp(machine_descr, (const xmlChar*)test_hostname))
390 xmlChar* hostname = xmlGetProp(machine_descr, (const xmlChar*)test_hostname);
391 resource.HostName = (const char*)hostname;
396 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMachine : Warning found a machine without a hostname" << std::endl;
397 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMachine : Warning this machine will not be added" << std::endl;
401 if (xmlHasProp(machine_descr, (const xmlChar*)test_name))
403 xmlChar* name = xmlGetProp(machine_descr, (const xmlChar*)test_name);
404 resource.Name = (const char*)name;
405 resource.DataForSort._Name = (const char*)name;
410 resource.Name = resource.HostName;
411 resource.DataForSort._Name = resource.HostName;
412 std::cerr << "SALOME_ResourcesCatalog_Handler::ProcessMachine : !!! Warning !!! No Name found use Hostname for resource: " << resource.Name << std::endl;
415 // This block is for compatibility with files created in Salome 6.
416 // It can safely be removed in Salome 8.
417 if (xmlHasProp(machine_descr, (const xmlChar*)test_mode))
419 cerr << "Warning: parameter \"" << test_mode << "\" defined for resource \"" <<
420 resource.Name << "\" is deprecated. It will be replaced when your resource " <<
421 "file is saved." << endl;
422 xmlChar* mode=xmlGetProp(machine_descr, (const xmlChar*)test_mode);
426 resource.can_run_containers = true;
429 resource.can_launch_batch_jobs = true;
437 if (xmlHasProp(machine_descr, (const xmlChar*)test_is_cluster_head))
439 cerr << "Warning: parameter \"" << test_is_cluster_head << "\" defined for resource \"" <<
440 resource.Name << "\" is deprecated. It will be replaced when your resource " <<
441 "file is saved." << endl;
442 xmlChar* is_cluster_head = xmlGetProp(machine_descr, (const xmlChar*)test_is_cluster_head);
443 std::string str_ich = (const char*)is_cluster_head;
444 if (str_ich == "true")
446 resource.type = cluster;
447 resource.can_launch_batch_jobs = true;
448 resource.can_run_containers = false;
452 resource.type = single_machine;
453 resource.can_run_containers = true;
455 xmlFree(is_cluster_head);
457 // End of compatibility block
459 if (xmlHasProp(machine_descr, (const xmlChar*)test_type))
461 xmlChar* type = xmlGetProp(machine_descr, (const xmlChar*)test_type);
464 resource.setResourceTypeStr((const char*)type);
466 catch (const SALOME_Exception & e)
468 cerr << "Warning, invalid type \"" << (const char*)type << "\" for resource \"" <<
469 resource.Name << "\", using default value \"" << resource.getResourceTypeStr() <<
476 cerr << "Warning, no type found for resource \"" << resource.Name <<
477 "\", using default value \"" << resource.getResourceTypeStr() << "\"" << endl;
480 if (xmlHasProp(machine_descr, (const xmlChar*)test_batch_queue))
482 xmlChar* batch_queue = xmlGetProp(machine_descr, (const xmlChar*)test_batch_queue);
483 resource.batchQueue = (const char*)batch_queue;
484 xmlFree(batch_queue);
487 if (xmlHasProp(machine_descr, (const xmlChar*)test_user_commands))
489 xmlChar* user_commands= xmlGetProp(machine_descr, (const xmlChar*)test_user_commands);
490 resource.userCommands = (const char*)user_commands;
491 xmlFree(user_commands);
494 if (xmlHasProp(machine_descr, (const xmlChar*)test_protocol))
496 xmlChar* protocol= xmlGetProp(machine_descr, (const xmlChar*)test_protocol);
499 resource.setAccessProtocolTypeStr((const char *)protocol);
501 catch (const SALOME_Exception & e)
503 cerr << "Warning, invalid protocol \"" << (const char*)protocol << "\" for resource \"" <<
504 resource.Name << "\", using default value \"" <<
505 resource.getAccessProtocolTypeStr() << "\"" << endl;
510 if (xmlHasProp(machine_descr, (const xmlChar*)test_cluster_internal_protocol))
512 xmlChar* iprotocol= xmlGetProp(machine_descr, (const xmlChar*)test_cluster_internal_protocol);
515 resource.setClusterInternalProtocolStr((const char *)iprotocol);
517 catch (const SALOME_Exception & e)
519 cerr << "Warning, invalid internal protocol \"" << (const char*)iprotocol <<
520 "\" for resource \"" << resource.Name << "\", using default value \"" <<
521 resource.getClusterInternalProtocolStr() << "\"" << endl;
526 resource.ClusterInternalProtocol = resource.Protocol;
528 if (xmlHasProp(machine_descr, (const xmlChar*)test_batch))
530 xmlChar* batch = xmlGetProp(machine_descr, (const xmlChar*)test_batch);
533 resource.setBatchTypeStr((const char *)batch);
535 catch (const SALOME_Exception & e)
537 cerr << "Warning, invalid batch manager \"" << (const char*)batch <<
538 "\" for resource \"" << resource.Name << "\", using default value \"" <<
539 resource.getBatchTypeStr() << "\"" << endl;
544 if (xmlHasProp(machine_descr, (const xmlChar*)test_mpi))
546 xmlChar* mpi = xmlGetProp(machine_descr, (const xmlChar*)test_mpi);
549 resource.setMpiImplTypeStr((const char *)mpi);
551 catch (const SALOME_Exception & e)
553 cerr << "Warning, invalid MPI implementation \"" << (const char*)mpi <<
554 "\" for resource \"" << resource.Name << "\", using default value \"" <<
555 resource.getMpiImplTypeStr() << "\"" << endl;
560 if (xmlHasProp(machine_descr, (const xmlChar*)test_user_name))
562 xmlChar* user_name= xmlGetProp(machine_descr, (const xmlChar*)test_user_name);
563 resource.UserName = (const char*)user_name;
567 if (xmlHasProp(machine_descr, (const xmlChar*)test_appli_path))
569 xmlChar* appli_path = xmlGetProp(machine_descr, (const xmlChar*)test_appli_path);
570 resource.AppliPath = (const char*)appli_path;
574 if (xmlHasProp(machine_descr, (const xmlChar*)test_os))
576 xmlChar* os = xmlGetProp(machine_descr, (const xmlChar*)test_os);
577 resource.OS = (const char*)os;
581 if (xmlHasProp(machine_descr, (const xmlChar*)test_mem_in_mb))
583 xmlChar* mem_in_mb = xmlGetProp(machine_descr, (const xmlChar*)test_mem_in_mb);
584 resource.DataForSort._memInMB = atoi((const char*)mem_in_mb);
588 if (xmlHasProp(machine_descr, (const xmlChar*)test_cpu_freq_mhz))
590 xmlChar* cpu_freq_mhz = xmlGetProp(machine_descr, (const xmlChar*)test_cpu_freq_mhz);
591 resource.DataForSort._CPUFreqMHz = atoi((const char*)cpu_freq_mhz);
592 xmlFree(cpu_freq_mhz);
595 if (xmlHasProp(machine_descr, (const xmlChar*)test_nb_of_nodes))
597 xmlChar* nb_of_nodes = xmlGetProp(machine_descr, (const xmlChar*)test_nb_of_nodes);
598 resource.DataForSort._nbOfNodes = atoi((const char*)nb_of_nodes);
599 xmlFree(nb_of_nodes);
602 if (xmlHasProp(machine_descr, (const xmlChar*)test_nb_of_proc_per_node))
604 xmlChar* nb_of_proc_per_node = xmlGetProp(machine_descr, (const xmlChar*)test_nb_of_proc_per_node);
605 resource.DataForSort._nbOfProcPerNode = atoi((const char*)nb_of_proc_per_node);
606 xmlFree(nb_of_proc_per_node);
609 if (xmlHasProp(machine_descr, (const xmlChar*)test_can_launch_batch_jobs))
611 xmlChar* can_launch_batch_jobs = xmlGetProp(machine_descr, (const xmlChar*)test_can_launch_batch_jobs);
614 resource.setCanLaunchBatchJobsStr((const char *)can_launch_batch_jobs);
616 catch (const SALOME_Exception & e)
618 cerr << "Warning, invalid can_launch_batch_jobs parameter value \"" <<
619 (const char*)can_launch_batch_jobs << "\" for resource \"" << resource.Name <<
620 "\", using default value \"" << resource.getCanLaunchBatchJobsStr() << "\"" << endl;
622 xmlFree(can_launch_batch_jobs);
625 if (xmlHasProp(machine_descr, (const xmlChar*)test_can_run_containers))
627 xmlChar* can_run_containers = xmlGetProp(machine_descr, (const xmlChar*)test_can_run_containers);
630 resource.setCanRunContainersStr((const char *)can_run_containers);
632 catch (const SALOME_Exception & e)
634 cerr << "Warning, invalid can_run_containers parameter value \"" <<
635 (const char*)can_run_containers << "\" for resource \"" << resource.Name <<
636 "\", using default value \"" << resource.getCanRunContainersStr() << "\"" << endl;
638 xmlFree(can_run_containers);
641 if (xmlHasProp(machine_descr, (const xmlChar*)test_working_directory))
643 xmlChar* working_directory = xmlGetProp(machine_descr, (const xmlChar*)test_working_directory);
644 resource.working_directory = (const char*)working_directory;
645 xmlFree(working_directory);
648 // Process children nodes
649 xmlNodePtr aCurSubNode = machine_descr->xmlChildrenNode;
650 while(aCurSubNode != NULL)
652 // Process components
653 if ( !xmlStrcmp(aCurSubNode->name, (const xmlChar*)test_components) )
655 //If a component is given, it is in a module with the same name
656 //except if the module name is given
657 if (xmlHasProp(aCurSubNode, (const xmlChar*)test_component_name))
659 xmlChar* component_name = xmlGetProp(aCurSubNode, (const xmlChar*)test_component_name);
660 std::string aComponentName = (const char*)component_name;
661 resource.ComponentsList.push_back(aComponentName);
662 if (xmlHasProp(aCurSubNode, (const xmlChar*)test_module_name))
664 xmlChar* module_name = xmlGetProp(aCurSubNode, (const xmlChar*)test_module_name);
665 std::string aModuleName = (const char*)module_name;
666 resource.ModulesList.push_back(aModuleName);
667 xmlFree(module_name);
670 resource.ModulesList.push_back(aComponentName);
671 xmlFree(component_name);
675 else if ( !xmlStrcmp(aCurSubNode->name, (const xmlChar*)test_modules) )
677 // If a module is given, we create an entry in componentsList and modulesList
678 // with the same name (module == component)
679 if (xmlHasProp(aCurSubNode, (const xmlChar*)test_module_name))
681 xmlChar* component_name = xmlGetProp(aCurSubNode, (const xmlChar*)test_module_name);
682 std::string aComponentName = (const char*)component_name;
683 resource.ComponentsList.push_back(aComponentName);
684 resource.ModulesList.push_back(aComponentName);
685 xmlFree(component_name);
688 aCurSubNode = aCurSubNode->next;
693 //=============================================================================
695 * Fill the document tree in xml file, used to write in an xml file.
696 * \param theDoc document to fill.
698 //=============================================================================
700 void SALOME_ResourcesCatalog_Handler::PrepareDocToXmlFile(xmlDocPtr theDoc)
703 xmlNodePtr root_node = NULL, node = NULL, node1 = NULL;
705 root_node = xmlNewNode(NULL, BAD_CAST "resources");
706 xmlDocSetRootElement(theDoc, root_node);
708 std::map<std::string, ParserResourcesType>::iterator iter = _resources_list.begin();
709 for (; iter != _resources_list.end(); iter++)
711 node = xmlNewChild(root_node, NULL, BAD_CAST test_machine, NULL);
712 RES_MESSAGE("Add resource name = " << (*iter).second.Name.c_str());
713 xmlNewProp(node, BAD_CAST test_name, BAD_CAST (*iter).second.Name.c_str());
714 xmlNewProp(node, BAD_CAST test_hostname, BAD_CAST (*iter).second.HostName.c_str());
715 xmlNewProp(node, BAD_CAST test_type, BAD_CAST (*iter).second.getResourceTypeStr().c_str());
716 xmlNewProp(node, BAD_CAST test_appli_path, BAD_CAST (*iter).second.AppliPath.c_str());
717 xmlNewProp(node, BAD_CAST test_batch_queue, BAD_CAST (*iter).second.batchQueue.c_str());
718 xmlNewProp(node, BAD_CAST test_user_commands, BAD_CAST (*iter).second.userCommands.c_str());
719 xmlNewProp(node, BAD_CAST test_protocol, BAD_CAST (*iter).second.getAccessProtocolTypeStr().c_str());
720 xmlNewProp(node, BAD_CAST test_cluster_internal_protocol,
721 BAD_CAST (*iter).second.getClusterInternalProtocolStr().c_str());
722 xmlNewProp(node, BAD_CAST test_working_directory, BAD_CAST (*iter).second.working_directory.c_str());
723 xmlNewProp(node, BAD_CAST test_can_launch_batch_jobs,
724 BAD_CAST (*iter).second.getCanLaunchBatchJobsStr().c_str());
725 xmlNewProp(node, BAD_CAST test_can_run_containers,
726 BAD_CAST (*iter).second.getCanRunContainersStr().c_str());
727 xmlNewProp(node, BAD_CAST test_batch, BAD_CAST (*iter).second.getBatchTypeStr().c_str());
728 xmlNewProp(node, BAD_CAST test_mpi, BAD_CAST (*iter).second.getMpiImplTypeStr().c_str());
729 xmlNewProp(node, BAD_CAST test_user_name, BAD_CAST (*iter).second.UserName.c_str());
731 std::vector<std::string>::const_iterator iter2 = (*iter).second.ComponentsList.begin();
732 for(;iter2 != (*iter).second.ComponentsList.end(); iter2++)
734 node1 = xmlNewChild(node, NULL, BAD_CAST test_components, NULL);
735 xmlNewProp(node1, BAD_CAST test_component_name, BAD_CAST (*iter2).c_str());
738 xmlNewProp(node, BAD_CAST test_os, BAD_CAST (*iter).second.OS.c_str());
739 std::ostringstream mem_stream;
740 mem_stream << (*iter).second.DataForSort._memInMB;
741 xmlNewProp(node, BAD_CAST test_mem_in_mb, BAD_CAST mem_stream.str().c_str());
742 std::ostringstream cpu_stream;
743 cpu_stream << (*iter).second.DataForSort._CPUFreqMHz;
744 xmlNewProp(node, BAD_CAST test_cpu_freq_mhz, BAD_CAST cpu_stream.str().c_str());
745 std::ostringstream nb_nodes_stream;
746 nb_nodes_stream << (*iter).second.DataForSort._nbOfNodes;
747 xmlNewProp(node, BAD_CAST test_nb_of_nodes, BAD_CAST nb_nodes_stream.str().c_str());
748 std::ostringstream nb_proc_per_nodes_stream;
749 nb_proc_per_nodes_stream << (*iter).second.DataForSort._nbOfProcPerNode;
750 xmlNewProp(node, BAD_CAST test_nb_of_proc_per_node, BAD_CAST nb_proc_per_nodes_stream.str().c_str());