]> git.llucax.com Git - software/eventxx.git/commitdiff
Rename event namespace to eventxx.
authorLeandro Lucarella <llucarella@integratech.com.ar>
Tue, 2 Jan 2007 15:09:18 +0000 (15:09 +0000)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Tue, 2 Jan 2007 15:09:18 +0000 (15:09 +0000)
This renaming is for the sake of clarity, so libevent and eventxx don't get
confused (by the compiler, by the documentation tools, by the man page reader,
etc.).

Doxyfile
eventxx [moved from event with 96% similarity]
test/bench.cpp
test/test-eof.cpp
test/test-time.cpp
test/test-weof.cpp

index c22e4e26d2f2d10103d0dfc4afef1743a1b25404..2826e0bd20e50b839189aaaf1d230df8578f83ed 100644 (file)
--- a/Doxyfile
+++ b/Doxyfile
@@ -17,7 +17,7 @@
 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 
 # by quotes) that should identify the project.
 
-PROJECT_NAME           = libeventxx
+PROJECT_NAME           = eventxx
 
 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 
 # This could be handy for archiving the generated documentation or 
@@ -459,7 +459,7 @@ WARN_LOGFILE           =
 # directories like "/usr/src/myproject". Separate the files or directories 
 # with spaces.
 
-INPUT                  = event
+INPUT                  = eventxx
 
 # If the value of the INPUT tag contains directories, you can use the 
 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
diff --git a/event b/eventxx
similarity index 96%
rename from event
rename to eventxx
index 0db8728b0e49308c20bed3d539baa6a67d46a9f6..080f40c3c5251fdbeb2f8e8fb54f04430781e216 100644 (file)
--- a/event
+++ b/eventxx
@@ -1,5 +1,5 @@
-#ifndef _EVENT_HPP_
-#define _EVENT_HPP_
+#ifndef _EVENTXX_HPP_
+#define _EVENTXX_HPP_
 
 #include <sys/types.h> // timeval (hack -> event.h don't include it)
 #include <stdexcept>   // std::exception, std::invalid_argument,
@@ -49,7 +49,7 @@
 /**
  * Namespace for all symbols libevent C++ wrapper defines.
  */
