Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C) Socket Select for ReadingDemonstrates how the Chilkat socket object can become a "socket set" that contains other connected socket objects, and this can be used to "select" on multiple sockets for reading. The SelectForReading method waits until one or more sockets in the set have incoming data ready and available to read.
#include <C_CkSocketW.h> #include <C_CkStringArrayW.h> void ChilkatSample(void) { HCkSocketW socketSet; BOOL success; HCkStringArrayW saDomains; HCkStringArrayW saUrls; HCkStringArrayW saFilenames; int numConnections; int i; BOOL useSsl; int maxWaitMs; int port; const wchar_t *domain; const wchar_t *getReq; HCkSocketW sock; int numReady; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // This will be the socket object that will contain other // connected sockets. socketSet = CkSocketW_Create(); // Before we begin, create a few StringArray objects holding // domain names, URLs, and output filenames to be used // in this example. saDomains = CkStringArrayW_Create(); saUrls = CkStringArrayW_Create(); saFilenames = CkStringArrayW_Create(); CkStringArrayW_Append(saDomains,L"www.chilkatsoft.com"); CkStringArrayW_Append(saDomains,L"www.cknotes.com"); CkStringArrayW_Append(saDomains,L"www.google.com"); CkStringArrayW_Append(saDomains,L"www.example-code.com"); CkStringArrayW_Append(saDomains,L"www.yahoo.com"); CkStringArrayW_Append(saUrls,L"http://www.chilkatsoft.com/"); CkStringArrayW_Append(saUrls,L"http://www.cknotes.com/"); CkStringArrayW_Append(saUrls,L"http://www.google.com/"); CkStringArrayW_Append(saUrls,L"http://www.example-code.com/"); CkStringArrayW_Append(saUrls,L"http://www.yahoo.com/"); CkStringArrayW_Append(saFilenames,L"chilkatsoft.out"); CkStringArrayW_Append(saFilenames,L"cknotes.out"); CkStringArrayW_Append(saFilenames,L"google.out"); CkStringArrayW_Append(saFilenames,L"example-code.out"); CkStringArrayW_Append(saFilenames,L"yahoo.out"); numConnections = 5; // This example will connect to 5 different web servers, // send an HTTP request to each, and read the HTTP response // form each. It will call the SelectForReading method to wait // until data arrives from any of the connected sockets. // NOTE: As you'll see later, communicating with HTTP servers // is better left to the Chilkat HTTP component/library because // of many HTTP protocol issues such as redirects, GZIP responses, // chunked responses, etc. We're only communicating with // HTTP servers here as a convenient way of demonstrating // the technique of waiting for data to arrive from a set of // connected sockets. // First, connect to each of the web servers: useSsl = FALSE; maxWaitMs = 5000; port = 80; for (i = 0; i <= numConnections - 1; i++) { sock = CkSocketW_Create(); domain = CkStringArrayW_getString(saDomains,i); success = CkSocketW_Connect(sock,domain,port,useSsl,maxWaitMs); if (success != TRUE) { wprintf(L"%s\n",CkSocketW_lastErrorText(sock)); CkSocketW_Dispose(socketSet); CkStringArrayW_Dispose(saDomains); CkStringArrayW_Dispose(saUrls); CkStringArrayW_Dispose(saFilenames); CkSocketW_Dispose(sock); return; } // Save a filename in the socket object's UserData. We'll use this // later when saving the data read in the HTTP response. CkSocketW_putUserData(sock,CkStringArrayW_getString(saFilenames,i)); // Display the remote IP address of the connected socket: wprintf(L"connected to %s\n",CkSocketW_remoteIpAddress(sock)); // Build the HTTP GET request to be sent to the web server. getReq = CkSocketW_buildHttpGetRequest(sock,CkStringArrayW_getString(saUrls,i)); // Send the HTTP GET request to the web server. success = CkSocketW_SendString(sock,getReq); if (success != TRUE) { wprintf(L"%s\n",CkSocketW_lastErrorText(sock)); CkSocketW_Dispose(socketSet); CkStringArrayW_Dispose(saDomains); CkStringArrayW_Dispose(saUrls); CkStringArrayW_Dispose(saFilenames); CkSocketW_Dispose(sock); return; } // Tell the socketSet object to take ownership of the connected socket. // This adds the connection to the internal set of sockets contained // within socketSet. success = CkSocketW_TakeSocket(socketSet,sock); if (success != TRUE) { // The TakeSocket method shouldn't fail. The only reason it might // is if we try to give it an unconnected socket -- but we already // know it's connected at this point.. wprintf(L"%s\n",CkSocketW_lastErrorText(socketSet)); CkSocketW_Dispose(socketSet); CkStringArrayW_Dispose(saDomains); CkStringArrayW_Dispose(saUrls); CkStringArrayW_Dispose(saFilenames); CkSocketW_Dispose(sock); return; } } // At this point we have 5 TCP/IP connections contained within the socketSet object. // Each of the web servers have received a GET request and will be // sending a response. We now want to write a loop that waits for data // to arrive from any of the 5 connections, reads incoming data, and // saves the data to files. // We'll use the StartTiming method and ElapsedSeconds property // to wait a maximum of 10 seconds. The reason we do this is because // different web servers will behave differently w.r.t. idle connections. // Some web servers close the connections quickly while others do not. // The socket component is not "HTTP aware", meaning that it is not parsing // the HTTP response and therefore does not know when it has received // the full response. Because of this, we might receive the full response // and then wait a long time before the server decides to close its side of // the connection. // The ElapsedSeconds property will return the number of seconds that // have elapsed since the last call to StartTiming (on the same object instance). CkSocketW_StartTiming(socketSet); while (((CkSocketW_getNumSocketsInSet(socketSet) > 0) && (CkSocketW_getElapsedSeconds(socketSet) < 10))) { maxWaitMs = 300; // Wait for data to arrive on any of the sockets. Waits a maximum // of 300 milliseconds. If maxWaitMs = 0, then it is effectively a poll. // If no sockets have data available for reading, then a value of 0 is // returned. A value of -1 indicates an error condition. // Note: when the remote peer (in this case the web server) disconnects, // the socket will appear as if it has data available. A "ready" socket // is one where either data is available for reading or the socket has // become disconnected. numReady = CkSocketW_SelectForReading(socketSet,maxWaitMs); if (numReady < 0) { wprintf(L"%s\n",CkSocketW_lastErrorText(socketSet)); CkSocketW_Dispose(socketSet); CkStringArrayW_Dispose(saDomains); CkStringArrayW_Dispose(saUrls); CkStringArrayW_Dispose(saFilenames); CkSocketW_Dispose(sock); return; } // Consume data from each of the ready sockets, and show those // that become disconnected. for (i = 0; i <= numReady - 1; i++) { // To make method calls on the "ready" socket, or to get/set property // values, set the SelectorReadIndex. CkSocketW_putSelectorReadIndex(socketSet,i); // Print information that identifies the socket that is ready for reading: wprintf(L"ready: IP address = %s filename = %s\n",CkSocketW_remoteIpAddress(socketSet),CkSocketW_userData(socketSet)); // Read the selected socket and send the data directly to a file (appending // to the file). success = CkSocketW_ReceiveBytesToFile(socketSet,CkSocketW_userData(socketSet)); // The success/failure of a socket read should normally be checked. // In this case it is not necessary. If the socket became ready for // reading because the remote peer disconnected and there is no // data available, then nothing will be read. The socketSet object // will automatically remove a disconnected socket from its internal set of sockets // the next time SelectForReading or SelectForWriting is called. // We can check to see if the socket is still connected by examining // the IsConnected property: if (CkSocketW_getIsConnected(socketSet) != TRUE) { wprintf(L"disconnected: %s\n",CkSocketW_userData(socketSet)); } } // Set the SelectorReadIndex = -1 so that method calls // and property gets/sets are not routed to one of the socketSet's // contained sockets. This is necessary because we want to // check the number of elapsed seconds from when we called // StartTiming. CkSocketW_putSelectorReadIndex(socketSet,-1); } wprintf(L"Finished.\n"); // Some final notes: // If you examine the output files, you'll see that the HTTP protocol is a little // more complex than you may have originally thought. // 1) HTTP responses are MIME -- there is a MIME header followed by a MIME body. // In most cases, the MIME body is the HTML document itself. // 2) Some HTTP responses return gzip compressed data (which is binary). It must // be decompressed to get the HTML. // 3) Some HTTP responses arrive in "chunked" form. You'll see lines containing nothing but // a hexidecimal number indicating the size of the chunk to follow. It ends with // a 0-sized chunk. // 4) You'll find that some HTTP responses might be redirects to other URL's (such as a 302 redirect). // For the above reasons, and many more, you would typically use the Chilkat HTTP component // to handle the complexities of HTTP. // The reason HTTP was chosen for this example is because: // 1) It is easy to establish multiple connections with existing servers that are not typically not blocked by firewalls. // 2) It is easy to send a request and receive a response. // 3) There is variability in the amount of time before a server decides to disconnect from an idle client CkSocketW_Dispose(socketSet); CkStringArrayW_Dispose(saDomains); CkStringArrayW_Dispose(saUrls); CkStringArrayW_Dispose(saFilenames); CkSocketW_Dispose(sock); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.