2019-07-28 10:31:56 +08:00
|
|
|
#include "stdafx.h"
|
2018-11-30 14:38:22 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
class myfiber : public acl::fiber
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
myfiber(void) {}
|
|
|
|
~myfiber(void) {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// @override
|
|
|
|
void run(void)
|
|
|
|
{
|
|
|
|
printf("fiber-%d-%d running\r\n", get_id(), acl::fiber::self());
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef ACL_USE_CPP11
|
|
|
|
|
|
|
|
static void fiber1(void)
|
|
|
|
{
|
|
|
|
printf("in fiber: %d\r\n", acl::fiber::self());
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fiber2(int n, const char* s)
|
|
|
|
{
|
|
|
|
printf("in fiber: %d, n: %d, s: %s\r\n", acl::fiber::self(), n, s);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fiber3(acl::string& buf)
|
|
|
|
{
|
|
|
|
printf("in fiber: %d, buf: %s\r\n", acl::fiber::self(), buf.c_str());
|
|
|
|
buf = "world";
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fiber4(const acl::string& buf)
|
|
|
|
{
|
|
|
|
printf("in fiber: %d, buf: %s\r\n", acl::fiber::self(), buf.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void usage(const char* procname)
|
|
|
|
{
|
|
|
|
printf("usage: %s -h [help] -n fibers_count\r\n", procname);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int ch, n = 10;
|
|
|
|
|
|
|
|
acl::acl_cpp_init();
|
|
|
|
acl::log::stdout_open(true);
|
|
|
|
|
|
|
|
while ((ch = getopt(argc, argv, "hn:")) > 0)
|
|
|
|
{
|
|
|
|
switch (ch)
|
|
|
|
{
|
|
|
|
case 'h':
|
|
|
|
usage(argv[0]);
|
|
|
|
return 0;
|
|
|
|
case 'n':
|
|
|
|
n = atoi(optarg);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < n; i++)
|
|
|
|
{
|
|
|
|
acl::fiber* f = new myfiber();
|
|
|
|
f->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ACL_USE_CPP11
|
|
|
|
go fiber1;
|
|
|
|
|
|
|
|
go[=] {
|
|
|
|
fiber2(n, "hello world");
|
|
|
|
};
|
|
|
|
|
|
|
|
acl::string buf("hello");
|
|
|
|
|
|
|
|
go[&] {
|
|
|
|
fiber3(buf);
|
|
|
|
};
|
|
|
|
|
|
|
|
go[&] {
|
|
|
|
fiber4(buf);
|
|
|
|
};
|
|
|
|
|
|
|
|
go[=] {
|
|
|
|
fiber4(buf);
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
acl::fiber::schedule();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|