/python/lely_io/sock.pyx

https://gitlab.com/lely_industries/io · Cython · 469 lines · 413 code · 56 blank · 0 comment · 65 complexity · a90d7bbed59b5c0acc903120ab7fa95d MD5 · raw file

  1. cimport cython
  2. from lely_io.addr cimport *
  3. IO_SOCK_BTH = _IO_SOCK_BTH
  4. IO_SOCK_IPV4 = _IO_SOCK_IPV4
  5. IO_SOCK_IPV6 = _IO_SOCK_IPV6
  6. IO_SOCK_UNIX = _IO_SOCK_UNIX
  7. IO_SOCK_STREAM = _IO_SOCK_STREAM
  8. IO_SOCK_DGRAM = _IO_SOCK_DGRAM
  9. IO_MSG_PEEK = _IO_MSG_PEEK
  10. IO_MSG_OOB = _IO_MSG_OOB
  11. IO_MSG_WAITALL = _IO_MSG_WAITALL
  12. IO_SHUT_RD = _IO_SHUT_RD
  13. IO_SHUT_WR = _IO_SHUT_WR
  14. IO_SHUT_RDWR = _IO_SHUT_RDWR
  15. cdef class IOSock(IOHandle):
  16. @staticmethod
  17. def open(int domain, int type):
  18. cdef io_handle_t handle
  19. with nogil:
  20. handle = io_open_socket(domain, type)
  21. if handle is NULL:
  22. io_error()
  23. try:
  24. return IOSock_new(handle)
  25. except:
  26. with nogil:
  27. io_handle_release(handle)
  28. raise
  29. @staticmethod
  30. def open_socketpair(int domain, int type):
  31. cdef io_handle_t handle_vector[2]
  32. cdef int result
  33. with nogil:
  34. result = io_open_socketpair(domain, type, handle_vector)
  35. if result == -1:
  36. io_error()
  37. try:
  38. return [IOSock_new(handle_vector[0]), IOSock_new(handle_vector[1])]
  39. except:
  40. with nogil:
  41. io_handle_release(handle_vector[1])
  42. io_handle_release(handle_vector[0])
  43. raise
  44. @cython.boundscheck(False)
  45. def recv(self, uint8_t[::1] buf not None, IOAddr addr = None,
  46. int flags = 0):
  47. cdef size_t nbytes = len(buf)
  48. cdef io_addr_t* _addr = NULL
  49. if addr is not None:
  50. _addr = addr._c_addr
  51. cdef ssize_t result
  52. with nogil:
  53. result = io_recv(self._c_handle, &buf[0], nbytes, _addr, flags)
  54. if result == -1:
  55. io_error()
  56. return result
  57. @cython.boundscheck(False)
  58. def send(self, const uint8_t[::1] buf not None, IOAddr addr = None,
  59. int flags = 0):
  60. cdef size_t nbytes = len(buf)
  61. cdef io_addr_t* _addr = NULL
  62. if addr is not None:
  63. _addr = addr._c_addr
  64. cdef ssize_t result
  65. with nogil:
  66. result = io_send(self._c_handle, &buf[0], nbytes, _addr, flags)
  67. if result == -1:
  68. io_error()
  69. return result
  70. def accept(self, IOAddr addr = None):
  71. cdef io_addr_t* _addr = NULL
  72. if addr is not None:
  73. _addr = addr._c_addr
  74. cdef io_handle_t handle
  75. with nogil:
  76. handle = io_accept(self._c_handle, _addr)
  77. if handle is NULL:
  78. io_error()
  79. try:
  80. return IOSock_new(handle)
  81. except:
  82. with nogil:
  83. io_handle_release(handle)
  84. raise
  85. def conect(self, IOAddr addr not None):
  86. cdef int result
  87. with nogil:
  88. result = io_connect(self._c_handle, addr._c_addr)
  89. if result == -1:
  90. io_error()
  91. property domain:
  92. def __get__(self):
  93. cdef int result
  94. with nogil:
  95. result = io_sock_get_domain(self._c_handle)
  96. if result == -1:
  97. io_error()
  98. return result
  99. property type:
  100. def __get__(self):
  101. cdef int result
  102. with nogil:
  103. result = io_sock_get_type(self._c_handle)
  104. if result == -1:
  105. io_error()
  106. return result
  107. def bind(self, IOAddr addr not None):
  108. cdef int result
  109. with nogil:
  110. result = io_sock_bind(self._c_handle, addr._c_addr)
  111. if result == -1:
  112. io_error()
  113. def listen(self, int backlog = 0):
  114. cdef int result
  115. with nogil:
  116. result = io_sock_listen(self._c_handle, backlog)
  117. if result == -1:
  118. io_error()
  119. def shutdown(self, int how):
  120. cdef int result
  121. with nogil:
  122. result = io_sock_shutdown(self._c_handle, how)
  123. if result == -1:
  124. io_error()
  125. property sockname:
  126. def __get__(self):
  127. cdef IOAddr value = IOAddr()
  128. cdef int result
  129. with nogil:
  130. result = io_sock_get_sockname(self._c_handle, value._c_addr)
  131. if result == -1:
  132. io_error()
  133. return value
  134. property peername:
  135. def __get__(self):
  136. cdef IOAddr value = IOAddr()
  137. cdef int result
  138. with nogil:
  139. result = io_sock_get_peername(self._c_handle, value._c_addr)
  140. if result == -1:
  141. io_error()
  142. return value
  143. @staticmethod
  144. def get_maxconn():
  145. cdef int result
  146. with nogil:
  147. result = io_sock_get_maxconn()
  148. if result == -1:
  149. io_error()
  150. return result
  151. property acceptcon:
  152. def __get__(self):
  153. cdef int result
  154. with nogil:
  155. result = io_sock_get_acceptconn(self._c_handle)
  156. if result == -1:
  157. io_error()
  158. return <bint>result
  159. property broadcast:
  160. def __get__(self):
  161. cdef int result
  162. with nogil:
  163. result = io_sock_get_broadcast(self._c_handle)
  164. if result == -1:
  165. io_error()
  166. return <bint>result
  167. def __set__(self, bint value):
  168. cdef int result
  169. with nogil:
  170. result = io_sock_set_broadcast(self._c_handle, value)
  171. if result == -1:
  172. io_error()
  173. property debug:
  174. def __get__(self):
  175. cdef int result
  176. with nogil:
  177. result = io_sock_get_debug(self._c_handle)
  178. if result == -1:
  179. io_error()
  180. return <bint>result
  181. def __set__(self, bint value):
  182. cdef int result
  183. with nogil:
  184. result = io_sock_set_debug(self._c_handle, value)
  185. if result == -1:
  186. io_error()
  187. property dontroute:
  188. def __get__(self):
  189. cdef int result
  190. with nogil:
  191. result = io_sock_get_dontroute(self._c_handle)
  192. if result == -1:
  193. io_error()
  194. return <bint>result
  195. def __set__(self, bint value):
  196. cdef int result
  197. with nogil:
  198. result = io_sock_set_dontroute(self._c_handle, value)
  199. if result == -1:
  200. io_error()
  201. property error:
  202. def __get__(self):
  203. cdef int value = 0
  204. cdef int result
  205. with nogil:
  206. result = io_sock_get_error(self._c_handle, &value)
  207. if result == -1:
  208. io_error()
  209. return value
  210. property keepalive:
  211. def __get__(self):
  212. cdef int result
  213. with nogil:
  214. result = io_sock_get_keepalive(self._c_handle)
  215. if result == -1:
  216. io_error()
  217. return <bint>result
  218. def __set__(self, value):
  219. cdef bint keepalive
  220. cdef int time = 0
  221. cdef int interval = 0
  222. try:
  223. keepalive, time, interval = value
  224. except TypeError:
  225. keepalive = value
  226. cdef int result
  227. with nogil:
  228. result = io_sock_set_keepalive(self._c_handle, keepalive, time,
  229. interval)
  230. if result == -1:
  231. io_error()
  232. property linger:
  233. def __get__(self):
  234. cdef int result
  235. with nogil:
  236. result = io_sock_get_linger(self._c_handle)
  237. if result == -1:
  238. io_error()
  239. return result
  240. def __set__(self, int value):
  241. cdef int result
  242. with nogil:
  243. result = io_sock_set_linger(self._c_handle, value)
  244. if result == -1:
  245. io_error()
  246. property oobinline:
  247. def __get__(self):
  248. cdef int result
  249. with nogil:
  250. result = io_sock_get_oobinline(self._c_handle)
  251. if result == -1:
  252. io_error()
  253. return <bint>result
  254. def __set__(self, bint value):
  255. cdef int result
  256. with nogil:
  257. result = io_sock_set_oobinline(self._c_handle, value)
  258. if result == -1:
  259. io_error()
  260. property rcvbuf:
  261. def __get__(self):
  262. cdef int result
  263. with nogil:
  264. result = io_sock_get_rcvbuf(self._c_handle)
  265. if result == -1:
  266. io_error()
  267. return result
  268. def __set__(self, int value):
  269. cdef int result
  270. with nogil:
  271. result = io_sock_set_rcvbuf(self._c_handle, value)
  272. if result == -1:
  273. io_error()
  274. property rcvtimeo:
  275. def __set__(self, int value):
  276. cdef int result
  277. with nogil:
  278. result = io_sock_set_rcvtimeo(self._c_handle, value)
  279. if result == -1:
  280. io_error()
  281. property reuseaddr:
  282. def __get__(self):
  283. cdef int result
  284. with nogil:
  285. result = io_sock_get_reuseaddr(self._c_handle)
  286. if result == -1:
  287. io_error()
  288. return <bint>result
  289. def __set__(self, bint value):
  290. cdef int result
  291. with nogil:
  292. result = io_sock_set_reuseaddr(self._c_handle, value)
  293. if result == -1:
  294. io_error()
  295. property sndbuf:
  296. def __get__(self):
  297. cdef int result
  298. with nogil:
  299. result = io_sock_get_sndbuf(self._c_handle)
  300. if result == -1:
  301. io_error()
  302. return result
  303. def __set__(self, int value):
  304. cdef int result
  305. with nogil:
  306. result = io_sock_set_sndbuf(self._c_handle, value)
  307. if result == -1:
  308. io_error()
  309. property sndtimeo:
  310. def __set__(self, int value):
  311. cdef int result
  312. with nogil:
  313. result = io_sock_set_sndtimeo(self._c_handle, value)
  314. if result == -1:
  315. io_error()
  316. property tcp_nodelay:
  317. def __get__(self):
  318. cdef int result
  319. with nogil:
  320. result = io_sock_get_tcp_nodelay(self._c_handle)
  321. if result == -1:
  322. io_error()
  323. return <bint>result
  324. def __set__(self, bint value):
  325. cdef int result
  326. with nogil:
  327. result = io_sock_set_tcp_nodelay(self._c_handle, value)
  328. if result == -1:
  329. io_error()
  330. property nread:
  331. def __get__(self):
  332. cdef ssize_t result
  333. with nogil:
  334. result = io_sock_get_nread(self._c_handle)
  335. if result == -1:
  336. io_error()
  337. return result
  338. property mcast_loop:
  339. def __get__(self):
  340. cdef int result
  341. with nogil:
  342. result = io_sock_get_mcast_loop(self._c_handle)
  343. if result == -1:
  344. io_error()
  345. return <bint>result
  346. def __set__(self, bint value):
  347. cdef int result
  348. with nogil:
  349. result = io_sock_set_mcast_loop(self._c_handle, value)
  350. if result == -1:
  351. io_error()
  352. property mcast_ttl:
  353. def __get__(self):
  354. cdef int result
  355. with nogil:
  356. result = io_sock_get_mcast_ttl(self._c_handle)
  357. if result == -1:
  358. io_error()
  359. return <bint>result
  360. def __set__(self, bint value):
  361. cdef int result
  362. with nogil:
  363. result = io_sock_set_mcast_ttl(self._c_handle, value)
  364. if result == -1:
  365. io_error()
  366. def mcast_join(self, unsigned int index, IOAddr group not None,
  367. IOAddr source = None):
  368. cdef int result
  369. if source is None:
  370. with nogil:
  371. result = io_sock_mcast_join_group(self._c_handle, index,
  372. group._c_addr)
  373. else:
  374. with nogil:
  375. result = io_sock_mcast_join_source_group(self._c_handle, index,
  376. group._c_addr,
  377. source._c_addr)
  378. if result == -1:
  379. io_error()
  380. def mcast_block(self, unsigned int index, IOAddr group not None,
  381. IOAddr source not None):
  382. cdef int result
  383. with nogil:
  384. result = io_sock_mcast_block_source(self._c_handle, index,
  385. group._c_addr, source._c_addr)
  386. if result == -1:
  387. io_error()
  388. def mcast_unblock(self, unsigned int index, IOAddr group not None,
  389. IOAddr source not None):
  390. cdef int result
  391. with nogil:
  392. result = io_sock_mcast_unblock_source(self._c_handle, index,
  393. group._c_addr, source._c_addr)
  394. if result == -1:
  395. io_error()
  396. def mcast_leave(self, unsigned int index, IOAddr group not None,
  397. IOAddr source = None):
  398. cdef int result
  399. if source is None:
  400. with nogil:
  401. result = io_sock_mcast_leave_group(self._c_handle, index,
  402. group._c_addr)
  403. else:
  404. with nogil:
  405. result = io_sock_mcast_leave_source_group(self._c_handle, index,
  406. group._c_addr,
  407. source._c_addr)
  408. if result == -1:
  409. io_error()
  410. cdef IOSock IOSock_new(io_handle_t handle):
  411. cdef IOSock obj = IOSock()
  412. obj._c_handle = handle
  413. return obj