-namespace event
+namespace eventxx
 {
 
 
@@ -195,7 +195,7 @@ struct time: ::timeval
  * All events derive from this class, so it's useful for use in containers,
  * like:
  * @code
- * std::list< event::basic_event* > events;
+ * std::list< eventxx::basic_event* > events;
  * @endcode
  */
 struct basic_event: internal::event
@@ -275,7 +275,7 @@ struct basic_event: internal::event
  * version of this class which takes as the template parameter a C function
  * with the ccallback_type signature, just like C libevent API does.
  *
- * @see event::event< ccallback_type >
+ * @see eventxx::event< ccallback_type >
  */
 template < typename F >
 struct event: basic_event
@@ -310,9 +310,9 @@ struct event: basic_event
 
 
 /**
- * This is the specialization of event::event for C-style callbacks.
+ * This is the specialization of eventxx::event for C-style callbacks.
  *
- * @see event::event
+ * @see eventxx::event
  */
 template <>
 struct event< ccallback_type >: basic_event
@@ -376,13 +376,13 @@ struct timer: event< F >
 
 
 /**
- * This is the specialization of event::timer for C-style callbacks.
+ * This is the specialization of eventxx::timer for C-style callbacks.
  *
  * @note This event can't EV_PERSIST.
  * @see timer
  */
 template <>
-struct timer< ccallback_type >: event::event< ccallback_type >
+struct timer< ccallback_type >: event< ccallback_type >
 {
 
        /**
@@ -449,7 +449,7 @@ struct signal: event< F >
 
 
 /**
- * This is the specialization of event::signal for C-style callbacks.
+ * This is the specialization of eventxx::signal for C-style callbacks.
  *
  * @note This event allways EV_PERSIST.
  * @see signal
@@ -489,6 +489,16 @@ struct signal< ccallback_type >: event< ccallback_type >
 }; // struct signal< ccallback_type >
 
 
+/// Shortcut to C-style event.
+typedef eventxx::event< ccallback_type > cevent;
+
+/// Shortcut to C-style timer.
+typedef eventxx::timer< ccallback_type > ctimer;
+
+/// Shortcut to C-style signal handler.
+typedef eventxx::signal< ccallback_type > csignal;
+
+
 //@}
 
 
@@ -710,18 +720,8 @@ struct dispatcher
 }; // struct dispatcher
 
 
-/// Shortcut to C-style event.
-typedef event::event< ccallback_type > cevent;
-
-/// Shortcut to C-style timer.
-typedef event::timer< ccallback_type > ctimer;
-
-/// Shortcut to C-style signal handler.
-typedef event::signal< ccallback_type > csignal;
-
-
 } // namespace event
 
-#endif // _EVENT_HPP_
+#endif // _EVENTXX_HPP_
 
 // vim: set filetype=cpp :
index a0980129df216ce6af15938940d60ac8d156bcfc..e621ed067fed3509efd97787c6b4a6bbb3247f92 100644 (file)
 #include <cerrno>
 #include <vector>
 
-#include <event>
+#include <eventxx>
 
 
 static int count, writes, fired;
 static int *pipes;
 static int num_pipes, num_active, num_writes;
-static std::vector< event::cevent* > events;
-static event::dispatcher d;
+static std::vector< eventxx::cevent* > events;
+static eventxx::dispatcher d;
 
 
 void
@@ -81,14 +81,14 @@ read_cb(int fd, short which, void *arg)
        }
 }
 
-event::time *
+eventxx::time *
 run_once(void)
 {
        int *cp, i, space;
-       static event::time ts, te;
+       static eventxx::time ts, te;
 
        for (cp = pipes, i = 0; i < num_pipes; i++, cp += 2) {
-               events.push_back(new event::cevent(cp[0], EV_READ | EV_PERSIST,
+               events.push_back(new eventxx::cevent(cp[0], EV_READ | EV_PERSIST,
                        read_cb, (void *) i));
                d.add(*events[i]);
        }
@@ -131,7 +131,7 @@ main (int argc, char **argv)
 {
        struct rlimit rl;
        int i, c;
-       event::time* tv;
+       eventxx::time* tv;
        int *cp;
        extern char *optarg;
 
index a76b6b4abd0c7be44a471ade191a7ec817fc3fb0..41fdaaee1bfa3892deb10966112dc005635dddb5 100644 (file)
 #include <cstring>
 #include <cerrno>
 
-#include <event>
+#include <eventxx>
 
 int test_okay = 1;
 int called = 0;
-event::dispatcher d;
-event::cevent* ev;
+eventxx::dispatcher d;
+eventxx::cevent* ev;
 
 void
 read_cb(int fd, short event, void *arg)
@@ -60,7 +60,7 @@ main (int argc, char **argv)
        shutdown(pair[0], SHUT_WR);
 
        /* Initalize one event */
-       ev = new event::cevent(pair[1], EV_READ, read_cb, NULL);
+       ev = new eventxx::cevent(pair[1], EV_READ, read_cb, NULL);
 
        d.add(*ev);
 
index c1326b44a6866446589239c62fccb8228d2985b7..c3dba8dd633688b35892b9d98385f6eafdc4f7dc 100644 (file)
 #include <cstring>
 #include <cerrno>
 
-#include <event>
+#include <eventxx>
 
 int called = 0;
 
 #define NEVENT 20000
 
-event::ctimer* ev[NEVENT];
-event::dispatcher d;
+eventxx::ctimer* ev[NEVENT];
+eventxx::dispatcher d;
 
 void
 time_cb(int fd, short event, void *arg)
@@ -34,7 +34,7 @@ time_cb(int fd, short event, void *arg)
 
        if (called < 10*NEVENT) {
                for (int i = 0; i < 10; i++) {
-                       event::time tv(0, random() % 50000L);
+                       eventxx::time tv(0, random() % 50000L);
                        int j = random() % NEVENT;
                        if (tv.usec() % 2)
                                d.add(*ev[j], tv);
@@ -49,8 +49,8 @@ main (int argc, char **argv)
 {
        for (int i = 0; i < NEVENT; i++) {
                /* Initalize one event */
-               ev[i] = new event::ctimer(time_cb, NULL);
-               d.add(*ev[i], event::time(0, random() % 50000L));
+               ev[i] = new eventxx::ctimer(time_cb, NULL);
+               d.add(*ev[i], eventxx::time(0, random() % 50000L));
        }
 
        d.dispatch();
index 90f2c081e298693001579310409f4635807a6b30..8bcf6844520b7a3e55db73a59de555af11c7769b 100644 (file)
 #include <csignal>
 #include <cerrno>
 
-#include <event>
+#include <eventxx>
 
 typedef void (cb_t)(int, short);
 
 int pair[2];
 int test_okay = 1;
 int called = 0;
-event::dispatcher d;
-event::event< cb_t >* ev;
+eventxx::dispatcher d;
+eventxx::event< cb_t >* ev;
 
 void
 write_cb(int fd, short event)
@@ -61,7 +61,7 @@ main (int argc, char **argv)
                return (1);
 
        /* Initalize one event */
-       ev = new event::event< cb_t >(pair[1], EV_WRITE, write_cb);
+       ev = new eventxx::event< cb_t >(pair[1], EV_WRITE, write_cb);
 
        d.add(*ev);