Unicode C
Unicode C
Call a JavaScript Function Returning an Integer
See more JavaScript Examples
Demonstrates how to call a JavaScript function that returns an integer.Chilkat Unicode C Downloads
#include <C_CkStringBuilderW.h>
#include <C_CkJsW.h>
#include <C_CkJsonObjectW.h>
void ChilkatSample(void)
{
BOOL success;
HCkStringBuilderW sbScript;
HCkJsW js;
HCkJsonObjectW result;
HCkJsonObjectW funcCall;
int retval;
success = FALSE;
// ----------------------------------------------------------------------------------
// The Javascript function called in this example is shown at the bottom of this page.
// -----------------------------------------------------------------------------------
// In this example, we'll load the Javascript function definition from a file.
// It doesn't need to come from a file. It could just as easily be loaded from a string.
sbScript = CkStringBuilderW_Create();
success = CkStringBuilderW_LoadFile(sbScript,L"js_call_function.js",L"utf-8");
if (success == FALSE) {
wprintf(L"%s\n",CkStringBuilderW_lastErrorText(sbScript));
CkStringBuilderW_Dispose(sbScript);
return;
}
// Note: Each instance of a Chilkat Js object automatically establishes
// its own internal runtime and context. Applications do not need to explicitly create
// the JavaScript runtime or context.
js = CkJsW_Create();
result = CkJsonObjectW_Create();
CkJsonObjectW_putEmitCompact(result,FALSE);
// Call Eval to add the function (shown at the bottom of this page) to the context's global object
success = CkJsW_Eval(js,sbScript,result);
if (success == FALSE) {
// Examine the result for an exception.
wprintf(L"%s\n",CkJsonObjectW_emit(result));
// Also examine the LastErrorText.
wprintf(L"%s\n",CkJsW_lastErrorText(js));
CkStringBuilderW_Dispose(sbScript);
CkJsW_Dispose(js);
CkJsonObjectW_Dispose(result);
return;
}
wprintf(L"%s\n",CkJsonObjectW_emit(result));
// The expected output is "undefined":
// {
// "type": "undefined",
// "value": "undefined"
// }
// When Eval processes a script containing only a function declaration,
// it successfully performs the action (the function becomes defined).
// However, since the script consists of a statement that produces no value,
// the script's overall completion value is empty. In JavaScript, the
// absence of a value is represented by `undefined`.
//
// Therefore, the Eval call returns `undefined`.
// ------------------------------------------------------------------------------
// Call the function calculateScore("Player1", 10, 20)
funcCall = CkJsonObjectW_Create();
// Create JSON defining the function call:
// {
// "name": "calculateScore",
// "args": [ "Player1", 10, 20 ]
// }
CkJsonObjectW_UpdateString(funcCall,L"name",L"calculateScore");
CkJsonObjectW_UpdateString(funcCall,L"args[0]",L"Player1");
CkJsonObjectW_UpdateInt(funcCall,L"args[1]",10);
CkJsonObjectW_UpdateInt(funcCall,L"args[2]",20);
CkJsonObjectW_putEmitCompact(funcCall,FALSE);
wprintf(L"%s\n",CkJsonObjectW_emit(funcCall));
success = CkJsW_CallFunction(js,funcCall,result);
if (success == FALSE) {
// Examine the result for an exception.
wprintf(L"%s\n",CkJsonObjectW_emit(result));
// Also examine the LastErrorText.
wprintf(L"%s\n",CkJsW_lastErrorText(js));
CkStringBuilderW_Dispose(sbScript);
CkJsW_Dispose(js);
CkJsonObjectW_Dispose(result);
CkJsonObjectW_Dispose(funcCall);
return;
}
wprintf(L"%s\n",CkJsonObjectW_emit(result));
// Output:
// {
// "type": "int",
// "value": 37
// }
retval = CkJsonObjectW_IntOf(result,L"value");
wprintf(L"retval = %d\n",retval);
CkStringBuilderW_Dispose(sbScript);
CkJsW_Dispose(js);
CkJsonObjectW_Dispose(result);
CkJsonObjectW_Dispose(funcCall);
}