-
-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ecce5d5
commit 06ebd67
Showing
7 changed files
with
163 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
package frankenphp | ||
|
||
// #include "frankenphp.h" | ||
import "C" | ||
import ( | ||
"os" | ||
"strings" | ||
"unsafe" | ||
) | ||
|
||
//export go_putenv | ||
func go_putenv(str *C.char, length C.int) C.bool { | ||
// Create a byte slice from C string with a specified length | ||
s := C.GoBytes(unsafe.Pointer(str), length) | ||
|
||
// Convert byte slice to string | ||
envString := string(s) | ||
|
||
// Check if '=' is present in the string | ||
if key, val, found := strings.Cut(envString, "="); found { | ||
if os.Setenv(key, val) != nil { | ||
return false // Failure | ||
} | ||
} else { | ||
// No '=', unset the environment variable | ||
if os.Unsetenv(envString) != nil { | ||
return false // Failure | ||
} | ||
} | ||
|
||
return true // Success | ||
} | ||
|
||
//export go_getfullenv | ||
func go_getfullenv(threadIndex C.uintptr_t) (*C.go_string, C.size_t) { | ||
thread := phpThreads[threadIndex] | ||
|
||
env := os.Environ() | ||
goStrings := make([]C.go_string, len(env)*2) | ||
|
||
for i, envVar := range env { | ||
key, val, _ := strings.Cut(envVar, "=") | ||
goStrings[i*2] = C.go_string{C.size_t(len(key)), thread.pinString(key)} | ||
goStrings[i*2+1] = C.go_string{C.size_t(len(val)), thread.pinString(val)} | ||
} | ||
|
||
value := unsafe.SliceData(goStrings) | ||
thread.Pin(value) | ||
|
||
return value, C.size_t(len(env)) | ||
} | ||
|
||
//export go_getenv | ||
func go_getenv(threadIndex C.uintptr_t, name *C.go_string) (C.bool, *C.go_string) { | ||
thread := phpThreads[threadIndex] | ||
|
||
// Create a byte slice from C string with a specified length | ||
envName := C.GoStringN(name.data, C.int(name.len)) | ||
|
||
// Get the environment variable value | ||
envValue, exists := os.LookupEnv(envName) | ||
if !exists { | ||
// Environment variable does not exist | ||
return false, nil // Return 0 to indicate failure | ||
} | ||
|
||
// Convert Go string to C string | ||
value := &C.go_string{C.size_t(len(envValue)), thread.pinString(envValue)} | ||
thread.Pin(value) | ||
|
||
return true, value // Return 1 to indicate success | ||
} | ||
|
||
//export go_sapi_getenv | ||
func go_sapi_getenv(threadIndex C.uintptr_t, name *C.go_string) *C.char { | ||
envName := C.GoStringN(name.data, C.int(name.len)) | ||
|
||
envValue, exists := os.LookupEnv(envName) | ||
if !exists { | ||
return nil | ||
} | ||
|
||
return phpThreads[threadIndex].pinCString(envValue) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
package frankenphp | ||
|
||
// #include <stdint.h> | ||
// #include "frankenphp.h" | ||
import "C" | ||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.