├── .DS_Store ├── .gitignore ├── Makefile ├── Makefile.define ├── Makefile.proto ├── README.md ├── autogen.sh ├── data ├── README.md ├── traderDialogRsp.con ├── traderPrivate.con ├── traderPublic.con ├── traderQueryRsp.con └── traderTradingDay.con ├── deps └── README.md ├── doc ├── README.md ├── libuv-server.png └── node-client.png ├── messages └── README.md ├── scripts ├── README.md ├── net_client.js └── start_service.sh └── src ├── base ├── base.h └── version.h ├── database ├── MysqlEngine.h └── mysqlengine.cc ├── io ├── libuv.cc ├── libuv.h ├── response.cc └── response.h ├── server.cc ├── test └── README.md └── utils ├── define.h ├── hashfun.cc ├── hashfunc.h ├── logfile.cc ├── logfile.h ├── lrucache.cc ├── mempool.cc ├── mempool.h ├── singleton.h ├── thread.cc ├── thread.h ├── timeutils.cc └── timeutils.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/Makefile.define -------------------------------------------------------------------------------- /Makefile.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/Makefile.proto -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | brew install boost -------------------------------------------------------------------------------- /data/traderDialogRsp.con: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /data/traderPrivate.con: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /data/traderPublic.con: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /data/traderQueryRsp.con: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /data/traderTradingDay.con: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/deps/README.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/libuv-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/doc/libuv-server.png -------------------------------------------------------------------------------- /doc/node-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/doc/node-client.png -------------------------------------------------------------------------------- /messages/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/net_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/scripts/net_client.js -------------------------------------------------------------------------------- /scripts/start_service.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/base/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/base/base.h -------------------------------------------------------------------------------- /src/base/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/base/version.h -------------------------------------------------------------------------------- /src/database/MysqlEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/database/MysqlEngine.h -------------------------------------------------------------------------------- /src/database/mysqlengine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/database/mysqlengine.cc -------------------------------------------------------------------------------- /src/io/libuv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/io/libuv.cc -------------------------------------------------------------------------------- /src/io/libuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/io/libuv.h -------------------------------------------------------------------------------- /src/io/response.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/io/response.cc -------------------------------------------------------------------------------- /src/io/response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/io/response.h -------------------------------------------------------------------------------- /src/server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/server.cc -------------------------------------------------------------------------------- /src/test/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/utils/define.h -------------------------------------------------------------------------------- /src/utils/hashfun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/utils/hashfun.cc -------------------------------------------------------------------------------- /src/utils/hashfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/utils/hashfunc.h -------------------------------------------------------------------------------- /src/utils/logfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/utils/logfile.cc -------------------------------------------------------------------------------- /src/utils/logfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/utils/logfile.h -------------------------------------------------------------------------------- /src/utils/lrucache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/utils/lrucache.cc -------------------------------------------------------------------------------- /src/utils/mempool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/utils/mempool.cc -------------------------------------------------------------------------------- /src/utils/mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/utils/mempool.h -------------------------------------------------------------------------------- /src/utils/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/utils/singleton.h -------------------------------------------------------------------------------- /src/utils/thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/utils/thread.cc -------------------------------------------------------------------------------- /src/utils/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/utils/thread.h -------------------------------------------------------------------------------- /src/utils/timeutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/utils/timeutils.cc -------------------------------------------------------------------------------- /src/utils/timeutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIME-GATE/libuv-service/HEAD/src/utils/timeutils.h --------------------------------------------------------------------------------