Atoms Crowd  7.0.0
AgentGroupExporterFactory.h
1 #pragma once
2 // ===========================================================================
3 // Copyright (c) 2015 Toolchefs Ltd. All rights reserved.
4 //
5 // Use of this software is subject to the terms of the Toolchefs license
6 // agreement provided at the time of installation or download, or which
7 // otherwise accompanies this software in either electronic or hard copy form.
8 // ===========================================================================
9 
10 #include <Atoms/Globals.h>
11 #include <Atoms/Exporters/BaseAgentGroupExporter.h>
12 #include <map>
13 #include <vector>
14 
15 namespace Atoms
16 {
18 
20  class ATOMS_EXPORT AgentGroupExporterFactory
21  {
22  public:
23 
24  typedef AtomsPtr<BaseAgentGroupExporter>(*creatorFn)();
25 
28 
30 
34  AtomsPtr<BaseAgentGroupExporter> createAgentGroupExporter(const std::string& typeName);
35 
37 
41  void registerAgentGroupExporter(const std::string& name, creatorFn funct);
42 
44 
47  void deregisterAgentGroupExporter(const std::string& name);
48 
50 
53  std::vector<std::string> getRegisteredAgentGroupExporters();
54 
56 
60  bool isRegistered(const std::string& name);
61 
62  private:
63 
66 
69 
72 
75 
76  typedef std::map<std::string, creatorFn> FactoryMap;
77 
79 
82  FactoryMap m_factoryMap;
83  };
84 }
AgentGroup Exporter factory.
Definition: AgentGroupExporterFactory.h:21
bool isRegistered(const std::string &name)
Checks if an agent group exporter type with the given name is registered.
void deregisterAgentGroupExporter(const std::string &name)
De registers an agent group exporter type from the factory.
static AgentGroupExporterFactory & instance()
Singleton access.
void registerAgentGroupExporter(const std::string &name, creatorFn funct)
Registers a new agent group exporter type in the factory.
AtomsPtr< BaseAgentGroupExporter > createAgentGroupExporter(const std::string &typeName)
Creates an agent group exporter.
std::vector< std::string > getRegisteredAgentGroupExporters()
Gets all registered agent group exporter.
Atoms namespace.
Definition: Agent.h:29