IBR-DTNSuite  0.10
LOWPANConvergenceLayer.h
Go to the documentation of this file.
1 /*
2  * LOWPANConnection.h
3  *
4  * Copyright (C) 2011 IBR, TU Braunschweig
5  *
6  * Written-by: Johannes Morgenroth <morgenroth@ibr.cs.tu-bs.de>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21 
22 #ifndef LOWPANCONVERGENCELAYER_H_
23 #define LOWPANCONVERGENCELAYER_H_
24 
25 #include "Component.h"
26 #include "core/EventReceiver.h"
27 #include "net/ConvergenceLayer.h"
28 #include "net/LOWPANConnection.h"
29 #include "net/DiscoveryAgent.h"
32 #include <ibrcommon/net/vsocket.h>
34 
35 #include <vector>
36 #include <list>
37 
38 using namespace dtn::data;
39 
40 namespace dtn
41 {
42  namespace net
43  {
44  class LOWPANConnection;
49  {
50  public:
51  LOWPANConvergenceLayer(const ibrcommon::vinterface &net, uint16_t panid, unsigned int mtu = 115); //MTU is actually 127...
52 
53  virtual ~LOWPANConvergenceLayer();
54 
58  void update(const ibrcommon::vinterface &iface, DiscoveryAnnouncement &announcement)
60 
61  dtn::core::Node::Protocol getDiscoveryProtocol() const;
62 
68  void queue(const dtn::core::Node &n, const dtn::net::BundleTransfer &job);
69 
73  virtual const std::string getName() const;
74 
75  virtual void raiseEvent(const Event *evt) throw ();
76 
83  virtual void send_cb(const char *buf, const size_t len, const ibrcommon::vaddress &addr);
84 
85  static const size_t BUFF_SIZE = 115;
86 
87  void remove(const LOWPANConnection *conn);
88 
89  protected:
90  virtual void componentUp() throw ();
91  virtual void componentRun() throw ();
92  virtual void componentDown() throw ();
93  void __cancellation() throw ();
94 
95  virtual void sendAnnoucement(const uint16_t &sn, std::list<dtn::net::DiscoveryServiceProvider*> &providers);
96 
97  private:
98  ibrcommon::vsocket _vsocket;
99 
100  ibrcommon::vaddress _addr_broadcast;
101  ibrcommon::vinterface _net;
102  uint16_t _panid;
103  std::vector<char> _ipnd_buf;
104  int _ipnd_buf_len;
105 
106  ibrcommon::Mutex _connection_lock;
107  std::list<LOWPANConnection*> ConnectionList;
108  LOWPANConnection* getConnection(const ibrcommon::vaddress &addr);
109 
110  unsigned int m_maxmsgsize;
111 
112  ibrcommon::Mutex m_writelock;
113 
114  bool _running;
115  };
116  }
117 }
118 #endif /*LOWPANCONVERGENCELAYER_H_*/