Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) Chaining Asynchronous StreamsThe asynchronous functionality of Chilkat, combined with streams, can offer some interesting possibilities. This example demonstrates how to create two streams, call them streamA and streamB, where streamA feeds into streamB and both streams run in background threads. The examples demonstrates copying a file in this way: sourceFile --> streamA --> streamB --> outputFile This may seem pointless, but the possibilities become interesting when intermediate streams can perform tasks such as encryption or compression, or when a source or sink is a socket, a TLS connection, an SSH tunnel, etc. Or perhaps if a stream becomes the source for the file in an HTTP upload, or perhaps it is the source or sink for files in FTP, SFTP, etc. This is where Chilkat's Async standards in combination with Chilkat Stream can begin to offer powerful and simple-to-implement possibilities.
#include <CkStream.h> #include <CkTask.h> #include <CkFileAccess.h> void ChilkatSample(void) { CkString strOut; CkStream streamA; CkStream streamB; streamA.put_SourceFile("qa_data/hamlet.xml"); // streamA will feed into streamB. (streamA is the source for streamB) bool success = streamB.SetSourceStream(streamA); streamB.put_SinkFile("qa_output/hamlet_copy.xml"); // Run each stream asynchronously in background threads: CkTask *taskA = streamA.RunStreamAsync(); CkTask *taskB = streamB.RunStreamAsync(); // Start each task. (The call to Run returns immediately. // each task begins running in its own background thread.) success = taskA->Run(); success = taskB->Run(); // Wait for each task to complete. // Note: The SleepMs method is a utility method that puts the caller to sleep // for a specified number of milliseconds. // It is the caller's thread that sleeps (i.e. this foreground thread). // It does not cause the background thread of the given task object to sleep. while (((taskA->get_Finished() != true) || (taskB->get_Finished() != true))) { taskB->SleepMs(20); } // At this point, each background task has finished. // Let's check to see if each stream succeeded. // Did streamA succeed in reading the entire file? if (taskA->get_TaskSuccess() != true) { strOut.append("streamA failed:"); strOut.append("\r\n"); strOut.append(taskA->resultErrorText()); strOut.append("\r\n"); success = false; } // Did streamB succeed in writing the entire file? if (taskB->get_TaskSuccess() != true) { strOut.append("streamB failed:"); strOut.append("\r\n"); strOut.append(taskB->resultErrorText()); strOut.append("\r\n"); success = false; } if (success != true) { SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Let's double-check to see that the files are equal in size and content: CkFileAccess fac; bool bFilesEqual = fac.FileContentsEqual(streamA.sourceFile(),streamB.sinkFile()); if (bFilesEqual != true) { strOut.append("The output file is not equal to the input file!"); strOut.append("\r\n"); } else { strOut.append("The file was successfully copied in a very roundabout way!"); strOut.append("\r\n"); } SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.