Source: ../../libxipc/xrlcmdmap.hh
|
|
|
|
// -*- c-basic-offset: 4 -*-
// Copyright (c) 2001,2002 International Computer Science Institute
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software")
// to deal in the Software without restriction, subject to the conditions
// listed in the Xorp LICENSE file. These conditions include: you must
// preserve this copyright notice, and you cannot mention the copyright
// holders in advertising related to the Software without their permission.
// The Software is provided WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED. This
// notice is a summary of the Xorp LICENSE file; the license in that file is
// legally binding.
// $Id: xrlcmdmap.hh,v 1.1.1.1 2002/12/11 23:56:04 hodson Exp $
#ifndef __XRL_CMD_MAP_HH__
#define __XRL_CMD_MAP_HH__
#include <map>
#include <string>
#include "libxorp/callback.hh"
#include "xrl.hh"
#include "xrlerror.hh"
// Deprecated callback type, still exists for compatibilty.
typedef const XrlCmdError (*XrlCmdCallback) (const Xrl& request,
XrlArgs* response,
void* cookie);
typedef XorpCallback2<const XrlCmdError, const Xrl&, XrlArgs*>::RefPtr XrlRecvCallback;
struct XrlCmdEntry {
// XrlCmdEntry(const char* s, XrlCmdCallback cb, void* magic) :
// name(s), callback(cb), cookie(magic) {}
XrlCmdEntry(const char* s, XrlRecvCallback cb) :
name(s), callback(cb) {}
XrlCmdEntry() : name("") {} // this has to be here for map<>.
string name;
XrlRecvCallback callback;
};
class XrlCmdMap {
public:
XrlCmdMap(const char* name = "anonymous") : _name(name) {}
const string& name() { return _name; }
inline bool add_handler(const char* cmd, XrlRecvCallback rcb) {
return add_handler(XrlCmdEntry(cmd, rcb));
}
inline bool add_handler (const char* cmd, XrlCmdCallback cb, void* cookie)
{
return add_handler(cmd, callback(cb, cookie));
}
bool add_handler (const XrlCmdEntry& c);
bool remove_handler (const char* name);
const XrlCmdEntry* get_handler(const char* name) const;
uint32_t count_handlers() const;
const XrlCmdEntry* get_handler(uint32_t index) const;
protected:
const string _name;
map<string, XrlCmdEntry> _cmd_map;
typedef map<string, XrlCmdEntry>::const_iterator CMI;
typedef map<string, XrlCmdEntry>::iterator MI;
};
#endif // __XRL_CMD_MAP_HH__
Generated by: pavlin on possum.icir.org on Wed Dec 11 16:50:42 2002, using kdoc 2.0a54+XORP. |