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
(C) PC/SC Async Wait for Smart Card Status Change (Inserted, Removed from Reader, etc.)See more SCard ExamplesDemonstrates how to start an asynchronous Chilkat task to wait for a status change, such as for a smart card to be inserted into a reader, or removed from a reader. After starting the background task, the code loops to check on the status of your task. Note: Instead of writing a loop to wait for the status change, your application might periodically check the task status via a timer event or something similar. The purpose of this example is to show (1) how to start the async task, and (2) how to periodically check the status of the task. Note: This functionality was introduced in Chilkat v9.5.0.87.
#include <C_CkSCard.h> #include <C_CkStringTable.h> #include <C_CkJsonObject.h> #include <C_CkTask.h> void ChilkatSample(void) { HCkSCard scard; BOOL success; HCkStringTable stReaders; HCkJsonObject json; HCkTask task; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. scard = CkSCard_Create(); // First establish a context to the PC/SC Resource Manager success = CkSCard_EstablishContext(scard,"user"); if (success == FALSE) { printf("%s\n",CkSCard_lastErrorText(scard)); CkSCard_Dispose(scard); return; } // Get the list of all readers. stReaders = CkStringTable_Create(); success = CkSCard_ListReaders(scard,stReaders); if (success == FALSE) { printf("%s\n",CkSCard_lastErrorText(scard)); CkSCard_Dispose(scard); CkStringTable_Dispose(stReaders); return; } // Create a Chilkat task to wait for a max of 1 hour (3600 seconds, or 3600000 milliseconds) for any smart card reader status change. json = CkJsonObject_Create(); task = CkSCard_GetStatusChangeAsync(scard,3600000,stReaders,json); if (CkSCard_getLastMethodSuccess(scard) == FALSE) { printf("%s\n",CkSCard_lastErrorText(scard)); CkSCard_Dispose(scard); CkStringTable_Dispose(stReaders); CkJsonObject_Dispose(json); return; } // Start the task in a background thread. success = CkTask_Run(task); if (!success) { printf("%s\n",CkTask_lastErrorText(task)); } // Loop until the task is finished, which happens when any reader's status changes. // Instead of looping here, your application could periodically check on the task status in some other way, // such as in a periodic timer event.. while (CkTask_getFinished(task) != TRUE) { // Sleep 100 ms. CkTask_SleepMs(task,100); } // When we call GetStatusChangeAsync, what's really happening is that GetStatusChange is being called in a background thread. // It returns a boolean (success/failure). Therefore, we call task.GetResultBool to get the boolean returned by GetStatusChange // in the background thread. success = CkTask_GetResultBool(task); if (success == FALSE) { // The call to GetStatusChange in the background thread failed. Let's find out why by getting the LastErrorText // for the background synchronous call. printf("%s\n",CkTask_resultErrorText(task)); } CkTask_Dispose(task); // If the background call to GetStatusChange succeeded, then the result was placed in the last arg, // which was our variable named "json". if (success == FALSE) { CkSCard_Dispose(scard); CkStringTable_Dispose(stReaders); CkJsonObject_Dispose(json); return; } // Let's see what happened... CkJsonObject_putEmitCompact(json,FALSE); printf("%s\n",CkJsonObject_emit(json)); printf(" \n"); // See the Wait for Smart Card Insertion/Removal Example for details about parsing the returned JSON. // Applications should always release the context when finished. success = CkSCard_ReleaseContext(scard); if (success == FALSE) { printf("%s\n",CkSCard_lastErrorText(scard)); } // Note: It may be necessary to call FinalizeThreadPool in some programming environments just before your program exits. // (Not after every async function call, but only before program exit.) // See Call FinalizeThreadPool before program exit CkSCard_Dispose(scard); CkStringTable_Dispose(stReaders); CkJsonObject_Dispose(json); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.