/[projects]/smsdaemon/PluginManager.cpp
ViewVC logotype

Diff of /smsdaemon/PluginManager.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 28 by torben, Mon Jun 9 20:56:03 2008 UTC revision 107 by torben, Thu Jun 19 14:47:52 2008 UTC
# Line 5  Line 5 
5    
6  #include "EchoPlugin.h"  #include "EchoPlugin.h"
7  #include "SpamPlugin.h"  #include "SpamPlugin.h"
8    #include "ShellExecPlugin.h"
9    #include "TogPlugin.h"
10    #include "StatusPlugin.h"
11    
12  typedef std::map<std::string, Plugin*>::iterator MapIterator;  typedef std::map<std::string, Plugin*>::iterator MapIterator;
13    
# Line 19  PluginManager::~PluginManager() Line 22  PluginManager::~PluginManager()
22    
23  void PluginManager::AddPlugin(Plugin* plugin)  void PluginManager::AddPlugin(Plugin* plugin)
24  {  {
25          _plugins[ plugin->GetCommand() ] = plugin;          Common* cmn = Common::instance();
26    
27            if (plugin != 0)
28            {
29                    std::string command = plugin->GetCommand();
30    
31                    if ( _plugins[ command ] == 0)
32                            _plugins[ command ] = plugin;
33                    else
34                            cmn->logMessage( std::string("AddPlugin() -- already have a plugin called ") + command);
35            }
36            else
37            {
38                    cmn->logMessage("AddPlugin() -- cannot register a null pointer");
39            }
40  }  }
41    
42  void PluginManager::LoadPlugins()  void PluginManager::LoadPlugins()
43  {  {
44          Common* cmn = Common::instance();          Common* cmn = Common::instance();
45    
   
46          static EchoPlugin echo;          static EchoPlugin echo;
         _plugins[ echo.GetCommand() ] = &echo;  
47    
48          static SpamPlugin spam;          static SpamPlugin spam;
49          _plugins[ spam.GetCommand() ] = &spam;  
50                    static ShellExecPlugin wake("wake", "/home/torben/bin/wake", false, false);
51            static ShellExecPlugin ping("ping", "nmap -sP 192.168.10.1-255 | grep appears | awk '{print $2}'", false,true);
52    
53            static TogPlugin tog;
54    
55            static StatusPlugin status;
56    
57          for(MapIterator it = _plugins.begin(); it != _plugins.end(); ++it)          for(MapIterator it = _plugins.begin(); it != _plugins.end(); ++it)
58          {          {
59                  Plugin* pl = (*it).second;                  Plugin* pl = (*it).second;
60                  cmn->logMessage( std::string("Loaded plugin \"") + pl->GetCommand() + "\" - " + pl->GetDescription() );                  if (pl != 0)
61                            cmn->logMessage( std::string("Loaded plugin \"") + pl->GetCommand() + "\" - " + pl->GetDescription() );
62          }          }
63  }  }
64    

Legend:
Removed from v.28  
changed lines
  Added in v.107

  ViewVC Help
Powered by ViewVC 1.1.20