v/vlib/darwin/darwin.v

44 lines
1.2 KiB
V
Raw Normal View History

module darwin
#include <Cocoa/Cocoa.h>
2019-09-30 22:29:14 +02:00
#include <CoreFoundation/CoreFoundation.h>
#flag -framework Cocoa
struct C.NSString { }
// macOS and iOS helpers
pub fn nsstring(s string) *C.NSString {
// println('ns $s len=$s.len')
# return [ [ NSString alloc ] initWithBytesNoCopy:s.str length:s.len
# encoding:NSUTF8StringEncoding freeWhenDone: false];
return 0
//ns := C.alloc_NSString()
//return ns.initWithBytesNoCopy(s.str, length: s.len,
//encoding: NSUTF8StringEncoding, freeWhenDone: false)
}
2019-09-30 22:29:14 +02:00
// returns absolute path to folder where your resources should / will reside
// for .app packages: .../my.app/Contents/Resources
// for cli: .../parent_folder/Resources
pub fn resource_path() string {
main_bundle := C.CFBundleGetMainBundle()
resource_dir_url := C.CFBundleCopyResourcesDirectoryURL(main_bundle)
2019-10-23 22:40:07 +02:00
if (isnil(resource_dir_url)) {
panic('CFBundleCopyResourcesDirectoryURL failed')
}
2019-09-30 22:29:14 +02:00
buffer_size := 4096
mut buffer := malloc(buffer_size)
buffer[0] = 0
conv_result := C.CFURLGetFileSystemRepresentation(resource_dir_url, true, buffer, buffer_size)
2019-10-23 22:40:07 +02:00
if(conv_result == 0) {
panic('CFURLGetFileSystemRepresentation failed')
}
2019-09-30 22:29:14 +02:00
result := string(buffer)
C.CFRelease(resource_dir_url)
return result
}