mirror of https://github.com/aria2/aria2
Cache and reuse RpcMethod objects.
parent
d1885a5874
commit
e3e7a420de
|
@ -41,8 +41,17 @@ namespace aria2 {
|
||||||
|
|
||||||
namespace rpc {
|
namespace rpc {
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
SharedHandle<RpcMethod> getNoSuchMethod()
|
||||||
|
{
|
||||||
|
static SharedHandle<RpcMethod> m(new NoSuchMethodRpcMethod());
|
||||||
|
return m;
|
||||||
|
}
|
||||||
|
} // namespace
|
||||||
|
|
||||||
|
namespace {
|
||||||
SharedHandle<RpcMethod>
|
SharedHandle<RpcMethod>
|
||||||
RpcMethodFactory::create(const std::string& methodName)
|
createMethod(const std::string& methodName)
|
||||||
{
|
{
|
||||||
if(methodName == AddUriRpcMethod::getMethodName()) {
|
if(methodName == AddUriRpcMethod::getMethodName()) {
|
||||||
return SharedHandle<RpcMethod>(new AddUriRpcMethod());
|
return SharedHandle<RpcMethod>(new AddUriRpcMethod());
|
||||||
|
@ -118,7 +127,28 @@ RpcMethodFactory::create(const std::string& methodName)
|
||||||
} else if(methodName == SystemMulticallRpcMethod::getMethodName()) {
|
} else if(methodName == SystemMulticallRpcMethod::getMethodName()) {
|
||||||
return SharedHandle<RpcMethod>(new SystemMulticallRpcMethod());
|
return SharedHandle<RpcMethod>(new SystemMulticallRpcMethod());
|
||||||
} else {
|
} else {
|
||||||
return SharedHandle<RpcMethod>(new NoSuchMethodRpcMethod());
|
return SharedHandle<RpcMethod>();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} // namespace
|
||||||
|
|
||||||
|
std::map<std::string, SharedHandle<RpcMethod> > RpcMethodFactory::cache_;
|
||||||
|
|
||||||
|
SharedHandle<RpcMethod>
|
||||||
|
RpcMethodFactory::create(const std::string& methodName)
|
||||||
|
{
|
||||||
|
std::map<std::string, SharedHandle<RpcMethod> >::const_iterator itr =
|
||||||
|
cache_.find(methodName);
|
||||||
|
if(itr == cache_.end()) {
|
||||||
|
SharedHandle<RpcMethod> m = createMethod(methodName);
|
||||||
|
if(m) {
|
||||||
|
cache_.insert(std::make_pair(methodName, m));
|
||||||
|
return m;
|
||||||
|
} else {
|
||||||
|
return getNoSuchMethod();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return (*itr).second;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <map>
|
||||||
|
|
||||||
#include "SharedHandle.h"
|
#include "SharedHandle.h"
|
||||||
|
|
||||||
|
@ -50,6 +51,8 @@ class RpcMethod;
|
||||||
class RpcMethodFactory {
|
class RpcMethodFactory {
|
||||||
public:
|
public:
|
||||||
static SharedHandle<RpcMethod> create(const std::string& methodName);
|
static SharedHandle<RpcMethod> create(const std::string& methodName);
|
||||||
|
private:
|
||||||
|
static std::map<std::string, SharedHandle<RpcMethod> > cache_;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace rpc
|
} // namespace rpc
|
||||||
|
|
Loading…
Reference in New Issue