2011-03-20 19:18:19 +01:00
|
|
|
/****************************************************************************
|
2021-06-16 09:22:16 +02:00
|
|
|
* apps/examples/poll/poll_main.c
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-15 09:09:58 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-15 09:09:58 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
2021-06-15 09:09:58 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2011-03-20 19:18:19 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <poll.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include "poll_internal.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-09-03 00:49:17 +02:00
|
|
|
* Pre-processor Definitions
|
2011-03-20 19:18:19 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-08-30 22:13:50 +02:00
|
|
|
* Name: poll_main
|
2011-03-20 19:18:19 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
2014-09-06 17:23:23 +02:00
|
|
|
int main(int argc, FAR char *argv[])
|
2011-03-20 19:18:19 +01:00
|
|
|
{
|
|
|
|
char buffer[64];
|
|
|
|
ssize_t nbytes;
|
|
|
|
pthread_t tid1;
|
|
|
|
pthread_t tid2;
|
|
|
|
#ifdef HAVE_NETPOLL
|
|
|
|
pthread_t tid3;
|
|
|
|
#endif
|
|
|
|
int count;
|
|
|
|
int fd1 = -1;
|
|
|
|
int fd2 = -1;
|
|
|
|
int ret;
|
|
|
|
int exitcode = 0;
|
|
|
|
|
|
|
|
/* Open FIFOs */
|
|
|
|
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("\npoll_main: Creating FIFO %s\n", FIFO_PATH1);
|
2011-03-20 19:18:19 +01:00
|
|
|
ret = mkfifo(FIFO_PATH1, 0666);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("poll_main: mkfifo failed: %d\n", errno);
|
2011-03-20 19:18:19 +01:00
|
|
|
exitcode = 1;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("\npoll_main: Creating FIFO %s\n", FIFO_PATH2);
|
2011-03-20 19:18:19 +01:00
|
|
|
ret = mkfifo(FIFO_PATH2, 0666);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("poll_main: mkfifo failed: %d\n", errno);
|
2011-03-20 19:18:19 +01:00
|
|
|
exitcode = 2;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Open the FIFOs for blocking, write */
|
|
|
|
|
|
|
|
fd1 = open(FIFO_PATH1, O_WRONLY);
|
|
|
|
if (fd1 < 0)
|
|
|
|
{
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("poll_main: Failed to open FIFO %s for writing, errno=%d\n",
|
|
|
|
FIFO_PATH1, errno);
|
2011-03-20 19:18:19 +01:00
|
|
|
exitcode = 3;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd2 = open(FIFO_PATH2, O_WRONLY);
|
|
|
|
if (fd2 < 0)
|
|
|
|
{
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("poll_main: Failed to open FIFO %s for writing, errno=%d\n",
|
|
|
|
FIFO_PATH2, errno);
|
2011-03-20 19:18:19 +01:00
|
|
|
exitcode = 4;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start the listeners */
|
|
|
|
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("poll_main: Starting poll_listener thread\n");
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
|
|
ret = pthread_create(&tid1, NULL, poll_listener, NULL);
|
|
|
|
if (ret != 0)
|
|
|
|
{
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("poll_main: Failed to create poll_listener thread: %d\n", ret);
|
2011-03-20 19:18:19 +01:00
|
|
|
exitcode = 5;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("poll_main: Starting select_listener thread\n");
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
|
|
ret = pthread_create(&tid2, NULL, select_listener, NULL);
|
|
|
|
if (ret != 0)
|
|
|
|
{
|
2023-03-05 17:40:05 +01:00
|
|
|
printf("poll_main: Failed to create select_listener thread: %d\n",
|
|
|
|
ret);
|
2011-03-20 19:18:19 +01:00
|
|
|
exitcode = 6;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_NETPOLL
|
|
|
|
#ifdef CONFIG_NET_TCPBACKLOG
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("poll_main: Starting net_listener thread\n");
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
|
|
ret = pthread_create(&tid3, NULL, net_listener, NULL);
|
|
|
|
#else
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("poll_main: Starting net_reader thread\n");
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
|
|
ret = pthread_create(&tid3, NULL, net_reader, NULL);
|
|
|
|
#endif
|
|
|
|
if (ret != 0)
|
|
|
|
{
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("poll_main: Failed to create net_listener thread: %d\n", ret);
|
2011-03-20 19:18:19 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-02-06 10:13:31 +01:00
|
|
|
/* Let the pthreads run first */
|
|
|
|
|
|
|
|
sleep(1);
|
|
|
|
|
2011-03-20 19:18:19 +01:00
|
|
|
/* Loop forever */
|
|
|
|
|
|
|
|
for (count = 0; ; count++)
|
|
|
|
{
|
|
|
|
/* Send a message to the listener... this should wake the listener
|
|
|
|
* from the poll.
|
|
|
|
*/
|
|
|
|
|
2023-03-05 16:55:15 +01:00
|
|
|
snprintf(buffer, sizeof(buffer), "Message %d", count);
|
2011-03-20 19:18:19 +01:00
|
|
|
nbytes = write(fd1, buffer, strlen(buffer));
|
|
|
|
if (nbytes < 0)
|
|
|
|
{
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("poll_main: Write to fd1 failed: %d\n", errno);
|
2011-03-20 19:18:19 +01:00
|
|
|
exitcode = 7;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
nbytes = write(fd2, buffer, strlen(buffer));
|
|
|
|
if (nbytes < 0)
|
|
|
|
{
|
2014-10-08 16:33:00 +02:00
|
|
|
printf("poll_main: Write fd2 failed: %d\n", errno);
|
2011-03-20 19:18:19 +01:00
|
|
|
exitcode = 8;
|
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
2014-11-25 21:51:10 +01:00
|
|
|
printf("\npoll_main: Sent '%s' (%ld bytes)\n",
|
|
|
|
buffer, (long)nbytes);
|
2014-10-08 16:33:00 +02:00
|
|
|
fflush(stdout);
|
2011-03-20 19:18:19 +01:00
|
|
|
|
|
|
|
/* Wait awhile. This delay should be long enough that the
|
|
|
|
* listener will timeout.
|
|
|
|
*/
|
|
|
|
|
|
|
|
sleep(WRITER_DELAY);
|
|
|
|
}
|
|
|
|
|
|
|
|
errout:
|
|
|
|
if (fd1 >= 0)
|
|
|
|
{
|
|
|
|
close(fd1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd2 >= 0)
|
|
|
|
{
|
|
|
|
close(fd2);
|
|
|
|
}
|
|
|
|
|
|
|
|
fflush(stdout);
|
|
|
|
return exitcode;
|
|
|
|
}
|