├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── README.md ├── common ├── Makefile ├── README.md ├── cloud │ ├── const.h │ ├── exception.cpp │ ├── exception.h │ ├── homacro.h │ ├── iobuff .cpp │ ├── iobuff.h │ ├── msgid.h │ ├── svrprop.cpp │ ├── svrprop.h │ ├── switchhand.cpp │ └── switchhand.h ├── comm │ ├── base64.cpp │ ├── base64.h │ ├── compress.cpp │ ├── compress.h │ ├── config.cpp │ ├── config.h │ ├── daemon.h │ ├── decode.cpp │ ├── decode.h │ ├── decode.o │ ├── des_code.cpp │ ├── des_code.h │ ├── file.cpp │ ├── file.h │ ├── fincall.h │ ├── hep_base.cpp │ ├── hep_base.h │ ├── hepoll.cpp │ ├── hepoll.h │ ├── i_taskrun.h │ ├── ipc_shm.cpp │ ├── ipc_shm.h │ ├── lock.cpp │ ├── lock.h │ ├── log.cpp │ ├── log.h │ ├── makezip.cpp │ ├── makezip.h │ ├── makezip.o │ ├── maprange.hpp │ ├── md5.cpp │ ├── md5.h │ ├── md5.o │ ├── mutiprocess.h │ ├── public.h │ ├── queue.cpp │ ├── queue.h │ ├── simplehttp.cpp │ ├── simplehttp.h │ ├── sock.cpp │ ├── sock.h │ ├── strparse.cpp │ ├── strparse.h │ ├── taskpool.cpp │ ├── taskpool.h │ ├── taskpool.hpp │ ├── testConfig.cpp │ ├── testLog.cpp │ ├── thread.cpp │ ├── thread.h │ ├── timef.cpp │ ├── timef.h │ ├── timespand.cpp │ ├── timespand.h │ ├── tools.cpp │ ├── tools.h │ ├── tools.o │ └── version.h ├── rapidjson │ ├── allocators.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ │ ├── en.h │ │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── fwd.h │ ├── internal │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ ├── istreamwrapper.h │ ├── json.hpp │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ ├── ostreamwrapper.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── schema.h │ ├── stream.h │ ├── stringbuffer.h │ └── writer.h ├── rapidxml │ ├── a.out │ ├── bmshxml.cpp │ ├── bmshxml.hpp │ ├── license.txt │ ├── manual.html │ ├── rapidxml.hpp │ ├── rapidxml_iterators.hpp │ ├── rapidxml_print.hpp │ ├── rapidxml_utils.hpp │ └── test.cpp ├── redis │ ├── redis.cpp │ ├── redis.h │ ├── redispool.cpp │ ├── redispool.h │ ├── redispooladmin.cpp │ └── redispooladmin.h └── tinyxml │ ├── bmshxml.cpp │ ├── bmshxml.h │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxmlerror.cpp │ └── tinyxmlparser.cpp ├── cpp_sdk ├── Makefile ├── agent_prvd.cpp ├── asyncprvdmsg.cpp ├── asyncprvdmsg.h ├── client_c.cpp ├── client_c.hpp ├── climanage.cpp ├── climanage.h ├── cloudapp.cpp ├── cloudapp.h ├── config_json.cpp ├── config_json.h ├── config_mgr.cpp ├── config_mgr.h ├── iohand.cpp ├── iohand.h ├── listen.cpp ├── listen.h ├── msgprop.h ├── provd_mgr.cpp ├── provd_mgr.h ├── sample_conf.cpp ├── sample_http_invk.cpp ├── sample_prvd.cpp ├── sample_prvd0.cpp ├── sample_tcp_invk.cpp ├── shttp_invoker_mgr.cpp ├── shttp_invoker_mgr.h ├── svr_item.cpp ├── svr_item.h ├── svr_stat.cpp ├── svr_stat.h ├── svrconsumer.cpp ├── svrconsumer.h ├── synchand.cpp ├── synchand.h ├── sysinfo.cpp ├── tcp_invoker.cpp ├── tcp_invoker.h ├── tcp_invoker_mgr.cpp ├── tcp_invoker_mgr.h ├── tcpaio_invoker.cpp ├── tcpaio_invoker.h ├── tcpaio_invoker_mgr.cpp └── tcpaio_invoker_mgr.h ├── docker ├── Dockerfile ├── Dockerfile-py ├── Makefile ├── docker-compose.yml ├── docker-entrypoint-py.sh ├── docker-entrypoint.sh ├── help.txt ├── sample-run.yml ├── sample_call_model.sh └── test.sh ├── python_sdk ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── cppcloud │ ├── __init__.py │ ├── cliconfig.py │ ├── cloudapp.py │ ├── cloudconf.py │ ├── cloudinvoker.py │ ├── const.py │ ├── fileop.py │ ├── invokercli.py │ ├── provider.py │ ├── svrstat.py │ ├── tcpcli.py │ ├── tcpclient.py │ └── tcpprovider.py ├── sample_http_invk.py ├── sample_http_prvd.py ├── sample_tcp_invk.py ├── sample_tcp_prvd.py └── setup.py ├── server ├── Makefile ├── README.md ├── act_mgr.cpp ├── act_mgr.h ├── begn_hand.cpp ├── begn_hand.h ├── broadcastcli.cpp ├── broadcastcli.h ├── clibase.cpp ├── clibase.h ├── climanage.cpp ├── climanage.h ├── conf │ ├── _meta.json │ ├── agent_prvd.json │ ├── app1.json │ ├── test1.json │ └── test2.json ├── cppcloud_config.cpp ├── cppcloud_config.h ├── default_hand.cpp ├── default_hand.h ├── des_string.cpp ├── docs │ ├── api.md │ ├── cloudcfg.md │ ├── hocfg.md │ └── protocol.md ├── flowctrl.cpp ├── flowctrl.h ├── hocfg_mgr.cpp ├── hocfg_mgr.h ├── idmanage.cpp ├── idmanage.h ├── iohand.cpp ├── iohand.h ├── ipcmsg.cpp ├── ipcmsg.h ├── itimetask.h ├── keepaliver.cpp ├── keepaliver.h ├── listen.cpp ├── listen.h ├── main.cpp ├── outer_cli.cpp ├── outer_cli.h ├── outer_serv.cpp ├── outer_serv.h ├── peer_cli.cpp ├── peer_cli.h ├── peer_mgr.cpp ├── peer_mgr.h ├── peer_serv.cpp ├── peer_serv.h ├── provider_manage.cpp ├── provider_manage.h ├── query_hand.cpp ├── query_hand.h ├── route_exchange.cpp ├── route_exchange.h ├── service_provider.cpp └── service_provider.h └── web_py ├── LICENSE ├── MANIFEST ├── MANIFEST.in ├── Makefile ├── README.md ├── setup.py └── src ├── cppcloud_web.py └── static ├── about.html ├── conf.html ├── conf.js ├── help.html ├── index.html ├── jquery-3.3.1.js ├── log.html ├── log.js ├── main.css ├── main.html ├── main.js ├── process.html ├── prvd.html ├── prvd.js ├── setconf.html └── svr.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/README.md -------------------------------------------------------------------------------- /common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/Makefile -------------------------------------------------------------------------------- /common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/README.md -------------------------------------------------------------------------------- /common/cloud/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/cloud/const.h -------------------------------------------------------------------------------- /common/cloud/exception.cpp: -------------------------------------------------------------------------------- 1 | #include "exception.h" -------------------------------------------------------------------------------- /common/cloud/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/cloud/exception.h -------------------------------------------------------------------------------- /common/cloud/homacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/cloud/homacro.h -------------------------------------------------------------------------------- /common/cloud/iobuff .cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/cloud/iobuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/cloud/iobuff.h -------------------------------------------------------------------------------- /common/cloud/msgid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/cloud/msgid.h -------------------------------------------------------------------------------- /common/cloud/svrprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/cloud/svrprop.cpp -------------------------------------------------------------------------------- /common/cloud/svrprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/cloud/svrprop.h -------------------------------------------------------------------------------- /common/cloud/switchhand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/cloud/switchhand.cpp -------------------------------------------------------------------------------- /common/cloud/switchhand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/cloud/switchhand.h -------------------------------------------------------------------------------- /common/comm/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/base64.cpp -------------------------------------------------------------------------------- /common/comm/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/base64.h -------------------------------------------------------------------------------- /common/comm/compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/compress.cpp -------------------------------------------------------------------------------- /common/comm/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/compress.h -------------------------------------------------------------------------------- /common/comm/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/config.cpp -------------------------------------------------------------------------------- /common/comm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/config.h -------------------------------------------------------------------------------- /common/comm/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/daemon.h -------------------------------------------------------------------------------- /common/comm/decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/decode.cpp -------------------------------------------------------------------------------- /common/comm/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/decode.h -------------------------------------------------------------------------------- /common/comm/decode.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/decode.o -------------------------------------------------------------------------------- /common/comm/des_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/des_code.cpp -------------------------------------------------------------------------------- /common/comm/des_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/des_code.h -------------------------------------------------------------------------------- /common/comm/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/file.cpp -------------------------------------------------------------------------------- /common/comm/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/file.h -------------------------------------------------------------------------------- /common/comm/fincall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/fincall.h -------------------------------------------------------------------------------- /common/comm/hep_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/hep_base.cpp -------------------------------------------------------------------------------- /common/comm/hep_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/hep_base.h -------------------------------------------------------------------------------- /common/comm/hepoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/hepoll.cpp -------------------------------------------------------------------------------- /common/comm/hepoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/hepoll.h -------------------------------------------------------------------------------- /common/comm/i_taskrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/i_taskrun.h -------------------------------------------------------------------------------- /common/comm/ipc_shm.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/comm/ipc_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/ipc_shm.h -------------------------------------------------------------------------------- /common/comm/lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/lock.cpp -------------------------------------------------------------------------------- /common/comm/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/lock.h -------------------------------------------------------------------------------- /common/comm/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/log.cpp -------------------------------------------------------------------------------- /common/comm/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/log.h -------------------------------------------------------------------------------- /common/comm/makezip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/makezip.cpp -------------------------------------------------------------------------------- /common/comm/makezip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/makezip.h -------------------------------------------------------------------------------- /common/comm/makezip.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/makezip.o -------------------------------------------------------------------------------- /common/comm/maprange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/maprange.hpp -------------------------------------------------------------------------------- /common/comm/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/md5.cpp -------------------------------------------------------------------------------- /common/comm/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/md5.h -------------------------------------------------------------------------------- /common/comm/md5.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/md5.o -------------------------------------------------------------------------------- /common/comm/mutiprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/mutiprocess.h -------------------------------------------------------------------------------- /common/comm/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/public.h -------------------------------------------------------------------------------- /common/comm/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/queue.cpp -------------------------------------------------------------------------------- /common/comm/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/queue.h -------------------------------------------------------------------------------- /common/comm/simplehttp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/simplehttp.cpp -------------------------------------------------------------------------------- /common/comm/simplehttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/simplehttp.h -------------------------------------------------------------------------------- /common/comm/sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/sock.cpp -------------------------------------------------------------------------------- /common/comm/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/sock.h -------------------------------------------------------------------------------- /common/comm/strparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/strparse.cpp -------------------------------------------------------------------------------- /common/comm/strparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/strparse.h -------------------------------------------------------------------------------- /common/comm/taskpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/taskpool.cpp -------------------------------------------------------------------------------- /common/comm/taskpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/taskpool.h -------------------------------------------------------------------------------- /common/comm/taskpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/taskpool.hpp -------------------------------------------------------------------------------- /common/comm/testConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/testConfig.cpp -------------------------------------------------------------------------------- /common/comm/testLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/testLog.cpp -------------------------------------------------------------------------------- /common/comm/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/thread.cpp -------------------------------------------------------------------------------- /common/comm/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/thread.h -------------------------------------------------------------------------------- /common/comm/timef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/timef.cpp -------------------------------------------------------------------------------- /common/comm/timef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/timef.h -------------------------------------------------------------------------------- /common/comm/timespand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/timespand.cpp -------------------------------------------------------------------------------- /common/comm/timespand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/timespand.h -------------------------------------------------------------------------------- /common/comm/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/tools.cpp -------------------------------------------------------------------------------- /common/comm/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/tools.h -------------------------------------------------------------------------------- /common/comm/tools.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/tools.o -------------------------------------------------------------------------------- /common/comm/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/comm/version.h -------------------------------------------------------------------------------- /common/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/allocators.h -------------------------------------------------------------------------------- /common/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/document.h -------------------------------------------------------------------------------- /common/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /common/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/encodings.h -------------------------------------------------------------------------------- /common/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/error/en.h -------------------------------------------------------------------------------- /common/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/error/error.h -------------------------------------------------------------------------------- /common/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /common/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /common/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/fwd.h -------------------------------------------------------------------------------- /common/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /common/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /common/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /common/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /common/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /common/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /common/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /common/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /common/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /common/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /common/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /common/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /common/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /common/rapidjson/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/json.hpp -------------------------------------------------------------------------------- /common/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /common/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/memorystream.h -------------------------------------------------------------------------------- /common/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /common/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /common/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /common/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/pointer.h -------------------------------------------------------------------------------- /common/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /common/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /common/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/reader.h -------------------------------------------------------------------------------- /common/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/schema.h -------------------------------------------------------------------------------- /common/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/stream.h -------------------------------------------------------------------------------- /common/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /common/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidjson/writer.h -------------------------------------------------------------------------------- /common/rapidxml/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidxml/a.out -------------------------------------------------------------------------------- /common/rapidxml/bmshxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidxml/bmshxml.cpp -------------------------------------------------------------------------------- /common/rapidxml/bmshxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidxml/bmshxml.hpp -------------------------------------------------------------------------------- /common/rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidxml/license.txt -------------------------------------------------------------------------------- /common/rapidxml/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidxml/manual.html -------------------------------------------------------------------------------- /common/rapidxml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidxml/rapidxml.hpp -------------------------------------------------------------------------------- /common/rapidxml/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidxml/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /common/rapidxml/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidxml/rapidxml_print.hpp -------------------------------------------------------------------------------- /common/rapidxml/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidxml/rapidxml_utils.hpp -------------------------------------------------------------------------------- /common/rapidxml/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/rapidxml/test.cpp -------------------------------------------------------------------------------- /common/redis/redis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/redis/redis.cpp -------------------------------------------------------------------------------- /common/redis/redis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/redis/redis.h -------------------------------------------------------------------------------- /common/redis/redispool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/redis/redispool.cpp -------------------------------------------------------------------------------- /common/redis/redispool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/redis/redispool.h -------------------------------------------------------------------------------- /common/redis/redispooladmin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/redis/redispooladmin.cpp -------------------------------------------------------------------------------- /common/redis/redispooladmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/redis/redispooladmin.h -------------------------------------------------------------------------------- /common/tinyxml/bmshxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/tinyxml/bmshxml.cpp -------------------------------------------------------------------------------- /common/tinyxml/bmshxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/tinyxml/bmshxml.h -------------------------------------------------------------------------------- /common/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /common/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/tinyxml/tinystr.h -------------------------------------------------------------------------------- /common/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /common/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /common/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /common/tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/common/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /cpp_sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/Makefile -------------------------------------------------------------------------------- /cpp_sdk/agent_prvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/agent_prvd.cpp -------------------------------------------------------------------------------- /cpp_sdk/asyncprvdmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/asyncprvdmsg.cpp -------------------------------------------------------------------------------- /cpp_sdk/asyncprvdmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/asyncprvdmsg.h -------------------------------------------------------------------------------- /cpp_sdk/client_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/client_c.cpp -------------------------------------------------------------------------------- /cpp_sdk/client_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/client_c.hpp -------------------------------------------------------------------------------- /cpp_sdk/climanage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/climanage.cpp -------------------------------------------------------------------------------- /cpp_sdk/climanage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/climanage.h -------------------------------------------------------------------------------- /cpp_sdk/cloudapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/cloudapp.cpp -------------------------------------------------------------------------------- /cpp_sdk/cloudapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/cloudapp.h -------------------------------------------------------------------------------- /cpp_sdk/config_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/config_json.cpp -------------------------------------------------------------------------------- /cpp_sdk/config_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/config_json.h -------------------------------------------------------------------------------- /cpp_sdk/config_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/config_mgr.cpp -------------------------------------------------------------------------------- /cpp_sdk/config_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/config_mgr.h -------------------------------------------------------------------------------- /cpp_sdk/iohand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/iohand.cpp -------------------------------------------------------------------------------- /cpp_sdk/iohand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/iohand.h -------------------------------------------------------------------------------- /cpp_sdk/listen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/listen.cpp -------------------------------------------------------------------------------- /cpp_sdk/listen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/listen.h -------------------------------------------------------------------------------- /cpp_sdk/msgprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/msgprop.h -------------------------------------------------------------------------------- /cpp_sdk/provd_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/provd_mgr.cpp -------------------------------------------------------------------------------- /cpp_sdk/provd_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/provd_mgr.h -------------------------------------------------------------------------------- /cpp_sdk/sample_conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/sample_conf.cpp -------------------------------------------------------------------------------- /cpp_sdk/sample_http_invk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/sample_http_invk.cpp -------------------------------------------------------------------------------- /cpp_sdk/sample_prvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/sample_prvd.cpp -------------------------------------------------------------------------------- /cpp_sdk/sample_prvd0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/sample_prvd0.cpp -------------------------------------------------------------------------------- /cpp_sdk/sample_tcp_invk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/sample_tcp_invk.cpp -------------------------------------------------------------------------------- /cpp_sdk/shttp_invoker_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/shttp_invoker_mgr.cpp -------------------------------------------------------------------------------- /cpp_sdk/shttp_invoker_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/shttp_invoker_mgr.h -------------------------------------------------------------------------------- /cpp_sdk/svr_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/svr_item.cpp -------------------------------------------------------------------------------- /cpp_sdk/svr_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/svr_item.h -------------------------------------------------------------------------------- /cpp_sdk/svr_stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/svr_stat.cpp -------------------------------------------------------------------------------- /cpp_sdk/svr_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/svr_stat.h -------------------------------------------------------------------------------- /cpp_sdk/svrconsumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/svrconsumer.cpp -------------------------------------------------------------------------------- /cpp_sdk/svrconsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/svrconsumer.h -------------------------------------------------------------------------------- /cpp_sdk/synchand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/synchand.cpp -------------------------------------------------------------------------------- /cpp_sdk/synchand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/synchand.h -------------------------------------------------------------------------------- /cpp_sdk/sysinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/sysinfo.cpp -------------------------------------------------------------------------------- /cpp_sdk/tcp_invoker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/tcp_invoker.cpp -------------------------------------------------------------------------------- /cpp_sdk/tcp_invoker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/tcp_invoker.h -------------------------------------------------------------------------------- /cpp_sdk/tcp_invoker_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/tcp_invoker_mgr.cpp -------------------------------------------------------------------------------- /cpp_sdk/tcp_invoker_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/tcp_invoker_mgr.h -------------------------------------------------------------------------------- /cpp_sdk/tcpaio_invoker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/tcpaio_invoker.cpp -------------------------------------------------------------------------------- /cpp_sdk/tcpaio_invoker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/tcpaio_invoker.h -------------------------------------------------------------------------------- /cpp_sdk/tcpaio_invoker_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/tcpaio_invoker_mgr.cpp -------------------------------------------------------------------------------- /cpp_sdk/tcpaio_invoker_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/cpp_sdk/tcpaio_invoker_mgr.h -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile-py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/docker/Dockerfile-py -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/docker/Makefile -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-entrypoint-py.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/docker/docker-entrypoint-py.sh -------------------------------------------------------------------------------- /docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/docker/help.txt -------------------------------------------------------------------------------- /docker/sample-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/docker/sample-run.yml -------------------------------------------------------------------------------- /docker/sample_call_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/docker/sample_call_model.sh -------------------------------------------------------------------------------- /docker/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/docker/test.sh -------------------------------------------------------------------------------- /python_sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/LICENSE -------------------------------------------------------------------------------- /python_sdk/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE 2 | -------------------------------------------------------------------------------- /python_sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/Makefile -------------------------------------------------------------------------------- /python_sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/README.md -------------------------------------------------------------------------------- /python_sdk/cppcloud/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/cppcloud/__init__.py -------------------------------------------------------------------------------- /python_sdk/cppcloud/cliconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/cppcloud/cliconfig.py -------------------------------------------------------------------------------- /python_sdk/cppcloud/cloudapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/cppcloud/cloudapp.py -------------------------------------------------------------------------------- /python_sdk/cppcloud/cloudconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/cppcloud/cloudconf.py -------------------------------------------------------------------------------- /python_sdk/cppcloud/cloudinvoker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/cppcloud/cloudinvoker.py -------------------------------------------------------------------------------- /python_sdk/cppcloud/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/cppcloud/const.py -------------------------------------------------------------------------------- /python_sdk/cppcloud/fileop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/cppcloud/fileop.py -------------------------------------------------------------------------------- /python_sdk/cppcloud/invokercli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/cppcloud/invokercli.py -------------------------------------------------------------------------------- /python_sdk/cppcloud/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/cppcloud/provider.py -------------------------------------------------------------------------------- /python_sdk/cppcloud/svrstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/cppcloud/svrstat.py -------------------------------------------------------------------------------- /python_sdk/cppcloud/tcpcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/cppcloud/tcpcli.py -------------------------------------------------------------------------------- /python_sdk/cppcloud/tcpclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/cppcloud/tcpclient.py -------------------------------------------------------------------------------- /python_sdk/cppcloud/tcpprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/cppcloud/tcpprovider.py -------------------------------------------------------------------------------- /python_sdk/sample_http_invk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/sample_http_invk.py -------------------------------------------------------------------------------- /python_sdk/sample_http_prvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/sample_http_prvd.py -------------------------------------------------------------------------------- /python_sdk/sample_tcp_invk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/sample_tcp_invk.py -------------------------------------------------------------------------------- /python_sdk/sample_tcp_prvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/sample_tcp_prvd.py -------------------------------------------------------------------------------- /python_sdk/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/python_sdk/setup.py -------------------------------------------------------------------------------- /server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/Makefile -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/README.md -------------------------------------------------------------------------------- /server/act_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/act_mgr.cpp -------------------------------------------------------------------------------- /server/act_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/act_mgr.h -------------------------------------------------------------------------------- /server/begn_hand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/begn_hand.cpp -------------------------------------------------------------------------------- /server/begn_hand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/begn_hand.h -------------------------------------------------------------------------------- /server/broadcastcli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/broadcastcli.cpp -------------------------------------------------------------------------------- /server/broadcastcli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/broadcastcli.h -------------------------------------------------------------------------------- /server/clibase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/clibase.cpp -------------------------------------------------------------------------------- /server/clibase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/clibase.h -------------------------------------------------------------------------------- /server/climanage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/climanage.cpp -------------------------------------------------------------------------------- /server/climanage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/climanage.h -------------------------------------------------------------------------------- /server/conf/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/conf/_meta.json -------------------------------------------------------------------------------- /server/conf/agent_prvd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/conf/agent_prvd.json -------------------------------------------------------------------------------- /server/conf/app1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/conf/app1.json -------------------------------------------------------------------------------- /server/conf/test1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/conf/test1.json -------------------------------------------------------------------------------- /server/conf/test2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/conf/test2.json -------------------------------------------------------------------------------- /server/cppcloud_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/cppcloud_config.cpp -------------------------------------------------------------------------------- /server/cppcloud_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/cppcloud_config.h -------------------------------------------------------------------------------- /server/default_hand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/default_hand.cpp -------------------------------------------------------------------------------- /server/default_hand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/default_hand.h -------------------------------------------------------------------------------- /server/des_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/des_string.cpp -------------------------------------------------------------------------------- /server/docs/api.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/docs/cloudcfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/docs/cloudcfg.md -------------------------------------------------------------------------------- /server/docs/hocfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/docs/hocfg.md -------------------------------------------------------------------------------- /server/docs/protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/docs/protocol.md -------------------------------------------------------------------------------- /server/flowctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/flowctrl.cpp -------------------------------------------------------------------------------- /server/flowctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/flowctrl.h -------------------------------------------------------------------------------- /server/hocfg_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/hocfg_mgr.cpp -------------------------------------------------------------------------------- /server/hocfg_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/hocfg_mgr.h -------------------------------------------------------------------------------- /server/idmanage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/idmanage.cpp -------------------------------------------------------------------------------- /server/idmanage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/idmanage.h -------------------------------------------------------------------------------- /server/iohand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/iohand.cpp -------------------------------------------------------------------------------- /server/iohand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/iohand.h -------------------------------------------------------------------------------- /server/ipcmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/ipcmsg.cpp -------------------------------------------------------------------------------- /server/ipcmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/ipcmsg.h -------------------------------------------------------------------------------- /server/itimetask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/itimetask.h -------------------------------------------------------------------------------- /server/keepaliver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/keepaliver.cpp -------------------------------------------------------------------------------- /server/keepaliver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/keepaliver.h -------------------------------------------------------------------------------- /server/listen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/listen.cpp -------------------------------------------------------------------------------- /server/listen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/listen.h -------------------------------------------------------------------------------- /server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/main.cpp -------------------------------------------------------------------------------- /server/outer_cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/outer_cli.cpp -------------------------------------------------------------------------------- /server/outer_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/outer_cli.h -------------------------------------------------------------------------------- /server/outer_serv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/outer_serv.cpp -------------------------------------------------------------------------------- /server/outer_serv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/outer_serv.h -------------------------------------------------------------------------------- /server/peer_cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/peer_cli.cpp -------------------------------------------------------------------------------- /server/peer_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/peer_cli.h -------------------------------------------------------------------------------- /server/peer_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/peer_mgr.cpp -------------------------------------------------------------------------------- /server/peer_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/peer_mgr.h -------------------------------------------------------------------------------- /server/peer_serv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/peer_serv.cpp -------------------------------------------------------------------------------- /server/peer_serv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/peer_serv.h -------------------------------------------------------------------------------- /server/provider_manage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/provider_manage.cpp -------------------------------------------------------------------------------- /server/provider_manage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/provider_manage.h -------------------------------------------------------------------------------- /server/query_hand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/query_hand.cpp -------------------------------------------------------------------------------- /server/query_hand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/query_hand.h -------------------------------------------------------------------------------- /server/route_exchange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/route_exchange.cpp -------------------------------------------------------------------------------- /server/route_exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/route_exchange.h -------------------------------------------------------------------------------- /server/service_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/service_provider.cpp -------------------------------------------------------------------------------- /server/service_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/server/service_provider.h -------------------------------------------------------------------------------- /web_py/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/LICENSE -------------------------------------------------------------------------------- /web_py/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/MANIFEST -------------------------------------------------------------------------------- /web_py/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/MANIFEST.in -------------------------------------------------------------------------------- /web_py/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/Makefile -------------------------------------------------------------------------------- /web_py/README.md: -------------------------------------------------------------------------------- 1 | ## CppCloud Web system & REST Api 2 | -------------------------------------------------------------------------------- /web_py/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/setup.py -------------------------------------------------------------------------------- /web_py/src/cppcloud_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/cppcloud_web.py -------------------------------------------------------------------------------- /web_py/src/static/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/about.html -------------------------------------------------------------------------------- /web_py/src/static/conf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/conf.html -------------------------------------------------------------------------------- /web_py/src/static/conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/conf.js -------------------------------------------------------------------------------- /web_py/src/static/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/help.html -------------------------------------------------------------------------------- /web_py/src/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/index.html -------------------------------------------------------------------------------- /web_py/src/static/jquery-3.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/jquery-3.3.1.js -------------------------------------------------------------------------------- /web_py/src/static/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/log.html -------------------------------------------------------------------------------- /web_py/src/static/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/log.js -------------------------------------------------------------------------------- /web_py/src/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/main.css -------------------------------------------------------------------------------- /web_py/src/static/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/main.html -------------------------------------------------------------------------------- /web_py/src/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/main.js -------------------------------------------------------------------------------- /web_py/src/static/process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/process.html -------------------------------------------------------------------------------- /web_py/src/static/prvd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/prvd.html -------------------------------------------------------------------------------- /web_py/src/static/prvd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/prvd.js -------------------------------------------------------------------------------- /web_py/src/static/setconf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/setconf.html -------------------------------------------------------------------------------- /web_py/src/static/svr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kawloong/CppCloud/HEAD/web_py/src/static/svr.html --------------------------------------------------------------------------------