-
- Downloads
Introducing iomgr.
Move eventmanager and platform dependent endpoint functionality into a single library called 'iomgr'. This is primarily to prepare for a Windows port - where posix socket semantics lead to poor quality code. Mostly this is a code movement CL, with some small changes to help prepare the way for porting: - em style fd objects can only be held internally in iomgr, and own their memory - added grpc_iomgr_create_endpoint_pair() to accomodate the common pattern of creating a tcp endpoint from the output of socketpair - this will help keep our tests portable - separated em alarm interface into a separate file, as this part of event manager is needed higher up the stack - made the eventmanager bits a true singleton, simplifying API's across the stack as there's no longer a reason to carry a pointer there. Initial design document is here: https://docs.google.com/document/d/1VmafcHvvrP5kwtQkz84R5yXF7u7fW-9Pn0bkSUQHDt8/edit?disco=AAAAARNByxg Change on 2014/12/09 by ctiller <ctiller@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=81716456
Showing
- Makefile 124 additions, 172 deletionsMakefile
- build.json 58 additions, 76 deletionsbuild.json
- include/grpc/support/port_platform.h 22 additions, 18 deletionsinclude/grpc/support/port_platform.h
- src/core/channel/client_setup.c 8 additions, 9 deletionssrc/core/channel/client_setup.c
- src/core/channel/client_setup.h 1 addition, 2 deletionssrc/core/channel/client_setup.h
- src/core/httpcli/httpcli.c 6 additions, 10 deletionssrc/core/httpcli/httpcli.c
- src/core/httpcli/httpcli.h 2 additions, 3 deletionssrc/core/httpcli/httpcli.h
- src/core/iomgr/alarm.h 85 additions, 0 deletionssrc/core/iomgr/alarm.h
- src/core/iomgr/endpoint_pair.h 9 additions, 10 deletionssrc/core/iomgr/endpoint_pair.h
- src/core/iomgr/endpoint_pair_posix.c 61 additions, 0 deletionssrc/core/iomgr/endpoint_pair_posix.c
- src/core/iomgr/iomgr.h 56 additions, 0 deletionssrc/core/iomgr/iomgr.h
- src/core/iomgr/iomgr_completion_queue_interface.h 8 additions, 18 deletionssrc/core/iomgr/iomgr_completion_queue_interface.h
- src/core/iomgr/iomgr_libevent.c 228 additions, 280 deletionssrc/core/iomgr/iomgr_libevent.c
- src/core/iomgr/iomgr_libevent.h 207 additions, 0 deletionssrc/core/iomgr/iomgr_libevent.h
- src/core/iomgr/iomgr_libevent_use_threads.c 0 additions, 0 deletionssrc/core/iomgr/iomgr_libevent_use_threads.c
- src/core/iomgr/resolve_address.h 3 additions, 3 deletionssrc/core/iomgr/resolve_address.h
- src/core/iomgr/resolve_address_posix.c 4 additions, 3 deletionssrc/core/iomgr/resolve_address_posix.c
- src/core/iomgr/sockaddr.h 47 additions, 0 deletionssrc/core/iomgr/sockaddr.h
- src/core/iomgr/sockaddr_posix.h 40 additions, 0 deletionssrc/core/iomgr/sockaddr_posix.h
- src/core/iomgr/sockaddr_utils.c 2 additions, 112 deletionssrc/core/iomgr/sockaddr_utils.c
Loading
Please register or sign in to comment