view Resources/CodeGeneration/Graveyard/runts.ps1 @ 508:7105a0bad250 bgo-commands-codegen

- Added HandleSerializedMessage to IStoneApplication (empty impl) - Split UpdateWebApplication with "WithString" and "WithSerializedMessage" variants - Due to the modules in TS, globals are now unallowed and the callbacks from C++ to JS are stored in the "window" instance - Split UpdateStoneApplicationStatusFromCpp with "WithString" and "WithSerializedMessage" variants - Split NotifyStatusUpdateFromCppToWeb with "WithString" and "WithSerializedMessage" variants - SendMessageToStoneApplication (C++ global) has been split into SendSerializedMessageToStoneApplication and SendCommandToStoneApplication - In WasmPlatformApplicationAdapter: HandleMessageFromWeb becomes HandleCommandFromWeb - In WasmPlatformApplicationAdapter: added HandleSerializedMessageFromWeb - stonegentool now handles the "json" primitive type (used, a.o., in the VSOL "EditInstance" message) - Fixed indentation and added json serialization overloads in the stonegentool templates - Added test of the json primitive type to testWasmIntegrated (in Resources/CodeGeneration) - Adapted testWasmIntegrated (in Resources/CodeGeneration) to the changes above
author Benjamin Golinvaux <bgo@osimis.io>
date Wed, 06 Mar 2019 10:14:59 +0100
parents 6405435480ae
children 1dbf2d9ed1e4
line wrap: on
line source

# echo "+----------------------+"
# echo "|    template.in.ts    |"
# echo "+----------------------+"

# tsc -t ES2015 .\template.in.ts; node .\template.in.js

# echo "+----------------------+"
# echo "|    playground.ts     |"
# echo "+----------------------+"

# tsc -t ES2015 .\playground.ts; node .\playground.js

# echo "+----------------------+"
# echo "|    playground3.ts     |"
# echo "+----------------------+"

# tsc -t ES2015 .\playground3.ts; node .\playground3.js

echo "+----------------------+"
echo "|      stonegen        |"
echo "+----------------------+"

if(-not (test-Path "build")) {
  mkdir "build"
}

echo "Generate the TS and CPP wrapper... (to build/)"
python stonegentool.py -o "." test_data/test1.yaml
if($LASTEXITCODE -ne 0) {
  Write-Error ("Code generation failed!")
  exit $LASTEXITCODE
}

echo "Compile the TS wrapper to JS... (in build/)"
tsc --module commonjs --sourceMap -t ES2015 --outDir "build/" VsolMessages_generated.ts
if($LASTEXITCODE -ne 0) {
  Write-Error ("Code compilation failed!")
  exit $LASTEXITCODE
}

echo "Compile the test app..."
tsc --module commonjs --sourceMap -t ES2015 --outDir "build/" test_stonegen.ts
if($LASTEXITCODE -ne 0) {
  Write-Error ("Code compilation failed!")
  exit $LASTEXITCODE
}

browserify "build/test_stonegen.js" "build/VsolMessages_generated.js" -o "build_browser/test_stonegen_fused.js"

cp .\test_stonegen.html .\build_browser\

echo "Run the test app..."
Push-Location
cd build_browser
node .\test_stonegen_fused.js
Pop-Location
if($LASTEXITCODE -ne 0) {
  Write-Error ("Code execution failed!")
  exit $LASTEXITCODE
}