├── README.md ├── bin ├── Makefile ├── ctrl.config ├── default.conf ├── main.cpp ├── pyctrl │ ├── main.py │ ├── msg │ │ ├── __init__.py │ │ └── ffengine │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ └── msg_def │ │ ├── __init__.py │ │ ├── constants.py │ │ └── ttypes.py ├── pylib │ ├── event_bus.py │ ├── ffext.py │ ├── google │ │ ├── __init__.py │ │ └── protobuf │ │ │ ├── __init__.py │ │ │ ├── compiler │ │ │ ├── __init__.py │ │ │ └── plugin_pb2.py │ │ │ ├── descriptor.py │ │ │ ├── descriptor_database.py │ │ │ ├── descriptor_pb2.py │ │ │ ├── descriptor_pool.py │ │ │ ├── internal │ │ │ ├── __init__.py │ │ │ ├── api_implementation.py │ │ │ ├── containers.py │ │ │ ├── cpp_message.py │ │ │ ├── decoder.py │ │ │ ├── encoder.py │ │ │ ├── enum_type_wrapper.py │ │ │ ├── message_listener.py │ │ │ ├── python_message.py │ │ │ ├── type_checkers.py │ │ │ └── wire_format.py │ │ │ ├── message.py │ │ │ ├── message_factory.py │ │ │ ├── reflection.py │ │ │ ├── service.py │ │ │ ├── service_reflection.py │ │ │ └── text_format.py │ ├── id_generator.py │ ├── pkg_resources.py │ ├── protobuf_example │ │ ├── msg.proto │ │ ├── msg_pb2.py │ │ └── protobuf_example.py │ ├── thrift │ │ ├── TSCons.py │ │ ├── TSerialization.py │ │ ├── Thrift.py │ │ ├── __init__.py │ │ ├── protocol │ │ │ ├── TBase.py │ │ │ ├── TBinaryProtocol.py │ │ │ ├── TCompactProtocol.py │ │ │ ├── TJSONProtocol.py │ │ │ ├── TProtocol.py │ │ │ ├── __init__.py │ │ │ └── fastbinary.c │ │ ├── server │ │ │ ├── THttpServer.py │ │ │ ├── TNonblockingServer.py │ │ │ ├── TProcessPoolServer.py │ │ │ ├── TServer.py │ │ │ └── __init__.py │ │ └── transport │ │ │ ├── THttpClient.py │ │ │ ├── TSSLSocket.py │ │ │ ├── TSocket.py │ │ │ ├── TTransport.py │ │ │ ├── TTwisted.py │ │ │ ├── TZlibTransport.py │ │ │ └── __init__.py │ ├── thrift_example │ │ ├── __init__.py │ │ ├── ff │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ └── thrift_example.py │ └── wrods_filter.py └── pyproject │ ├── echo_msg_def │ ├── __init__.py │ ├── constants.py │ └── ttypes.py │ ├── handler │ ├── __init__.py │ └── player_handler.py │ ├── main-bk.py │ ├── main.py │ ├── model │ ├── __init__.py │ ├── db_service.py │ └── player_model.py │ ├── msg_def │ ├── __init__.py │ ├── constants.py │ └── ttypes.py │ └── user_data │ ├── __init__.py │ ├── constants.py │ └── ttypes.py ├── example ├── client │ ├── Makefile │ └── main.cpp ├── game │ ├── Makefile │ ├── ctrl.config │ ├── default.conf │ ├── main.cpp │ ├── main.lua │ ├── pyctrl │ │ ├── main.py │ │ ├── msg │ │ │ ├── __init__.py │ │ │ └── ffengine │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ └── ttypes.py │ │ └── msg_def │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ ├── pylib │ │ ├── event_bus.py │ │ ├── ffext.py │ │ ├── google │ │ │ ├── __init__.py │ │ │ └── protobuf │ │ │ │ ├── __init__.py │ │ │ │ ├── compiler │ │ │ │ ├── __init__.py │ │ │ │ └── plugin_pb2.py │ │ │ │ ├── descriptor.py │ │ │ │ ├── descriptor_database.py │ │ │ │ ├── descriptor_pb2.py │ │ │ │ ├── descriptor_pool.py │ │ │ │ ├── internal │ │ │ │ ├── __init__.py │ │ │ │ ├── api_implementation.py │ │ │ │ ├── containers.py │ │ │ │ ├── cpp_message.py │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ ├── enum_type_wrapper.py │ │ │ │ ├── message_listener.py │ │ │ │ ├── python_message.py │ │ │ │ ├── type_checkers.py │ │ │ │ └── wire_format.py │ │ │ │ ├── message.py │ │ │ │ ├── message_factory.py │ │ │ │ ├── reflection.py │ │ │ │ ├── service.py │ │ │ │ ├── service_reflection.py │ │ │ │ └── text_format.py │ │ ├── id_generator.py │ │ ├── pkg_resources.py │ │ ├── protobuf_example │ │ │ ├── msg.proto │ │ │ ├── msg_pb2.py │ │ │ └── protobuf_example.py │ │ ├── thrift │ │ │ ├── TSCons.py │ │ │ ├── TSerialization.py │ │ │ ├── Thrift.py │ │ │ ├── __init__.py │ │ │ ├── protocol │ │ │ │ ├── TBase.py │ │ │ │ ├── TBinaryProtocol.py │ │ │ │ ├── TCompactProtocol.py │ │ │ │ ├── TJSONProtocol.py │ │ │ │ ├── TProtocol.py │ │ │ │ ├── __init__.py │ │ │ │ └── fastbinary.c │ │ │ ├── server │ │ │ │ ├── THttpServer.py │ │ │ │ ├── TNonblockingServer.py │ │ │ │ ├── TProcessPoolServer.py │ │ │ │ ├── TServer.py │ │ │ │ └── __init__.py │ │ │ └── transport │ │ │ │ ├── THttpClient.py │ │ │ │ ├── TSSLSocket.py │ │ │ │ ├── TSocket.py │ │ │ │ ├── TTransport.py │ │ │ │ ├── TTwisted.py │ │ │ │ ├── TZlibTransport.py │ │ │ │ └── __init__.py │ │ ├── thrift_example │ │ │ ├── __init__.py │ │ │ ├── ff │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ └── ttypes.py │ │ │ └── thrift_example.py │ │ └── wrods_filter.py │ └── pyproject │ │ ├── echo_msg_def │ │ ├── __init__.py │ │ ├── constants.py │ │ └── ttypes.py │ │ ├── handler │ │ ├── __init__.py │ │ └── player_handler.py │ │ ├── main-bk.py │ │ ├── main.py │ │ ├── model │ │ ├── __init__.py │ │ ├── db_service.py │ │ └── player_model.py │ │ ├── msg_def │ │ ├── __init__.py │ │ ├── constants.py │ │ └── ttypes.py │ │ └── user_data │ │ ├── __init__.py │ │ ├── constants.py │ │ └── ttypes.py ├── php_sdk │ ├── Thrift │ │ ├── Base │ │ │ └── TBase.php │ │ ├── ClassLoader │ │ │ └── ThriftClassLoader.php │ │ ├── Exception │ │ │ ├── TApplicationException.php │ │ │ ├── TException.php │ │ │ ├── TProtocolException.php │ │ │ └── TTransportException.php │ │ ├── Factory │ │ │ ├── TBinaryProtocolFactory.php │ │ │ ├── TCompactProtocolFactory.php │ │ │ ├── TJSONProtocolFactory.php │ │ │ ├── TProtocolFactory.php │ │ │ ├── TStringFuncFactory.php │ │ │ └── TTransportFactory.php │ │ ├── Protocol │ │ │ ├── JSON │ │ │ │ ├── BaseContext.php │ │ │ │ ├── ListContext.php │ │ │ │ ├── LookaheadReader.php │ │ │ │ └── PairContext.php │ │ │ ├── TBinaryProtocol.php │ │ │ ├── TBinaryProtocolAccelerated.php │ │ │ ├── TCompactProtocol.php │ │ │ ├── TJSONProtocol.php │ │ │ └── TProtocol.php │ │ ├── Serializer │ │ │ └── TBinarySerializer.php │ │ ├── Server │ │ │ ├── TForkingServer.php │ │ │ ├── TServer.php │ │ │ ├── TServerSocket.php │ │ │ ├── TServerTransport.php │ │ │ └── TSimpleServer.php │ │ ├── StringFunc │ │ │ ├── Core.php │ │ │ ├── Mbstring.php │ │ │ └── TStringFunc.php │ │ ├── Transport │ │ │ ├── TBufferedTransport.php │ │ │ ├── TFramedTransport.php │ │ │ ├── THttpClient.php │ │ │ ├── TMemoryBuffer.php │ │ │ ├── TNullTransport.php │ │ │ ├── TPhpStream.php │ │ │ ├── TSocket.php │ │ │ ├── TSocketPool.php │ │ │ └── TTransport.php │ │ ├── Type │ │ │ ├── TMessageType.php │ │ │ └── TType.php │ │ └── ffrpc_msg │ │ │ └── Types.php │ ├── ff │ │ └── Types.php │ └── ffrpc.php ├── python_sdk │ ├── ff │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── gen-py │ │ │ ├── __init__.py │ │ │ └── echo │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ └── ttypes.py │ │ ├── server.py │ │ └── ttypes.py │ ├── ffrpc.py │ ├── gen_py │ │ ├── __init__.py │ │ ├── echo.thrift │ │ ├── echo │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ └── thrift-0.9.1.exe │ └── thrift │ │ ├── TSCons.py │ │ ├── TSerialization.py │ │ ├── Thrift.py │ │ ├── __init__.py │ │ ├── msg_def │ │ ├── __init__.py │ │ ├── constants.py │ │ └── ttypes.py │ │ ├── protocol │ │ ├── TBase.py │ │ ├── TBinaryProtocol.py │ │ ├── TCompactProtocol.py │ │ ├── TJSONProtocol.py │ │ ├── TProtocol.py │ │ ├── __init__.py │ │ └── fastbinary.c │ │ ├── server │ │ ├── THttpServer.py │ │ ├── TNonblockingServer.py │ │ ├── TProcessPoolServer.py │ │ ├── TServer.py │ │ └── __init__.py │ │ └── transport │ │ ├── THttpClient.py │ │ ├── TSSLSocket.py │ │ ├── TSocket.py │ │ ├── TTransport.py │ │ ├── TTwisted.py │ │ ├── TZlibTransport.py │ │ └── __init__.py └── tutorial │ ├── Makefile │ ├── echo.pb.cc │ ├── echo.pb.h │ ├── echo.proto │ ├── echo.thrift │ ├── echo_constants.cpp │ ├── echo_constants.h │ ├── echo_test.h │ ├── echo_types.cpp │ ├── echo_types.h │ ├── gen-php │ └── ff │ │ └── Types.php │ ├── main.cpp │ ├── protobuf.Makefile │ ├── protobuf_test.h │ ├── thrift-0.9.0.exe │ ├── thrift.Makefile │ └── thrift_test.h ├── fflib ├── base │ ├── arg_helper.h │ ├── atomic_op.h │ ├── daemon_tool.h │ ├── ffslot.h │ ├── fftype.h │ ├── lock.cpp │ ├── lock.h │ ├── log.cpp │ ├── log.h │ ├── obj_pool.h │ ├── os_tool.h │ ├── performance_daemon.cpp │ ├── performance_daemon.h │ ├── signal_helper.h │ ├── singleton.h │ ├── smart_ptr.h │ ├── strtool.h │ ├── task_queue_i.h │ ├── task_queue_impl.h │ ├── thread.cpp │ ├── thread.h │ ├── time_tool.h │ └── timer_service.h ├── db │ ├── db_ops.h │ ├── ffcrud.h │ ├── ffdb.cpp │ ├── ffdb.h │ ├── mysql_ops.cpp │ ├── mysql_ops.h │ ├── sqlite3.c │ ├── sqlite3.h │ ├── sqlite3ext.h │ ├── sqlite_ops.cpp │ └── sqlite_ops.h ├── lua │ ├── fflua.h │ ├── fflua_register.h │ └── fflua_type.h ├── net │ ├── acceptor_i.h │ ├── acceptor_impl.cpp │ ├── acceptor_impl.h │ ├── base_heartbeat.h │ ├── codec.cpp │ ├── codec.h │ ├── common_socket_controller.cpp │ ├── common_socket_controller.h │ ├── connector.h │ ├── epoll_i.h │ ├── epoll_impl.cpp │ ├── epoll_impl.h │ ├── gateway_acceptor.cpp │ ├── gateway_acceptor.h │ ├── gateway_socket_controller.cpp │ ├── gateway_socket_controller.h │ ├── http_acceptor.cpp │ ├── http_acceptor.h │ ├── message.h │ ├── msg_handler_i.h │ ├── msg_sender.h │ ├── net_factory.h │ ├── net_stat.cpp │ ├── net_stat.h │ ├── netbase.h │ ├── socket_controller_i.h │ ├── socket_i.h │ ├── socket_impl.cpp │ ├── socket_impl.h │ ├── socket_op.h │ ├── text_socket_controller_impl.cpp │ ├── text_socket_controller_impl.h │ └── udp_socket.h ├── python │ └── ffpython.h ├── rpc │ ├── ffbroker.cpp │ ├── ffbroker.h │ ├── ffrpc.cpp │ ├── ffrpc.h │ ├── ffrpc_ops.h │ └── msg_def │ │ ├── ffrpc_msg_constants.cpp │ │ ├── ffrpc_msg_constants.h │ │ ├── ffrpc_msg_types.cpp │ │ └── ffrpc_msg_types.h ├── server │ ├── db_mgr.cpp │ ├── db_mgr.h │ ├── ffcurl.cpp │ ├── ffcurl.h │ ├── ffgate.cpp │ ├── ffgate.h │ ├── fflua_json_traits.h │ ├── fflua_mod.cpp │ ├── fflua_mod.h │ ├── ffscene.cpp │ ├── ffscene.h │ ├── ffscene_lua.cpp │ ├── ffscene_lua.h │ ├── ffscene_python.cpp │ ├── ffscene_python.h │ └── fftask_processor.h └── xml │ ├── ffxml.cpp │ ├── ffxml.h │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxmlerror.cpp │ └── tinyxmlparser.cpp └── lib3party ├── rapidjson ├── document.h ├── filestream.h ├── internal │ ├── pow10.h │ ├── stack.h │ └── strfunc.h ├── prettywriter.h ├── rapidjson.h ├── reader.h ├── stringbuffer.h └── writer.h └── thrift ├── FFThrift.h ├── TApplicationException.h ├── Thrift.h ├── ThriftConfig.h ├── cxxfunctional.h ├── protocol ├── TBinaryProtocol.h ├── TProtocol.h ├── TProtocolException.h └── TVirtualProtocol.h └── transport ├── FFTransport.h ├── TTransport.h ├── TTransportException.h └── TVirtualTransport.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/README.md -------------------------------------------------------------------------------- /bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/Makefile -------------------------------------------------------------------------------- /bin/ctrl.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/ctrl.config -------------------------------------------------------------------------------- /bin/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/default.conf -------------------------------------------------------------------------------- /bin/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/main.cpp -------------------------------------------------------------------------------- /bin/pyctrl/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyctrl/main.py -------------------------------------------------------------------------------- /bin/pyctrl/msg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/pyctrl/msg/ffengine/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /bin/pyctrl/msg/ffengine/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyctrl/msg/ffengine/constants.py -------------------------------------------------------------------------------- /bin/pyctrl/msg/ffengine/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyctrl/msg/ffengine/ttypes.py -------------------------------------------------------------------------------- /bin/pyctrl/msg_def/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /bin/pyctrl/msg_def/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyctrl/msg_def/constants.py -------------------------------------------------------------------------------- /bin/pyctrl/msg_def/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyctrl/msg_def/ttypes.py -------------------------------------------------------------------------------- /bin/pylib/event_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/event_bus.py -------------------------------------------------------------------------------- /bin/pylib/ffext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/ffext.py -------------------------------------------------------------------------------- /bin/pylib/google/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/__init__.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/compiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/compiler/plugin_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/compiler/plugin_pb2.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/descriptor.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/descriptor_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/descriptor_database.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/descriptor_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/descriptor_pb2.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/descriptor_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/descriptor_pool.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/internal/api_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/internal/api_implementation.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/internal/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/internal/containers.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/internal/cpp_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/internal/cpp_message.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/internal/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/internal/decoder.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/internal/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/internal/encoder.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/internal/enum_type_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/internal/enum_type_wrapper.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/internal/message_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/internal/message_listener.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/internal/python_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/internal/python_message.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/internal/type_checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/internal/type_checkers.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/internal/wire_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/internal/wire_format.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/message.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/message_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/message_factory.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/reflection.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/service.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/service_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/service_reflection.py -------------------------------------------------------------------------------- /bin/pylib/google/protobuf/text_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/google/protobuf/text_format.py -------------------------------------------------------------------------------- /bin/pylib/id_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/id_generator.py -------------------------------------------------------------------------------- /bin/pylib/pkg_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/pkg_resources.py -------------------------------------------------------------------------------- /bin/pylib/protobuf_example/msg.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/protobuf_example/msg.proto -------------------------------------------------------------------------------- /bin/pylib/protobuf_example/msg_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/protobuf_example/msg_pb2.py -------------------------------------------------------------------------------- /bin/pylib/protobuf_example/protobuf_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/protobuf_example/protobuf_example.py -------------------------------------------------------------------------------- /bin/pylib/thrift/TSCons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/TSCons.py -------------------------------------------------------------------------------- /bin/pylib/thrift/TSerialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/TSerialization.py -------------------------------------------------------------------------------- /bin/pylib/thrift/Thrift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/Thrift.py -------------------------------------------------------------------------------- /bin/pylib/thrift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/__init__.py -------------------------------------------------------------------------------- /bin/pylib/thrift/protocol/TBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/protocol/TBase.py -------------------------------------------------------------------------------- /bin/pylib/thrift/protocol/TBinaryProtocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/protocol/TBinaryProtocol.py -------------------------------------------------------------------------------- /bin/pylib/thrift/protocol/TCompactProtocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/protocol/TCompactProtocol.py -------------------------------------------------------------------------------- /bin/pylib/thrift/protocol/TJSONProtocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/protocol/TJSONProtocol.py -------------------------------------------------------------------------------- /bin/pylib/thrift/protocol/TProtocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/protocol/TProtocol.py -------------------------------------------------------------------------------- /bin/pylib/thrift/protocol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/protocol/__init__.py -------------------------------------------------------------------------------- /bin/pylib/thrift/protocol/fastbinary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/protocol/fastbinary.c -------------------------------------------------------------------------------- /bin/pylib/thrift/server/THttpServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/server/THttpServer.py -------------------------------------------------------------------------------- /bin/pylib/thrift/server/TNonblockingServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/server/TNonblockingServer.py -------------------------------------------------------------------------------- /bin/pylib/thrift/server/TProcessPoolServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/server/TProcessPoolServer.py -------------------------------------------------------------------------------- /bin/pylib/thrift/server/TServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/server/TServer.py -------------------------------------------------------------------------------- /bin/pylib/thrift/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/server/__init__.py -------------------------------------------------------------------------------- /bin/pylib/thrift/transport/THttpClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/transport/THttpClient.py -------------------------------------------------------------------------------- /bin/pylib/thrift/transport/TSSLSocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/transport/TSSLSocket.py -------------------------------------------------------------------------------- /bin/pylib/thrift/transport/TSocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/transport/TSocket.py -------------------------------------------------------------------------------- /bin/pylib/thrift/transport/TTransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/transport/TTransport.py -------------------------------------------------------------------------------- /bin/pylib/thrift/transport/TTwisted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/transport/TTwisted.py -------------------------------------------------------------------------------- /bin/pylib/thrift/transport/TZlibTransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/transport/TZlibTransport.py -------------------------------------------------------------------------------- /bin/pylib/thrift/transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift/transport/__init__.py -------------------------------------------------------------------------------- /bin/pylib/thrift_example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/pylib/thrift_example/ff/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /bin/pylib/thrift_example/ff/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift_example/ff/constants.py -------------------------------------------------------------------------------- /bin/pylib/thrift_example/ff/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift_example/ff/ttypes.py -------------------------------------------------------------------------------- /bin/pylib/thrift_example/thrift_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/thrift_example/thrift_example.py -------------------------------------------------------------------------------- /bin/pylib/wrods_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pylib/wrods_filter.py -------------------------------------------------------------------------------- /bin/pyproject/echo_msg_def/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /bin/pyproject/echo_msg_def/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyproject/echo_msg_def/constants.py -------------------------------------------------------------------------------- /bin/pyproject/echo_msg_def/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyproject/echo_msg_def/ttypes.py -------------------------------------------------------------------------------- /bin/pyproject/handler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/pyproject/handler/player_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyproject/handler/player_handler.py -------------------------------------------------------------------------------- /bin/pyproject/main-bk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyproject/main-bk.py -------------------------------------------------------------------------------- /bin/pyproject/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyproject/main.py -------------------------------------------------------------------------------- /bin/pyproject/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/pyproject/model/db_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyproject/model/db_service.py -------------------------------------------------------------------------------- /bin/pyproject/model/player_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyproject/model/player_model.py -------------------------------------------------------------------------------- /bin/pyproject/msg_def/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /bin/pyproject/msg_def/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyproject/msg_def/constants.py -------------------------------------------------------------------------------- /bin/pyproject/msg_def/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyproject/msg_def/ttypes.py -------------------------------------------------------------------------------- /bin/pyproject/user_data/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /bin/pyproject/user_data/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyproject/user_data/constants.py -------------------------------------------------------------------------------- /bin/pyproject/user_data/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/bin/pyproject/user_data/ttypes.py -------------------------------------------------------------------------------- /example/client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/client/Makefile -------------------------------------------------------------------------------- /example/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/client/main.cpp -------------------------------------------------------------------------------- /example/game/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/Makefile -------------------------------------------------------------------------------- /example/game/ctrl.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/ctrl.config -------------------------------------------------------------------------------- /example/game/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/default.conf -------------------------------------------------------------------------------- /example/game/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/main.cpp -------------------------------------------------------------------------------- /example/game/main.lua: -------------------------------------------------------------------------------- 1 | 2 | 3 | function foo() 4 | end 5 | 6 | 7 | -------------------------------------------------------------------------------- /example/game/pyctrl/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyctrl/main.py -------------------------------------------------------------------------------- /example/game/pyctrl/msg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/game/pyctrl/msg/ffengine/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /example/game/pyctrl/msg/ffengine/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyctrl/msg/ffengine/constants.py -------------------------------------------------------------------------------- /example/game/pyctrl/msg/ffengine/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyctrl/msg/ffengine/ttypes.py -------------------------------------------------------------------------------- /example/game/pyctrl/msg_def/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /example/game/pyctrl/msg_def/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyctrl/msg_def/constants.py -------------------------------------------------------------------------------- /example/game/pyctrl/msg_def/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyctrl/msg_def/ttypes.py -------------------------------------------------------------------------------- /example/game/pylib/event_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/event_bus.py -------------------------------------------------------------------------------- /example/game/pylib/ffext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/ffext.py -------------------------------------------------------------------------------- /example/game/pylib/google/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/__init__.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/compiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/compiler/plugin_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/compiler/plugin_pb2.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/descriptor.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/descriptor_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/descriptor_database.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/descriptor_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/descriptor_pb2.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/descriptor_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/descriptor_pool.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/internal/api_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/internal/api_implementation.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/internal/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/internal/containers.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/internal/cpp_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/internal/cpp_message.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/internal/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/internal/decoder.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/internal/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/internal/encoder.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/internal/enum_type_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/internal/enum_type_wrapper.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/internal/message_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/internal/message_listener.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/internal/python_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/internal/python_message.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/internal/type_checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/internal/type_checkers.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/internal/wire_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/internal/wire_format.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/message.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/message_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/message_factory.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/reflection.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/service.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/service_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/service_reflection.py -------------------------------------------------------------------------------- /example/game/pylib/google/protobuf/text_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/google/protobuf/text_format.py -------------------------------------------------------------------------------- /example/game/pylib/id_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/id_generator.py -------------------------------------------------------------------------------- /example/game/pylib/pkg_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/pkg_resources.py -------------------------------------------------------------------------------- /example/game/pylib/protobuf_example/msg.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/protobuf_example/msg.proto -------------------------------------------------------------------------------- /example/game/pylib/protobuf_example/msg_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/protobuf_example/msg_pb2.py -------------------------------------------------------------------------------- /example/game/pylib/protobuf_example/protobuf_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/protobuf_example/protobuf_example.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/TSCons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/TSCons.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/TSerialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/TSerialization.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/Thrift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/Thrift.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/__init__.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/protocol/TBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/protocol/TBase.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/protocol/TBinaryProtocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/protocol/TBinaryProtocol.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/protocol/TCompactProtocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/protocol/TCompactProtocol.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/protocol/TJSONProtocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/protocol/TJSONProtocol.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/protocol/TProtocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/protocol/TProtocol.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/protocol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/protocol/__init__.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/protocol/fastbinary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/protocol/fastbinary.c -------------------------------------------------------------------------------- /example/game/pylib/thrift/server/THttpServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/server/THttpServer.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/server/TNonblockingServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/server/TNonblockingServer.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/server/TProcessPoolServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/server/TProcessPoolServer.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/server/TServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/server/TServer.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/server/__init__.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/transport/THttpClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/transport/THttpClient.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/transport/TSSLSocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/transport/TSSLSocket.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/transport/TSocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/transport/TSocket.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/transport/TTransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/transport/TTransport.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/transport/TTwisted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/transport/TTwisted.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/transport/TZlibTransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/transport/TZlibTransport.py -------------------------------------------------------------------------------- /example/game/pylib/thrift/transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift/transport/__init__.py -------------------------------------------------------------------------------- /example/game/pylib/thrift_example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/game/pylib/thrift_example/ff/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /example/game/pylib/thrift_example/ff/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift_example/ff/constants.py -------------------------------------------------------------------------------- /example/game/pylib/thrift_example/ff/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift_example/ff/ttypes.py -------------------------------------------------------------------------------- /example/game/pylib/thrift_example/thrift_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/thrift_example/thrift_example.py -------------------------------------------------------------------------------- /example/game/pylib/wrods_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pylib/wrods_filter.py -------------------------------------------------------------------------------- /example/game/pyproject/echo_msg_def/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /example/game/pyproject/echo_msg_def/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyproject/echo_msg_def/constants.py -------------------------------------------------------------------------------- /example/game/pyproject/echo_msg_def/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyproject/echo_msg_def/ttypes.py -------------------------------------------------------------------------------- /example/game/pyproject/handler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/game/pyproject/handler/player_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyproject/handler/player_handler.py -------------------------------------------------------------------------------- /example/game/pyproject/main-bk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyproject/main-bk.py -------------------------------------------------------------------------------- /example/game/pyproject/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyproject/main.py -------------------------------------------------------------------------------- /example/game/pyproject/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/game/pyproject/model/db_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyproject/model/db_service.py -------------------------------------------------------------------------------- /example/game/pyproject/model/player_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyproject/model/player_model.py -------------------------------------------------------------------------------- /example/game/pyproject/msg_def/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /example/game/pyproject/msg_def/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyproject/msg_def/constants.py -------------------------------------------------------------------------------- /example/game/pyproject/msg_def/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyproject/msg_def/ttypes.py -------------------------------------------------------------------------------- /example/game/pyproject/user_data/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /example/game/pyproject/user_data/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyproject/user_data/constants.py -------------------------------------------------------------------------------- /example/game/pyproject/user_data/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/game/pyproject/user_data/ttypes.py -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Base/TBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Base/TBase.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/ClassLoader/ThriftClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/ClassLoader/ThriftClassLoader.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Exception/TApplicationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Exception/TApplicationException.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Exception/TException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Exception/TException.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Exception/TProtocolException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Exception/TProtocolException.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Exception/TTransportException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Exception/TTransportException.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Factory/TBinaryProtocolFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Factory/TBinaryProtocolFactory.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Factory/TCompactProtocolFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Factory/TCompactProtocolFactory.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Factory/TJSONProtocolFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Factory/TJSONProtocolFactory.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Factory/TProtocolFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Factory/TProtocolFactory.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Factory/TStringFuncFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Factory/TStringFuncFactory.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Factory/TTransportFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Factory/TTransportFactory.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Protocol/JSON/BaseContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Protocol/JSON/BaseContext.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Protocol/JSON/ListContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Protocol/JSON/ListContext.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Protocol/JSON/LookaheadReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Protocol/JSON/LookaheadReader.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Protocol/JSON/PairContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Protocol/JSON/PairContext.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Protocol/TBinaryProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Protocol/TBinaryProtocol.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Protocol/TBinaryProtocolAccelerated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Protocol/TBinaryProtocolAccelerated.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Protocol/TCompactProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Protocol/TCompactProtocol.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Protocol/TJSONProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Protocol/TJSONProtocol.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Protocol/TProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Protocol/TProtocol.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Serializer/TBinarySerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Serializer/TBinarySerializer.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Server/TForkingServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Server/TForkingServer.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Server/TServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Server/TServer.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Server/TServerSocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Server/TServerSocket.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Server/TServerTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Server/TServerTransport.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Server/TSimpleServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Server/TSimpleServer.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/StringFunc/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/StringFunc/Core.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/StringFunc/Mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/StringFunc/Mbstring.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/StringFunc/TStringFunc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/StringFunc/TStringFunc.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Transport/TBufferedTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Transport/TBufferedTransport.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Transport/TFramedTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Transport/TFramedTransport.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Transport/THttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Transport/THttpClient.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Transport/TMemoryBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Transport/TMemoryBuffer.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Transport/TNullTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Transport/TNullTransport.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Transport/TPhpStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Transport/TPhpStream.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Transport/TSocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Transport/TSocket.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Transport/TSocketPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Transport/TSocketPool.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Transport/TTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Transport/TTransport.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Type/TMessageType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Type/TMessageType.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/Type/TType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/Type/TType.php -------------------------------------------------------------------------------- /example/php_sdk/Thrift/ffrpc_msg/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/Thrift/ffrpc_msg/Types.php -------------------------------------------------------------------------------- /example/php_sdk/ff/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/ff/Types.php -------------------------------------------------------------------------------- /example/php_sdk/ffrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/php_sdk/ffrpc.php -------------------------------------------------------------------------------- /example/python_sdk/ff/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /example/python_sdk/ff/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/ff/constants.py -------------------------------------------------------------------------------- /example/python_sdk/ff/gen-py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/python_sdk/ff/gen-py/echo/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /example/python_sdk/ff/gen-py/echo/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/ff/gen-py/echo/constants.py -------------------------------------------------------------------------------- /example/python_sdk/ff/gen-py/echo/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/ff/gen-py/echo/ttypes.py -------------------------------------------------------------------------------- /example/python_sdk/ff/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/ff/server.py -------------------------------------------------------------------------------- /example/python_sdk/ff/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/ff/ttypes.py -------------------------------------------------------------------------------- /example/python_sdk/ffrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/ffrpc.py -------------------------------------------------------------------------------- /example/python_sdk/gen_py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/python_sdk/gen_py/echo.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/gen_py/echo.thrift -------------------------------------------------------------------------------- /example/python_sdk/gen_py/echo/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /example/python_sdk/gen_py/echo/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/gen_py/echo/constants.py -------------------------------------------------------------------------------- /example/python_sdk/gen_py/echo/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/gen_py/echo/ttypes.py -------------------------------------------------------------------------------- /example/python_sdk/gen_py/thrift-0.9.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/gen_py/thrift-0.9.1.exe -------------------------------------------------------------------------------- /example/python_sdk/thrift/TSCons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/TSCons.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/TSerialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/TSerialization.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/Thrift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/Thrift.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/__init__.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/msg_def/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /example/python_sdk/thrift/msg_def/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/msg_def/constants.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/msg_def/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/msg_def/ttypes.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/protocol/TBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/protocol/TBase.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/protocol/TBinaryProtocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/protocol/TBinaryProtocol.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/protocol/TCompactProtocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/protocol/TCompactProtocol.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/protocol/TJSONProtocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/protocol/TJSONProtocol.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/protocol/TProtocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/protocol/TProtocol.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/protocol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/protocol/__init__.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/protocol/fastbinary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/protocol/fastbinary.c -------------------------------------------------------------------------------- /example/python_sdk/thrift/server/THttpServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/server/THttpServer.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/server/TNonblockingServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/server/TNonblockingServer.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/server/TProcessPoolServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/server/TProcessPoolServer.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/server/TServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/server/TServer.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/server/__init__.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/transport/THttpClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/transport/THttpClient.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/transport/TSSLSocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/transport/TSSLSocket.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/transport/TSocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/transport/TSocket.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/transport/TTransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/transport/TTransport.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/transport/TTwisted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/transport/TTwisted.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/transport/TZlibTransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/transport/TZlibTransport.py -------------------------------------------------------------------------------- /example/python_sdk/thrift/transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/python_sdk/thrift/transport/__init__.py -------------------------------------------------------------------------------- /example/tutorial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/Makefile -------------------------------------------------------------------------------- /example/tutorial/echo.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/echo.pb.cc -------------------------------------------------------------------------------- /example/tutorial/echo.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/echo.pb.h -------------------------------------------------------------------------------- /example/tutorial/echo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/echo.proto -------------------------------------------------------------------------------- /example/tutorial/echo.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/echo.thrift -------------------------------------------------------------------------------- /example/tutorial/echo_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/echo_constants.cpp -------------------------------------------------------------------------------- /example/tutorial/echo_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/echo_constants.h -------------------------------------------------------------------------------- /example/tutorial/echo_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/echo_test.h -------------------------------------------------------------------------------- /example/tutorial/echo_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/echo_types.cpp -------------------------------------------------------------------------------- /example/tutorial/echo_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/echo_types.h -------------------------------------------------------------------------------- /example/tutorial/gen-php/ff/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/gen-php/ff/Types.php -------------------------------------------------------------------------------- /example/tutorial/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/main.cpp -------------------------------------------------------------------------------- /example/tutorial/protobuf.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/protobuf.Makefile -------------------------------------------------------------------------------- /example/tutorial/protobuf_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/protobuf_test.h -------------------------------------------------------------------------------- /example/tutorial/thrift-0.9.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/thrift-0.9.0.exe -------------------------------------------------------------------------------- /example/tutorial/thrift.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/thrift.Makefile -------------------------------------------------------------------------------- /example/tutorial/thrift_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/example/tutorial/thrift_test.h -------------------------------------------------------------------------------- /fflib/base/arg_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/arg_helper.h -------------------------------------------------------------------------------- /fflib/base/atomic_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/atomic_op.h -------------------------------------------------------------------------------- /fflib/base/daemon_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/daemon_tool.h -------------------------------------------------------------------------------- /fflib/base/ffslot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/ffslot.h -------------------------------------------------------------------------------- /fflib/base/fftype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/fftype.h -------------------------------------------------------------------------------- /fflib/base/lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/lock.cpp -------------------------------------------------------------------------------- /fflib/base/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/lock.h -------------------------------------------------------------------------------- /fflib/base/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/log.cpp -------------------------------------------------------------------------------- /fflib/base/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/log.h -------------------------------------------------------------------------------- /fflib/base/obj_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/obj_pool.h -------------------------------------------------------------------------------- /fflib/base/os_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/os_tool.h -------------------------------------------------------------------------------- /fflib/base/performance_daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/performance_daemon.cpp -------------------------------------------------------------------------------- /fflib/base/performance_daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/performance_daemon.h -------------------------------------------------------------------------------- /fflib/base/signal_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/signal_helper.h -------------------------------------------------------------------------------- /fflib/base/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/singleton.h -------------------------------------------------------------------------------- /fflib/base/smart_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/smart_ptr.h -------------------------------------------------------------------------------- /fflib/base/strtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/strtool.h -------------------------------------------------------------------------------- /fflib/base/task_queue_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/task_queue_i.h -------------------------------------------------------------------------------- /fflib/base/task_queue_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/task_queue_impl.h -------------------------------------------------------------------------------- /fflib/base/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/thread.cpp -------------------------------------------------------------------------------- /fflib/base/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/thread.h -------------------------------------------------------------------------------- /fflib/base/time_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/time_tool.h -------------------------------------------------------------------------------- /fflib/base/timer_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/base/timer_service.h -------------------------------------------------------------------------------- /fflib/db/db_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/db/db_ops.h -------------------------------------------------------------------------------- /fflib/db/ffcrud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/db/ffcrud.h -------------------------------------------------------------------------------- /fflib/db/ffdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/db/ffdb.cpp -------------------------------------------------------------------------------- /fflib/db/ffdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/db/ffdb.h -------------------------------------------------------------------------------- /fflib/db/mysql_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/db/mysql_ops.cpp -------------------------------------------------------------------------------- /fflib/db/mysql_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/db/mysql_ops.h -------------------------------------------------------------------------------- /fflib/db/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/db/sqlite3.c -------------------------------------------------------------------------------- /fflib/db/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/db/sqlite3.h -------------------------------------------------------------------------------- /fflib/db/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/db/sqlite3ext.h -------------------------------------------------------------------------------- /fflib/db/sqlite_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/db/sqlite_ops.cpp -------------------------------------------------------------------------------- /fflib/db/sqlite_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/db/sqlite_ops.h -------------------------------------------------------------------------------- /fflib/lua/fflua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/lua/fflua.h -------------------------------------------------------------------------------- /fflib/lua/fflua_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/lua/fflua_register.h -------------------------------------------------------------------------------- /fflib/lua/fflua_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/lua/fflua_type.h -------------------------------------------------------------------------------- /fflib/net/acceptor_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/acceptor_i.h -------------------------------------------------------------------------------- /fflib/net/acceptor_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/acceptor_impl.cpp -------------------------------------------------------------------------------- /fflib/net/acceptor_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/acceptor_impl.h -------------------------------------------------------------------------------- /fflib/net/base_heartbeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/base_heartbeat.h -------------------------------------------------------------------------------- /fflib/net/codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/codec.cpp -------------------------------------------------------------------------------- /fflib/net/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/codec.h -------------------------------------------------------------------------------- /fflib/net/common_socket_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/common_socket_controller.cpp -------------------------------------------------------------------------------- /fflib/net/common_socket_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/common_socket_controller.h -------------------------------------------------------------------------------- /fflib/net/connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/connector.h -------------------------------------------------------------------------------- /fflib/net/epoll_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/epoll_i.h -------------------------------------------------------------------------------- /fflib/net/epoll_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/epoll_impl.cpp -------------------------------------------------------------------------------- /fflib/net/epoll_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/epoll_impl.h -------------------------------------------------------------------------------- /fflib/net/gateway_acceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/gateway_acceptor.cpp -------------------------------------------------------------------------------- /fflib/net/gateway_acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/gateway_acceptor.h -------------------------------------------------------------------------------- /fflib/net/gateway_socket_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/gateway_socket_controller.cpp -------------------------------------------------------------------------------- /fflib/net/gateway_socket_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/gateway_socket_controller.h -------------------------------------------------------------------------------- /fflib/net/http_acceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/http_acceptor.cpp -------------------------------------------------------------------------------- /fflib/net/http_acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/http_acceptor.h -------------------------------------------------------------------------------- /fflib/net/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/message.h -------------------------------------------------------------------------------- /fflib/net/msg_handler_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/msg_handler_i.h -------------------------------------------------------------------------------- /fflib/net/msg_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/msg_sender.h -------------------------------------------------------------------------------- /fflib/net/net_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/net_factory.h -------------------------------------------------------------------------------- /fflib/net/net_stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/net_stat.cpp -------------------------------------------------------------------------------- /fflib/net/net_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/net_stat.h -------------------------------------------------------------------------------- /fflib/net/netbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/netbase.h -------------------------------------------------------------------------------- /fflib/net/socket_controller_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/socket_controller_i.h -------------------------------------------------------------------------------- /fflib/net/socket_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/socket_i.h -------------------------------------------------------------------------------- /fflib/net/socket_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/socket_impl.cpp -------------------------------------------------------------------------------- /fflib/net/socket_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/socket_impl.h -------------------------------------------------------------------------------- /fflib/net/socket_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/socket_op.h -------------------------------------------------------------------------------- /fflib/net/text_socket_controller_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/text_socket_controller_impl.cpp -------------------------------------------------------------------------------- /fflib/net/text_socket_controller_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/text_socket_controller_impl.h -------------------------------------------------------------------------------- /fflib/net/udp_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/net/udp_socket.h -------------------------------------------------------------------------------- /fflib/python/ffpython.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/python/ffpython.h -------------------------------------------------------------------------------- /fflib/rpc/ffbroker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/rpc/ffbroker.cpp -------------------------------------------------------------------------------- /fflib/rpc/ffbroker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/rpc/ffbroker.h -------------------------------------------------------------------------------- /fflib/rpc/ffrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/rpc/ffrpc.cpp -------------------------------------------------------------------------------- /fflib/rpc/ffrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/rpc/ffrpc.h -------------------------------------------------------------------------------- /fflib/rpc/ffrpc_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/rpc/ffrpc_ops.h -------------------------------------------------------------------------------- /fflib/rpc/msg_def/ffrpc_msg_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/rpc/msg_def/ffrpc_msg_constants.cpp -------------------------------------------------------------------------------- /fflib/rpc/msg_def/ffrpc_msg_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/rpc/msg_def/ffrpc_msg_constants.h -------------------------------------------------------------------------------- /fflib/rpc/msg_def/ffrpc_msg_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/rpc/msg_def/ffrpc_msg_types.cpp -------------------------------------------------------------------------------- /fflib/rpc/msg_def/ffrpc_msg_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/rpc/msg_def/ffrpc_msg_types.h -------------------------------------------------------------------------------- /fflib/server/db_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/db_mgr.cpp -------------------------------------------------------------------------------- /fflib/server/db_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/db_mgr.h -------------------------------------------------------------------------------- /fflib/server/ffcurl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/ffcurl.cpp -------------------------------------------------------------------------------- /fflib/server/ffcurl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/ffcurl.h -------------------------------------------------------------------------------- /fflib/server/ffgate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/ffgate.cpp -------------------------------------------------------------------------------- /fflib/server/ffgate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/ffgate.h -------------------------------------------------------------------------------- /fflib/server/fflua_json_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/fflua_json_traits.h -------------------------------------------------------------------------------- /fflib/server/fflua_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/fflua_mod.cpp -------------------------------------------------------------------------------- /fflib/server/fflua_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/fflua_mod.h -------------------------------------------------------------------------------- /fflib/server/ffscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/ffscene.cpp -------------------------------------------------------------------------------- /fflib/server/ffscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/ffscene.h -------------------------------------------------------------------------------- /fflib/server/ffscene_lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/ffscene_lua.cpp -------------------------------------------------------------------------------- /fflib/server/ffscene_lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/ffscene_lua.h -------------------------------------------------------------------------------- /fflib/server/ffscene_python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/ffscene_python.cpp -------------------------------------------------------------------------------- /fflib/server/ffscene_python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/ffscene_python.h -------------------------------------------------------------------------------- /fflib/server/fftask_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/server/fftask_processor.h -------------------------------------------------------------------------------- /fflib/xml/ffxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/xml/ffxml.cpp -------------------------------------------------------------------------------- /fflib/xml/ffxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/xml/ffxml.h -------------------------------------------------------------------------------- /fflib/xml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/xml/tinystr.cpp -------------------------------------------------------------------------------- /fflib/xml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/xml/tinystr.h -------------------------------------------------------------------------------- /fflib/xml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/xml/tinyxml.cpp -------------------------------------------------------------------------------- /fflib/xml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/xml/tinyxml.h -------------------------------------------------------------------------------- /fflib/xml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/xml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /fflib/xml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/fflib/xml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /lib3party/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/rapidjson/document.h -------------------------------------------------------------------------------- /lib3party/rapidjson/filestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/rapidjson/filestream.h -------------------------------------------------------------------------------- /lib3party/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /lib3party/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /lib3party/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /lib3party/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /lib3party/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /lib3party/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/rapidjson/reader.h -------------------------------------------------------------------------------- /lib3party/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /lib3party/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/rapidjson/writer.h -------------------------------------------------------------------------------- /lib3party/thrift/FFThrift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/thrift/FFThrift.h -------------------------------------------------------------------------------- /lib3party/thrift/TApplicationException.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib3party/thrift/Thrift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/thrift/Thrift.h -------------------------------------------------------------------------------- /lib3party/thrift/ThriftConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/thrift/ThriftConfig.h -------------------------------------------------------------------------------- /lib3party/thrift/cxxfunctional.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /lib3party/thrift/protocol/TBinaryProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/thrift/protocol/TBinaryProtocol.h -------------------------------------------------------------------------------- /lib3party/thrift/protocol/TProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/thrift/protocol/TProtocol.h -------------------------------------------------------------------------------- /lib3party/thrift/protocol/TProtocolException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/thrift/protocol/TProtocolException.h -------------------------------------------------------------------------------- /lib3party/thrift/protocol/TVirtualProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/thrift/protocol/TVirtualProtocol.h -------------------------------------------------------------------------------- /lib3party/thrift/transport/FFTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/thrift/transport/FFTransport.h -------------------------------------------------------------------------------- /lib3party/thrift/transport/TTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/thrift/transport/TTransport.h -------------------------------------------------------------------------------- /lib3party/thrift/transport/TTransportException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/thrift/transport/TTransportException.h -------------------------------------------------------------------------------- /lib3party/thrift/transport/TVirtualTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolxiaox/ffengine/HEAD/lib3party/thrift/transport/TVirtualTransport.h --------------------------------------------------------------------------------