SPVM::ExchangeAPI - SPVM Exchange API
SPVM::ExchangeAPI is APIs to convert Perl data structures to/from SPVM data structures, and to call SPVM methods from Perl.
SPVM::ExchangeAPI
my $api = SPVM::ExchangeAPI->new(env => $env, stack => $stack); my $int_array = $api->new_int_array([1, 2, 3]);
Getting an global ExchangeAPI object:
ExchangeAPI
my $api = SPVM::api(); my $int_array = $api->new_int_array([1, 2, 3]);
my $env = $api->env;
Gets the execution environment.
my $stack = $api->stack;
Gets the call stack.
my $api = SPVM::ExchangeAPI->new(env => $env, stack => $stack);
Creates a new SPVM::ExchangeAPI object.
Options:
env
An execution environment.
stack
An stack.
Perl types used in this document.
Perl number scalar.
Perl number scalar that is exepected to be an integer value.
Perl string scalar.
Perl string scalar that is exepected to be a packed data.
Perl array reference
Perl hash reference
my $ret = $api->new_byte_array($array);
Converts a Perl array reference to a SPVM byte array using the convertion of "byte[] Argument" and returns it.
byte
Argument Types:
$array : array_ref
Return Type:
SPVM::BlessedObject::Array
Exceptions:
The $array must be an array reference.
Examples:
my $spvm_array = $api->new_byte_array([1, 2, 3]);
my $ret = $api->new_byte_array_len($length);
Creates a SPVM byte array with the $length.
$length : integer
The $length must be greater than or equal to 0.
my $length = 10; my $spvm_array = $api->new_byte_array_len($length);
my $spvm_array = $api->new_byte_array_from_bin($binary);
Converts a Perl binary to a SPVM byte array and returns it.
The Perl binary is interpreted as 8-bit signed integer. The length of the array is calcurated from the Perl binary.
If the argument is undef, returns undef.
undef
$binary : binary
The $binary must be defined.
my $binary = pack('c*', 97, 98, 99); my $spvm_array = $api->new_byte_array_from_bin($binary); my $string = "abc"; my $spvm_array = $api->new_byte_array_from_bin($string); my $string = "あいう"; my $spvm_array = $api->new_byte_array_from_bin($string);
my $ret = $api->new_short_array($array);
Converts a Perl array reference to a SPVM short array using the convertion of "short[] Argument" and returns it.
short
my $spvm_array = $api->new_short_array([1, 2, 3]);
my $ret = $api->new_short_array_len($length);
Creates a SPVM short array with the $length.
my $length = 10; my $spvm_array = $api->new_short_array_len($length);
my $spvm_array = $api->new_short_array_from_bin($binary);
Converts a Perl binary to a SPVM short array and returns it.
The Perl binary is interpreted as 16-bit signed integer. The length of the array is calcurated from the Perl binary.
my $binary = pack('s*', 97, 98, 99); my $spvm_array = $api->new_short_array_from_bin($binary);
my $ret = $api->new_int_array($array);
Converts a Perl array reference to a SPVM int array using the convertion of "int[] Argument" and returns it.
int
my $spvm_array = $api->new_int_array([1, 2, 3]);
my $ret = $api->new_int_array_len($length);
Creates a SPVM int array with the $length.
my $length = 10; my $spvm_array = $api->new_int_array_len($length);
my $spvm_array = $api->new_int_array_from_bin($binary);
Converts a Perl binary to a SPVM int array and returns it.
The Perl binary is interpreted as 32-bit signed integer. The length of the array is calcurated from the Perl binary.
my $binary = pack('l*', 97, 98, 99); my $spvm_array = $api->new_int_array_from_bin($binary);
my $ret = $api->new_long_array($array);
Converts a Perl array reference to a SPVM long array using the convertion of "long[] Argument" and returns it.
long
"Argument Conversion" is applied to each element.
If the $array is undef, returns undef.
my $spvm_array = $api->new_long_array([1, 2, 3]);
my $ret = $api->new_long_array_len($length);
Creates a SPVM long array with the $length.
my $length = 10; my $spvm_array = $api->new_long_array_len($length);
my $spvm_array = $api->new_long_array_from_bin($binary);
Converts a Perl binary to a SPVM long array and returns it.
The Perl binary is interpreted as 64-bit signed integer. The length of the array is calcurated from the Perl binary.
my $binary = pack('q*', 97, 98, 99); my $spvm_array = $api->new_long_array_from_bin($binary);
my $ret = $api->new_float_array($array);
Converts a Perl array reference to a SPVM float array using the convertion of "float[] Argument" and returns it.
float
my $spvm_array = $api->new_float_array([1, 2, 3]);
my $ret = $api->new_float_array_len($length);
Creates a SPVM float array with the $length.
$length : floateger
my $length = 10; my $spvm_array = $api->new_float_array_len($length);
my $spvm_array = $api->new_float_array_from_bin($binary);
Converts a Perl binary to a SPVM float array and returns it.
The Perl binary is interpretted as 32-bit floating point. The length of the array is calcurated from the Perl binary.
my $binary = pack('f*', 97.1, 98.2, 99.3); my $spvm_array = $api->new_float_array_from_bin($binary);
my $ret = $api->new_double_array($array);
Converts a Perl array reference to a SPVM double array using the convertion of "double[] Argument" and returns it.
double
my $spvm_array = $api->new_double_array([1, 2, 3]);
my $ret = $api->new_double_array_len($length);
Creates a SPVM double array with the $length.
my $length = 10; my $spvm_array = $api->new_double_array_len($length);
my $spvm_array = $api->new_double_array_from_bin($binary);
Converts a Perl binary to a SPVM double array and returns it.
The Perl binary is interpretted as 64-bit floating point. The length of the array is calcurated from the Perl binary.
my $binary = pack('d*', 97.1, 98.2, 99.3); my $spvm_array = $api->new_double_array_from_bin($binary);
my $spvm_string = $api->new_string($string);
Converts a Perl string to a SPVM string using the convertion of "string Argument" and returns it as a SPVM::BlessedObject::String object.
$string : string|SPVM::BlessedObject::String
SPVM::BlessedObject::String
The $string can't be a reference.
my $spvm_string = $api->new_string("abc"); my $spvm_string = $api->new_string("あいう");
my $byte_array = $api->new_any_object_array( [SPVM::Byte->new(1), SPVM::Byte>new(2), SPVM::Byte->new(3)] );
The alias for the following code using the "new_object_array" method.
my $spvm_array = $api->new_object_array('object[]', $array);
my $options = $api->new_options({ x => SPVM::Int->new(1), y => SPVM::Int->new(2) });
Creates options that type is object[].
object[]
my $byte_array = $api->new_object_array( "SPVM::Byte[]", [SPVM::Byte->new(1), SPVM::Byte>new(2), SPVM::Byte->new(3)] );
Converts a Perl array reference to a SPVM SPVM::BlessedObject::Array object that has the value of a object array type and returns it.
The first argument is a SPVM array type name. If the type doesn't exist, an exception will occur.
The second argument is a Perl array reference. Each element must be a SPVM::BlessedObject object or undef. Otherwise an exception will occur.
my $object1 = $api->new_int_array([1, 2, 3]); my $object2 = $api->new_int_array([4, 5, 6]); my $objects = $api->new_object_array("int[][]",[$object1, $object2]);
Converts a Perl array reference to a SPVM::BlessedObject::Array object that has the value of a multi-numeric array type and returns it.
my $values = [ {x => 0, y => 1, z => 2}, {x => 3, y => 4, z => 5}, {x => 6, y => 7, z => 8}, ]; my $spvm_mulnum_array = $api->new_mulnum_array("TestCase::Point_3i[]", $values);
The second argument is a Perl array of a hash references. Each hash reference must be contain all fields of the multi-numeric typee. Otherwise an exception will occur.
my $binary = pack('l9', (0, 1, 2), (3, 4, 5), (6, 7, 8)); my $spvm_mulnum_array = $api->new_mulnum_array_from_bin("TestCase::Point_3i[]", $binary);
Converts a Perl binary to a SPVM::BlessedObject::Array object that has the value of a multi-numeric array type and returns it.
The first argument is a multi-numeric array type of SPVM.
The second argument is a Perl binary. The length of the array is calcurated from the Perl binary.
# new_mulnum_array_from_bin - byte { my $binary = pack('c9', (0, 1, 2), (3, 4, 5), (6, 7, 8)); my $spvm_mulnum_array = $api->new_mulnum_array_from_bin("TestCase::Point_3b[]", $binary); } # new_mulnum_array_from_bin - short { my $binary = pack('s9', (0, 1, 2), (3, 4, 5), (6, 7, 8);; my $spvm_mulnum_array = $api->new_mulnum_array_from_bin("TestCase::Point_3s[]", $binary); } # new_mulnum_array_from_bin - int { my $binary = pack('l9', (0, 1, 2), (3, 4, 5), (6, 7, 8)); my $spvm_mulnum_array = $api->new_mulnum_array_from_bin("TestCase::Point_3i[]", $binary); } # new_mulnum_array_from_bin - long { my $binary = pack('q9', (0, 1, 2), (3, 4, 5), (6, 7, 8)); my $spvm_mulnum_array = $api->new_mulnum_array_from_bin("TestCase::Point_3l[]", $binary); } # new_mulnum_array_from_bin - float { my $binary = pack('f9', (0, 1, 2), (3, 4, 5), (6, 7, 8)); my $spvm_mulnum_array = $api->new_mulnum_array_from_bin("TestCase::Point_3f[]", $binary); } # new_mulnum_array_from_bin - double { my $binary = pack('d9', (0, 1, 2), (3, 4, 5), (6, 7, 8)); my $spvm_mulnum_array = $api->new_mulnum_array_from_bin("TestCase::Point_3d[]", $binary); }
my $ret = $api->get_exception();
Returns the exception in the current thread stack.
SPVM::BlessedObject::String|undef
$api->set_exception($message);
Sets an exception in the current thread stack.
$message : SPVM::BlessedObject::String|undef
The $message must be a SPVM::BlessedObject::String object.
$api->set_exception($api->new_string("abc")); $api->set_exception(undef);
my $ret = $api->get_memory_blocks_count();
Returns the count of memory blocks on the execution environment.
number
# First Memory Blocks Count my $start_memory_blocks_count = $api->get_memory_blocks_count(); # Processing # ... # Last Memory Blocks Count my $end_memory_blocks_count = $api->get_memory_blocks_count(); unless ($end_memory_blocks_count == $start_memory_blocks_count) { die"Memroy leak"; }
my $ret = $api->call_method($invocant, $method_name, @args);
Calls a class method or an instance method. If the $invocant is a string, a class method is called. If the $invocant is a SPVM::BlessedObject::Class, an instance method is called.
The @args are converted by the rule of "Argument Conversion".
The $method_name allows static method name such as Foo::bar.
Foo::bar
The return value is converted by the rule of "Return Value Conversion".
$invocant : string|SPVM::BlessedObject
$method_name : string
@args : the list of the SPVM::BlessedObject object of the argument types of the method (See also "Argument Conversion")
SPVM::BlessedObject of the return type of the method (See also "Return Value Conversion")
The exception message thrown by SPVM.
The $invocant must be a SPVM::BlessedObject::Class object
The static method call must be valid.
The \"%s\" method in the \"%s\" class is not found.
Too few arguments are passed to the \"%s\" method in the \"%s\" class.
Too many arguments are passed to the \"%s\" method in the \"%s\" class.
The %dth argument of the \"%s\" method in the \"%s\" class must be an interger reference
The %dth argument of the \"%s\" method in the \"%s\" class must be a floating-point reference
The %dth argument of the \"%s\" method in the \"%s\" class must be a scalar reference of a hash reference
The %dth argument of the \"%s\" field in the \"%s\" class is not found
The %dth argument of the \"%s\" method in the \"%s\" class must be a number
The %dth argument of the \"%s\" method in the \"%s\" class must be a SPVM::BlessedObject::String object
The %dth argument of the \"%s\" method in the \"%s\" class must be a SPVM::BlessedObject object
The %dth argument of the \"%s\" method in the \"%s\" class must be assinged to the argument type
The %dth argument of the \"%s\" method in the \"%s\" class must be a SPVM::BlessedObject::Class object
The \"%s\" field in the %dth argument must be defined. The field is defined in the \"%s\" class
The %dth argument of the \"%s\" method in the \"%s\" class must be a hash reference
The object must be assigned to the %s type of the %dth argument of the \"%s\" method in the \"%s\" class
The %dth argument of the \"%s\" method in the \"%s\" class must be a SPVM::BlessedObject::Array object
# Class method call my $obj_int = $api->call_method("Int", "new", 1); # Instance method call $api->call_method($obj_int, "set_value", 5); my $value = $api->call_method($obj_int, "value"); # Call static instance method $api->call_method($object, "Foo::value");
my $ret = $api->class($class_name);
Creates a new SPVM::ExchangeAPI::Class object with the $class_name and returns it.
my $class = $api->class('Int'); my $spvm_object = $class->new(1);
my $ret = $api->dump($object);
Generates the string by dumping a SPVM object using the dump operator and returns it.
$object : SPVM::BlessedObject|undef
The $object must be a SPVM::BlessedObject object.
The arguments in the "call_method" are converted to the values of SPVM in the following rules.
If the SPVM argument type is byte, the following coversion is performed.
A Perl scalar is converted to a value of the SPVM byte type using the SvIV perlapi and a type cast to int8_t in C Language.
int8_t
C Language
(int8_t)SvIV(perl_scalar)
If the SPVM argument type is short, the following coversion is performed.
A Perl scalar is converted to a value of the SPVM short type using the SvIV perlapi and a type cast to int16_t in C Language.
int16_t
(int16_t)SvIV(perl_scalar)
If the SPVM argument type is int, the following coversion is performed.
A Perl scalar is converted to a value of the SPVM int type using the SvIV perlapi and a type cast to int32_t in C Language.
int32_t
(int32_t)SvIV(perl_scalar)
If the SPVM argument type is long, the following coversion is performed.
A Perl scalar is converted to a value of the SPVM long type using the SvIV perlapi and a type cast to int64_t in C Language.
int64_t
(int64_t)SvIV(perl_scalar)
If the SPVM argument type is float, the following coversion is performed.
A Perl scalar is converted to a value of the SPVM float type using the SvNV perlapi and a type cast to float in C Language.
(float)SvNV(perl_scalar)
If the SPVM argument type is double, the following coversion is performed.
A Perl scalar is converted to a value of the SPVM double type using the SvNV perlapi and a type cast to double in C Language.
(double)SvNV(perl_scalar)
If the SPVM argument type is string, the Perl scalar is converted by the following rule.
string
If the Perl scalar is undef, it is converted to SPVM undef.
Else if the Perl scalar is a SPVM::BlessedObject::String object, it is converted to the owned SPVM string.
Else if the Perl scalar is a reference, an exception will be thrown.
Othwerwise the Perl scalar is converted to a SPVM string using perlapi SvPV.
SPVM::MyClass->foo($api->new_string("あいう")); SPVM::MyClass->foo("あいう"); SPVM::MyClass->foo(undef);
No conversion occurs.
Perl can have SPVM class object itself as a object which inherits SPVM::BlessedObject::Class. This object is created by a contructor such as SPVM::Int->new, SPVM::MyClassClass->new.
If the value is Perl undef, it is converted to SPVM undef.
If class name is different, an exception will occur.
# Converts a Perl scalar to class type my $value = SPVM::Int->new(5); SPVM::MyClass->foo($value);
Perl can have SPVM object itself as a SPVM::BlessedObject object. This object is created by a contructor or functions of exchange API such as SPVM::Int->new, SPVM::MyClassClass->new, $api->new_int_array.
# Converts a Perl scalar to any object type my $value = SPVM::Int->new(5); SPVM::MyClass->foo($value);
If the SPVM argument type is byte[], a Perl value is converted by the following rule.
byte[]
Perl undef is coverted to SPVM undef.
A Perl array reference is converted to a SPVM::BlessedObject::Array object of the byte[] type.
Each element is converted to a value of the byte type by the conversion of "byte Argument".
# Converts a Perl array reference to byte[] type SPVM::MyClass->foo([1, 2, 3]);
If the SPVM argument type is short[], a Perl value is converted by the following rule.
short[]
A Perl array reference is converted to a SPVM::BlessedObject::Array object of the short[] type.
Each element is converted to a value of the short type by the conversion of "short Argument".
# Converts a Perl array reference to short[] type SPVM::MyClass->foo([1, 2, 3]);
If the SPVM argument type is int[], a Perl value is converted by the following rule.
int[]
A Perl array reference is converted to a SPVM::BlessedObject::Array object of the int[] type.
Each element is converted to a value of the int type by the conversion of "int Argument". Perl undef is coverted to SPVM undef.
# Converts a Perl array reference to int[] type SPVM::MyClass->foo([1, 2, 3]);
A Perl array reference is converted to a SPVM::BlessedObject::Array object of the long[] type.
long[]
Each element is converted to a value of the long type by the conversion of "long Argument". Perl undef is coverted to SPVM undef.
# Converts a Perl array reference to long[] type SPVM::MyClass->foo([1, 2, 3]);
If the SPVM argument type is float[], a Perl value is converted by the following rule.
float[]
A Perl array reference is converted to a SPVM::BlessedObject::Array object of the float[] type.
Each element is converted to a value of the float type by the conversion of "float Argument". Perl undef is coverted to SPVM undef.
# Converts a Perl array reference to float[] type SPVM::MyClass->foo([1.2, 2.3, 3.4]);
If the SPVM argument type is double[], a Perl value is converted by the following rule.
double[]
A Perl array reference is converted to a SPVM::BlessedObject::Array object of the double[] type.
Each element is converted to a value of the double type by the conversion of "double Argument". Perl undef is coverted to SPVM undef.
# Converts a Perl array reference to double[] type SPVM::MyClass->foo([1.2, 2.3, 3.4]);
If the SPVM argument type is string[], a Perl value is converted by the following rule.
string[]
A Perl array reference is converted to a SPVM::BlessedObject::Array object of the string[] type.
Each element is converted to string value by the conversion of "string Argument". Perl undef is coverted to SPVM undef.
# Converts a Perl array reference to string[] type SPVM::MyClass->foo(["あい", "うえ", "お"]);
If the SPVM argument type is a multi-numeric Array, a Perl value is converted by the following rule.
A Perl array reference is converted to a SPVM::BlessedObject::Array object of of a multi-numeric type.
Each element which is a hash reference is converted to multi-numeric type by the conversion of "Multi-Numeric Argument". Perl undef is coverted to SPVM undef.
# Converts a Perl array reference of a hash reference to Complex_2d[] type SPVM::MyClass->foo([{re => 1.2, im => 2.3}, {re => 3.4, im => 4.5}]);
If the SPVM argument type is a other array type of the above, a Perl value is converted by the following rule.
A Perl array reference is converted to a SPVM::BlessedObject::Array of the corresponding array type.
If the SPVM argument type is a multi-numeric type, a Perl value is converted by the following rule.
If the argument type is a multi-numeric byte type, the argument is hash reference is converted to a value of SPVM multi-numeric byte type. If the argument is different from a hash reference, an exception will occur. Each field is converted to a value of the byte type by the conversion of "byte Argument".
If a field is not specified, an exception will occur.
# Converts a Perl hash reference to MyClassPoint_2b type SPVM::MyClass->foo({x => 1, y => 2});
If the argument type is a multi-numeric short type, the argument is hash reference is converted to a value of SPVM multi-numeric short type. If the argument is different from a hash reference, an exception will occur. Each field is converted to a value of the short type by the conversion of "short Argument".
# Converts a Perl hash reference to MyClassPoint_2s type SPVM::MyClass->foo({x => 1, y => 2});
If the argument type is a multi-numeric int type, the argument is hash reference is converted to a value of SPVM multi-numeric int type. If the argument is different from a hash reference, an exception will occur. Each field is converted to a value of the int type by the conversion of "int Argument".
# Converts a Perl hash reference to MyClassPoint_2i type SPVM::MyClass->foo({x => 1, y => 2});
If the argument type is a multi-numeric long type, the argument is hash reference is converted to a value of SPVM multi-numeric long type. If the argument is different from a hash reference, an exception will occur. Each field is converted to a value of the long type by the conversion of "long Argument".
# Converts a Perl hash reference to MyClassPoint_2l type SPVM::MyClass->foo({x => 1, y => 2});
If the argument type is a multi-numeric float type, the argument is hash reference is converted to a value of SPVM multi-numeric float type. If the argument is different from a hash reference, an exception will occur. Each field is converted to a value of the float type by the conversion of "float Argument".
# Converts a Perl hash reference to MyClassPoint_2f type SPVM::MyClass->foo({x => 1.2, y => 2.3});
If the argument type is a multi-numeric double type, the argument is hash reference is converted to a value of SPVM multi-numeric double type. If the argument is different from a hash reference, an exception will occur. Each field is converted to a value of the double type by the conversion of "double Argument".
# Converts a Perl hash reference to MyClassPoint_2d type SPVM::MyClass->foo({x => 1.2, y => 2.3});
If the SPVM argument type is the byte reference type, a Perl value is converted by the following rule.
A Perl reference is converted to a SPVM value of the byte reference type.
The value must be a scalar reference of a non-reference scalar. Otherwise an exception will occur.
The value is converted to a SPVM value of the byte type by the conversion of "byte Argument".
The value set by SPVM is converted to a Perl scalar by the conversion of "byte Return Value"
# Converts a Perl scalar reference to byte* type my $value = 23; SPVM::MyClass->foo(\$value);
If the SPVM argument type is the short reference type, a Perl value is converted by the following rule.
A Perl reference is converted to a SPVM value of the short reference type.
The value is converted to a SPVM value of the short type by the conversion of "short Argument".
The value set by SPVM is converted to a Perl scalar by the conversion of "short Return Value"
# Converts a Perl scalar reference to short* type my $value = 23; SPVM::MyClass->foo(\$value);
If the SPVM argument type is the int reference type, a Perl value is converted by the following rule.
A Perl reference is converted to a SPVM value of the int reference type.
The value is converted to a SPVM value of the int type by the conversion of "int Argument".
The value set by SPVM is converted to a Perl scalar by the conversion of "int Return Value"
# Converts a Perl scalar reference to int* type my $value = 23; SPVM::MyClass->foo(\$value);
If the SPVM argument type is the long reference type, a Perl value is converted by the following rule.
A Perl reference is converted to a SPVM value of the long reference type.
The value is converted to a SPVM value of the long type by the conversion of "long Argument".
The value set by SPVM is converted to a Perl scalar by the conversion of "long Return Value"
# Converts a Perl scalar reference to long* type my $value = 23; SPVM::MyClass->foo(\$value);
If the SPVM argument type is the float reference type, a Perl value is converted by the following rule.
A Perl reference is converted to a SPVM value of the float reference type.
The value is converted to a SPVM value of the float type by the conversion of "float Argument".
The value set by SPVM is converted to a Perl scalar by the conversion of "float Return Value"
# Converts a Perl scalar reference to float* type my $value = 23.5; SPVM::MyClass->foo(\$value);
If the SPVM argument type is the double reference type, a Perl value is converted by the following rule.
A Perl reference is converted to a SPVM value of the double reference type.
The value is converted to a SPVM value of the double type by the conversion of "double Argument".
The value set by SPVM is converted to a Perl scalar by the conversion of "double Return Value"
# Converts a Perl scalar reference to double* type my $value = 23.5; SPVM::MyClass->foo(\$value);
If the SPVM argument type is multi-numeric byte reference type, a Perl value is converted by the following rule.
A Perl reference is converted to a SPVM multi-numeric byte reference type.
The reference must be a scalar reference of a hash reference. Otherwise an exception will occur.
Each value of the hash is converted to a value of the byte type by the conversion of "byte Argument".
Each hash value set by SPVM is converted to a Perl number by the conversion of "byte Return Value".
# Converts a Perl scalar reference of a hash reference to MyClassPoint_2b* type my $value = {x => 1, y => 2}; SPVM::MyClass->foo(\$value);
If the SPVM argument type is multi-numeric short reference type, a Perl value is converted by the following rule.
A Perl reference is converted to a SPVM multi-numeric short reference type.
Each value of the hash is converted to a value of the short type by the conversion of "short Argument".
Each hash value set by SPVM is converted to a Perl number by the conversion of "short Return Value".
# Converts a Perl scalar reference of a hash reference to MyClassPoint_2s* type my $value = {x => 1, y => 2}; SPVM::MyClass->foo(\$value);
If the SPVM argument type is multi-numeric int reference type, a Perl value is converted by the following rule.
A Perl reference is converted to a SPVM multi-numeric int reference type.
Each value of the hash is converted to a value of the int type by the conversion of "int Argument".
Each hash value set by SPVM is converted to a Perl number by the conversion of "int Return Value".
# Converts a Perl scalar reference of a hash reference to SPVM MyClassPoint_2i* type my $value = {x => 1, y => 2}; SPVM::MyClass->foo(\$value);
If the SPVM argument type is multi-numeric long reference type, a Perl value is converted by the following rule.
A Perl reference is converted to a SPVM multi-numeric long reference type.
Each value of the hash is converted to a value of the long type by the conversion of "long Argument".
Each hash value set by SPVM is converted to a Perl number by the conversion of "long Return Value".
# Converts a Perl scalar reference of a hash reference to SPVM MyClassPoint_2l* type my $value = {x => 1, y => 2}; SPVM::MyClass->foo(\$value);
If the SPVM argument type is multi-numeric float reference type, a Perl value is converted by the following rule.
A Perl reference is converted to a SPVM multi-numeric float reference type.
Each value of the hash is converted to a value of the float type by the conversion of "float Argument".
Each hash value set by SPVM is converted to a Perl number by the conversion of "float Return Value".
# Converts a Perl scalar reference of a hash reference to SPVM MyClassPoint_2f* type my $value = {x => 1,2, y => 2.3}; SPVM::MyClass->foo(\$value);
If the SPVM argument type is multi-numeric double reference type, a Perl value is converted by the following rule.
A Perl reference is converted to a SPVM multi-numeric double reference type.
Each value of the hash is converted to a value of the double type by the conversion of "double Argument".
Each hash value set by SPVM is converted to a Perl number by the conversion of "double Return Value".
# Converts a Perl scalar reference of a hash reference to SPVM MyClassPoint_2d* type my $value = {x => 1.2, y => 2.3}; SPVM::MyClass->foo(\$value);
A SPVM return value is converted to a Perl value by the following rule.
If the SPVM return type is the void type, the following conversion is performed.
SPVM void return value is converted to Perl undef.
If the SPVM return type is the long type, the following conversion is performed.
The SPVM byte value is converted to a Perl scalar using the newSViv perlapi.
The SPVM short value is converted to a Perl scalar using the newSViv perlapi.
If the SPVM return type is the int type, the following conversion is performed.
The SPVM float value is converted to a Perl scalar using the newSViv perlapi.
If the SPVM return type is the float type, the following conversion is performed.
The SPVM float value is converted to a Perl scalar using the newSVnv perlapi.
If the SPVM return type is the double type, the following conversion is performed.
The SPVM double value is converted to a Perl scalar using the newSVnv perlapi.
If the SPVM return type is the string type, the following conversion is performed.
If SPVM return value is undef, it is converted to Perl undef.
Otherwise a SPVM string is converted to a Perl SPVM::BlessedObject::String object.
If the SPVM return type is an multi-numeric type, the following conversion is performed.
The SPVM multi-numeric value is converted to Perl hash reference that has the field names of the multi-numeric type as the keys.
Each numeric field is converted by the rules of "byte Return Value", "short Return Value", "int Return Value", "long Return Value", "float Return Value", "double Return Value".
If the SPVM return type is an array type, the following conversion is performed.
Otherwise a SPVM array is converted to a Perl SPVM::BlessedObject::Array object.
If the SPVM return type is a class type, the following conversion is performed.
Otherwise a SPVM object is converted to a Perl SPVM::BlessedObject::Class object.
To install SPVM, copy and paste the appropriate command in to your terminal.
cpanm
cpanm SPVM
CPAN shell
perl -MCPAN -e shell install SPVM
For more information on module installation, please visit the detailed CPAN module installation guide.