1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

dl: move 'example' to 'examples/dynamic_library_loading' (#9187)

This commit is contained in:
StunxFS
2021-03-08 12:21:43 -04:00
committed by GitHub
parent 8f0ede34ad
commit 9a7d9e047b
3 changed files with 11 additions and 11 deletions

View File

@@ -0,0 +1,19 @@
module library
// add_1 is exported with the C name `add_1`.
// It can be called by external programs, when the module is compiled
// as a shared library.
// It is exported, because the function is declared as public with `pub`.
// The exported C name is `add_1`, because of the export: tag.
// (Normally, the exported name is a V mangled version based on the module
// name followed by __, followed by the fn name, i.e. it would have been
// `library__add_1`, if not for the export: tag).
[export: 'add_1']
pub fn add_1(x int, y int) int {
return my_private_function(x + y)
}
// this function is not exported and will not be visible to external programs.
fn my_private_function(x int) int {
return 1 + x
}

View File

@@ -0,0 +1,17 @@
module main
import os
import dl
type FNAdder = fn (int, int) int
fn main() {
library_file_path := os.join_path(os.getwd(), dl.get_libname('library'))
handle := dl.open(library_file_path, dl.rtld_lazy)
eprintln('handle: ${ptr_str(handle)}')
mut f := &FNAdder(0)
f = dl.sym(handle, 'add_1')
eprintln('f: ${ptr_str(f)}')
res := f(1, 2)
eprintln('res: $res')
}

View File

@@ -0,0 +1,52 @@
module main
import os
import dl
const (
vexe = os.real_path(os.getenv('VEXE'))
cfolder = os.dir(@FILE)
so_ext = dl.dl_ext
library_file_name = os.join_path(cfolder, dl.get_libname('library'))
)
fn test_vexe() {
dump(vexe)
assert vexe != ''
dump(os.executable())
dump(@FILE)
dump(cfolder)
dump(so_ext)
dump(library_file_name)
}
fn test_can_compile_library() {
os.chdir(cfolder)
os.rm(library_file_name) or { }
res := v_compile('-d no_backtrace -o library -shared modules/library/library.v')
dump(res)
assert os.is_file(library_file_name)
}
fn test_can_compile_main_program() {
os.chdir(cfolder)
assert os.is_file(library_file_name)
result := v_compile('run use.v')
dump(result)
assert result.output.contains('res: 4')
os.rm(library_file_name) or { }
}
fn v_compile(vopts string) os.Result {
cmd := '"$vexe" -showcc $vopts'
dump(cmd)
res := os.exec(cmd) or { panic(err) }
dump(res)
// assert res.exit_code == 0
$if !windows {
os.system('ls -al $cfolder')
} $else {
os.system('dir $cfolder /a')
}
return res
}