OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
flow_token.h
Go to the documentation of this file.
1 #ifndef __AGENT_PKT_FLOW_TOKEN_H__
2 #define __AGENT_PKT_FLOW_TOKEN_H__
3 
4 #include <memory>
5 #include <tbb/atomic.h>
6 #include <base/util.h>
7 
8 class Token;
9 class TokenPool;
10 class FlowEntry;
11 class Proto;
12 
13 typedef boost::shared_ptr<Token> TokenPtr;
14 
15 class Token {
16 public:
17  Token(TokenPool *pool);
18  virtual ~Token();
19 
20 protected:
23 };
24 
25 class TokenPool {
26 public:
27  TokenPool(const std::string &name, Proto *proto, int count);
28  virtual ~TokenPool();
29 
30  virtual TokenPtr GetToken();
31  int token_count() const { return token_count_; }
32  bool TokenCheck() const;
33  uint64_t failures() const { return failures_; }
35  uint64_t restarts() const { return restarts_; }
36 protected:
37  friend class Token;
38 
39  // Token destructor invokes this
40  void FreeToken();
41 
42  std::string name_;
46  tbb::atomic<int> token_count_;
47  mutable uint64_t failures_;
48  uint64_t restarts_;
51 };
52 
53 class FlowTokenPool : public TokenPool {
54 public:
55  FlowTokenPool(const std::string &name, Proto *proto, int count):
56  TokenPool(name, proto, count) {}
57  virtual ~FlowTokenPool() {}
58  TokenPtr GetToken(FlowEntry *entry);
59 };
60 
61 class FlowToken : public Token {
62 public:
63  FlowToken(TokenPool *pool, FlowEntry *entry):
64  Token(pool), flow_entry_(entry) {}
65  virtual ~FlowToken() {}
66 private:
68 };
69 #endif // __AGENT_PKT_FLOW_TOKEN_H__
uint64_t failures_
Definition: flow_token.h:47
std::string name_
Definition: flow_token.h:42
TokenPool(const std::string &name, Proto *proto, int count)
Definition: flow_token.cc:13
DISALLOW_COPY_AND_ASSIGN(Token)
Proto * proto_
Definition: flow_token.h:49
virtual ~FlowTokenPool()
Definition: flow_token.h:57
void FreeToken()
Definition: flow_token.cc:24
DISALLOW_COPY_AND_ASSIGN(TokenPool)
FlowTokenPool(const std::string &name, Proto *proto, int count)
Definition: flow_token.h:55
FlowToken(TokenPool *pool, FlowEntry *entry)
Definition: flow_token.h:63
int max_tokens_
Definition: flow_token.h:43
FlowEntry * flow_entry_
Definition: flow_token.h:67
uint64_t restarts() const
Definition: flow_token.h:35
uint64_t failures() const
Definition: flow_token.h:33
virtual ~FlowToken()
Definition: flow_token.h:65
tbb::atomic< int > token_count_
Definition: flow_token.h:46
TokenPool * pool_
Definition: flow_token.h:21
int low_water_mark_
Definition: flow_token.h:45
Token(TokenPool *pool)
Definition: flow_token.cc:4
int token_count() const
Definition: flow_token.h:31
virtual TokenPtr GetToken()
Definition: flow_token.cc:41
int min_tokens_
Definition: flow_token.h:44
boost::shared_ptr< Token > TokenPtr
Definition: flow_token.h:11
uint64_t restarts_
Definition: flow_token.h:48
void IncrementRestarts()
Definition: flow_token.h:34
virtual ~TokenPool()
Definition: flow_token.cc:21
virtual ~Token()
Definition: flow_token.cc:8
bool TokenCheck() const
Definition: flow_token.cc:32