diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-21 17:06:20 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-21 17:06:20 +0000 |
commit | 21193e2e625859978e98b278beda00181fcd317c (patch) | |
tree | 6d1ee4085e38ceb52c02edef9de730a5dc30cfd8 | |
parent | 14b1960421814bcc6e5a744dad3d0b6d81a2771c (diff) |
Threadengine stuff
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8980 e03df62e-2008-0410-955e-edbf42e46eb7
-rwxr-xr-x | configure | 3 | ||||
-rw-r--r-- | include/threadengines/threadengine_pthread.h | 8 | ||||
-rw-r--r-- | src/testsuite.cpp | 68 |
3 files changed, 76 insertions, 3 deletions
@@ -1153,6 +1153,7 @@ sub writefiles { #define OPTIMISATION $config{OPTIMITEMP} #define LIBRARYDIR "$config{LIBRARY_DIR}" #define SYSTEM "$incos" + EOF print FILEHANDLE "#define MAXBUF " . ($config{MAXBUF}+2) . "\n"; @@ -1199,7 +1200,7 @@ print FILEHANDLE "#define MAXBUF " . ($config{MAXBUF}+2) . "\n"; print FILEHANDLE "#define USE_SELECT\n"; $se = "socketengine_select"; } - print FILEHANDLE "\n#endif\n"; + print FILEHANDLE "\n#include \"include/threadengines/threadengine_pthread.h\"\n\n#endif\n"; close(FILEHANDLE); } diff --git a/include/threadengines/threadengine_pthread.h b/include/threadengines/threadengine_pthread.h index 2c821d93d..e8f7a4087 100644 --- a/include/threadengines/threadengine_pthread.h +++ b/include/threadengines/threadengine_pthread.h @@ -40,4 +40,12 @@ class CoreExport PThreadEngine : public ThreadEngine void FreeThread(Thread* thread); }; +class ThreadEngineFactory : public classbase +{ + ThreadEngine* Create(InspIRCd* ServerInstance) + { + return new PThreadEngine(ServerInstance); + } +}; + #endif diff --git a/src/testsuite.cpp b/src/testsuite.cpp index f02b3aed3..a129ecc72 100644 --- a/src/testsuite.cpp +++ b/src/testsuite.cpp @@ -15,15 +15,39 @@ #include "inspircd.h" #include "testsuite.h" +#include "threadengine.h" #include <iostream> using namespace std; +class TestSuiteThread : public Thread +{ + TestSuiteThread() : Thread() + { + } + + virtual ~TestSuiteThread() + { + } + + virtual void Run() + { + while (1) + { + cout << "Test suite thread run...\n"; + sleep(10); + } + } +}; + TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance) { cout << "\n\n*** STARTING TESTSUITE ***\n"; std::string modname; + std::string choice; + + ServerInstance->SE->Blocking(fileno(stdin)); while (1) { @@ -31,8 +55,13 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance) cout << "(2) Load a module\n"; cout << "(3) Unload a module\n"; cout << "(4) Threading tests\n"; - - switch (fgetc(stdin)) + + cout << endl << "(X) Exit test suite\n"; + + cout << "\nChoice: "; + cin >> choice; + + switch (*choice.begin()) { case '1': FOREACH_MOD(I_OnRunTestSuite, OnRunTestSuite()); @@ -50,6 +79,12 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance) case '4': cout << (DoThreadTests() ? "\nSUCCESS!\n" : "\nFAILURE\n"); break; + case 'X': + return; + break; + default: + cout << "Invalid option\n"; + break; } cout << endl; } @@ -57,6 +92,35 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance) bool TestSuite::DoThreadTests() { + std::string anything; + cout << "Creating new ThreadEngine class...\n"; + try + { + ThreadEngineFactory* tef = new ThreadEngineFactory(); + ThreadEngine* te = tef->Create(ServerInstance); + delete tef; + } + catch (...) + { + cout << "Creation failed, test failure.\n"; + return false; + } + cout << "Creation success!\n"; + + cout << "Creating new thread of type TestSuiteThread\n"; + + TestSuiteThread* tst = new TestSuiteThread(); + + te->Create(tst); + + cout >> "Press enter to end test."; + cin >> anything; + + /* Auto frees thread */ + delete tst; + + delete te; + return true; } |