bandwidth-slave-many-up.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * Copyright © 2009 Stéphane Raimbault <stephane.raimbault@gmail.com>
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include <stdio.h>
  18. #include <unistd.h>
  19. #include <string.h>
  20. #include <stdlib.h>
  21. #include <errno.h>
  22. #include <signal.h>
  23. #include <modbus/modbus.h>
  24. #define NB_CONNECTION 5
  25. int slave_socket;
  26. modbus_mapping_t mb_mapping;
  27. static void close_sigint(int dummy)
  28. {
  29. shutdown(slave_socket, SHUT_RDWR);
  30. close(slave_socket);
  31. modbus_mapping_free(&mb_mapping);
  32. exit(dummy);
  33. }
  34. int main(void)
  35. {
  36. int master_socket;
  37. modbus_param_t mb_param;
  38. int ret;
  39. fd_set refset;
  40. fd_set rdset;
  41. /* Maximum file descriptor number */
  42. int fdmax;
  43. modbus_init_tcp(&mb_param, "127.0.0.1", 1502);
  44. ret = modbus_mapping_new(&mb_mapping, MAX_STATUS, 0, MAX_REGISTERS, 0);
  45. if (ret == FALSE) {
  46. printf("Memory allocation failure\n");
  47. exit(1);
  48. }
  49. slave_socket = modbus_slave_listen_tcp(&mb_param, NB_CONNECTION);
  50. signal(SIGINT, close_sigint);
  51. /* Clear the reference set of socket */
  52. FD_ZERO(&refset);
  53. /* Add the slave socket */
  54. FD_SET(slave_socket, &refset);
  55. /* Keep track of the max file descriptor */
  56. fdmax = slave_socket;
  57. for (;;) {
  58. rdset = refset;
  59. if (select(fdmax+1, &rdset, NULL, NULL, NULL) == -1) {
  60. perror("Slave select() failure.");
  61. close_sigint(1);
  62. }
  63. /* Run through the existing connections looking for data to be
  64. * read */
  65. for (master_socket = 0; master_socket <= fdmax; master_socket++) {
  66. if (FD_ISSET(master_socket, &rdset)) {
  67. if (master_socket == slave_socket) {
  68. /* A client is asking a new connection */
  69. socklen_t addrlen;
  70. struct sockaddr_in clientaddr;
  71. int newfd;
  72. /* Handle new connections */
  73. addrlen = sizeof(clientaddr);
  74. memset(&clientaddr, 0, sizeof(clientaddr));
  75. newfd = accept(slave_socket, (struct sockaddr *)&clientaddr, &addrlen);
  76. if (newfd == -1) {
  77. perror("Server accept() error");
  78. } else {
  79. FD_SET(newfd, &refset);
  80. if (newfd > fdmax) {
  81. /* Keep track of the maximum */
  82. fdmax = newfd;
  83. }
  84. printf("New connection from %s:%d on socket %d\n",
  85. inet_ntoa(clientaddr.sin_addr), clientaddr.sin_port, newfd);
  86. }
  87. } else {
  88. /* An already connected master has sent a new query */
  89. uint8_t query[MAX_MESSAGE_LENGTH];
  90. int query_size;
  91. ret = modbus_slave_receive(&mb_param, master_socket, query, &query_size);
  92. if (ret == 0) {
  93. modbus_manage_query(&mb_param, query, query_size, &mb_mapping);
  94. } else {
  95. /* Connection closed by the client, end of server */
  96. printf("Connection closed on socket %d\n", master_socket);
  97. shutdown(master_socket, SHUT_RDWR);
  98. close(master_socket);
  99. /* Remove from reference set */
  100. FD_CLR(master_socket, &refset);
  101. if (master_socket == fdmax) {
  102. fdmax--;
  103. }
  104. }
  105. }
  106. }
  107. }
  108. }
  109. return 0;
  110. }