Convert javascript examples to nodejs.

This commit is contained in:
Oliver Buchtala 2013-09-03 06:26:54 +02:00
commit 5da54ca435
48 changed files with 312 additions and 223 deletions

View file

@ -1,21 +1,21 @@
TOP = ../..
SWIG = $(TOP)/../preinst-swig
CXXSRCS = example.cpp
CXXSRCS = example.cxx
JS_SCRIPT = runme.js
TARGET = example
INTERFACE = example.i
all::
wrapper::
$(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' javascript_cpp
SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' javascript_wrapper_cpp
build:: wrapper
$(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \
SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' javascript_build
clean::
$(MAKE) -f $(TOP)/Makefile javascript_clean
javascript_exe::
$(MAKE) -f $(TOP)/Makefile JSCXXSRCS='$(JSCXXSRCS)' TARGET='$(TARGET)' \
TOP='$(TOP)' javascript_exe
check:: all
check:: build
$(MAKE) -f $(TOP)/Makefile JSCXXSRCS='$(JSCXXSRCS)' TARGET='$(TARGET)' \
TOP='$(TOP)' JS_SCRIPT='$(JS_SCRIPT)' javascript_run

View file

@ -0,0 +1,8 @@
{
"targets": [
{
"target_name": "example",
"sources": [ "example.cxx", "example_wrap.cxx" ]
}
]
}

View file

@ -1,23 +1,23 @@
// This file illustrates the manipulation of C++ references in Javascript.
// TODO: deleteion of vector objects created here
var example = require("./build/Release/example");
// ----- Object creation -----
print("Creating some objects:\n");
console.log("Creating some objects:\n");
a = new example.Vector(3,4,5);
b = new example.Vector(10,11,12);
print(" created" + a.print());
print(" created" + b.print());
console.log(" created" + a.print());
console.log(" created" + b.print());
// ----- Call an overloaded operator -----
// This calls the wrapper we placed around operator+(const Vector &a, const Vector &)
// It returns a new allocated object.
print("Adding a+b\n");
console.log("Adding a+b\n");
c = example.addv(a, b);
print("a+b = " + c.print());
console.log("a+b = " + c.print());
// TODO: Note: Unless we free the result, a memory leak will occur
@ -26,9 +26,9 @@ print("a+b = " + c.print());
// ----- Create a vector array -----
// Note: Using the high-level interface here
print("Creating an array of vectors\n");
console.log("Creating an array of vectors\n");
va = new example.VectorArray(10);
print("va = " + va + "\n");
console.log("va = " + va + "\n");
// ----- Set some values in the array -----
@ -46,20 +46,20 @@ va.set(2,example.addv(a,b));
// Get some values from the array
print("Getting some array values\n");
console.log("Getting some array values\n");
for (i = 0; i < 5; i++) {
temp = va.get(i);
print(i,temp.print());
console.log(i,temp.print());
}
// Watch under resource meter to check on this
print("Making sure we don't leak memory.\n");
console.log("Making sure we don't leak memory.\n");
for (i = 0; i < 1000000; i++) {
c = va.get(i % 10);
}
//---------TODO---------
//----- Clean up -----
//print("Cleaning up\n");
//console.log("Cleaning up\n");
//example.delete_VectorArray(va);
//example.delete_Vector(a);