]> git.tdb.fi Git - netvis.git/blobdiff - source/netvis.h
Restructure packet handling
[netvis.git] / source / netvis.h
index 3739d330ec941de08c03c2698a576269bcfa4b7a..68eed052f3649255d4d9ee74655e624a89327968 100644 (file)
@@ -11,23 +11,40 @@ Distributed unter the GPL
 #include <list>
 #include <map>
 #include <pcap.h>
+#include <netinet/ether.h>
+#include <netinet/ip.h>
+#include <netinet/tcp.h>
+#include <netinet/udp.h>
 #include <msp/core/application.h>
 #include <msp/debug/profiler.h>
-#include <msp/gbase/display.h>
-#include <msp/gbase/glcontext.h>
-#include <msp/gbase/simplewindow.h>
+#include <msp/graphics/display.h>
+#include <msp/graphics/glcontext.h>
+#include <msp/graphics/simplewindow.h>
 #include <msp/gl/color.h>
 #include <msp/gl/font.h>
 #include <msp/time/timestamp.h>
 
+class History;
 class Host;
 class Packet;
 class Port;
 class Resolver;
 
-class NetVis: public Msp::Application
+class NetVis: public Msp::RegisteredApplication<NetVis>
 {
 private:
+       struct CaptureContext
+       {
+               const pcap_pkthdr *cap_hdr;
+               Host *src_host;
+               Port *src_port;
+               Host *dst_host;
+               Port *dst_port;
+               unsigned size;
+
+               CaptureContext();
+       };
+
        std::string iface;
        pcap_t *pcap;
        Resolver *resolver;
@@ -43,8 +60,7 @@ private:
        std::map<unsigned, Host *> disabled_hosts;
        std::list<Packet *> packets;
        std::map<unsigned, Port *> ports;
-       bool draw_labels;
-       bool blend;
+       History *history;
 
        Msp::Time::TimeStamp tick_t;
        Msp::Time::TimeStamp fps_t;
@@ -63,14 +79,17 @@ private:
        void render();
        Host &get_host(unsigned);
        Msp::GL::Color generate_color(bool) const;
-       const Port &get_port(unsigned);
-       void key_press(unsigned, unsigned, wchar_t);
+       Port &get_port(unsigned);
+       void create_history_texture();
 
        static void capture_handler(unsigned char *, const pcap_pkthdr *, const unsigned char *);
+       void handle_ethernet(CaptureContext &, const ethhdr *, unsigned);
+       void handle_ipv4(CaptureContext &, const iphdr *, unsigned);
+       void handle_tcp(CaptureContext &, const tcphdr *, unsigned);
+       void handle_udp(CaptureContext &, const udphdr *, unsigned);
+       void handle_packet(CaptureContext &);
 
        void sighandler(int);
-
-       static Application::RegApp<NetVis> reg;
 };
 
 #endif