generated from ChewKeanHo/AutomataCI
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since the latest implementations are using Hestia library, it's better to port them. Let's deal with HestiaOS library. This patch ports HestiaOS library in init/ directory. Co-authored-by: Shuralyov, Jean <[email protected]> Co-authored-by: Galyna, Cory <[email protected]> Co-authored-by: (Holloway) Chew, Kean Ho <[email protected]> Signed-off-by: (Holloway) Chew, Kean Ho <[email protected]>
- Loading branch information
1 parent
57ba4e8
commit 73252c2
Showing
19 changed files
with
1,153 additions
and
0 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,125 @@ | ||
# Copyright (c) 2024, (Holloway) Chew, Kean Ho <[email protected]> | ||
# | ||
# | ||
# BSD 3-Clause License | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# | ||
# 1. Redistributions of source code must retain the above copyright notice, this | ||
# list of conditions and the following disclaimer. | ||
# | ||
# 2. Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# | ||
# 3. Neither the name of the copyright holder nor the names of its | ||
# contributors may be used to endorse or promote products derived from | ||
# this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
. "${env:LIBS_HESTIA}\hestiaKERNEL\Error_Codes.ps1" | ||
|
||
|
||
|
||
|
||
function HestiaOS-Exec { | ||
param ( | ||
[string]$___command, | ||
[string]$___arguments, | ||
[string]$___log_stdout, | ||
[string]$___log_stderr | ||
) | ||
|
||
|
||
# validate input | ||
if (Test-Path -Path $___command -ErrorAction SilentlyContinue) { | ||
$___program = $___command | ||
} else { | ||
$___program = Get-Command $___command -ErrorAction SilentlyContinue | ||
if (-not ($___program)) { | ||
return ${env:hestiaKERNEL_ERROR_DATA_EMPTY} | ||
} | ||
} | ||
|
||
|
||
# execute command | ||
if ($___arguments -eq "") { | ||
if ( | ||
($___log_stdout -ne "") -and ($___log_stderr -ne "") | ||
) { | ||
$___process = Start-Process -Wait ` | ||
-FilePath $___program ` | ||
-NoNewWindow ` | ||
-PassThru ` | ||
-RedirectStandardOutput $___log_stdout ` | ||
-RedirectStandardError $___log_stderr | ||
} elseif ($___log_stdout -ne "") { | ||
$___process = Start-Process -Wait ` | ||
-FilePath $___program ` | ||
-NoNewWindow ` | ||
-PassThru ` | ||
-RedirectStandardOutput $___log_stdout | ||
} elseif ($___log_stderr -ne "") { | ||
$___process = Start-Process -Wait ` | ||
-FilePath $___program ` | ||
-NoNewWindow ` | ||
-PassThru ` | ||
-RedirectStandardError $___log_stderr | ||
} else { | ||
$___process = Start-Process -Wait ` | ||
-FilePath $___program ` | ||
-NoNewWindow ` | ||
-PassThru | ||
} | ||
} else { | ||
if ( | ||
($___log_stdout -ne "") -and ($___log_stderr -ne "") | ||
) { | ||
$___process = Start-Process -Wait ` | ||
-FilePath $___program ` | ||
-NoNewWindow ` | ||
-PassThru ` | ||
-ArgumentList $___arguments ` | ||
-RedirectStandardOutput $___log_stdout ` | ||
-RedirectStandardError $___log_stderr | ||
} elseif ($___log_stdout -ne "") { | ||
$___process = Start-Process -Wait ` | ||
-FilePath $___program ` | ||
-NoNewWindow ` | ||
-PassThru ` | ||
-ArgumentList $___arguments ` | ||
-RedirectStandardOutput $___log_stdout | ||
} elseif ($___log_stderr -ne "") { | ||
$___process = Start-Process -Wait ` | ||
-FilePath $___program ` | ||
-NoNewWindow ` | ||
-PassThru ` | ||
-ArgumentList $___arguments ` | ||
-RedirectStandardError $___log_stderr | ||
} else { | ||
$___process = Start-Process -Wait ` | ||
-FilePath $___program ` | ||
-NoNewWindow ` | ||
-PassThru ` | ||
-ArgumentList $___arguments | ||
} | ||
} | ||
|
||
if ($___process.ExitCode -ne 0) { | ||
return ${env:hestiaKERNEL_ERROR_BAD_EXEC} | ||
} | ||
|
||
|
||
# report status | ||
return ${env:hestiaKERNEL_ERROR_OK} | ||
} |
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,72 @@ | ||
#!/bin/sh | ||
# Copyright (c) 2024, (Holloway) Chew, Kean Ho <[email protected]> | ||
# | ||
# | ||
# BSD 3-Clause License | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# | ||
# 1. Redistributions of source code must retain the above copyright notice, this | ||
# list of conditions and the following disclaimer. | ||
# | ||
# 2. Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# | ||
# 3. Neither the name of the copyright holder nor the names of its | ||
# contributors may be used to endorse or promote products derived from | ||
# this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
. "${LIBS_HESTIA}/hestiaKERNEL/Error_Codes.sh" | ||
|
||
|
||
|
||
|
||
HestiaOS_Exec() { | ||
#___command="$1" | ||
#___argument="$2" | ||
#___log_stdout="$3" | ||
#___log_stderr="$4" | ||
|
||
|
||
# validate input | ||
if [ "$1" = "" ]; then | ||
return $HestiaKERNEL_ERROR_DATA_EMPTY | ||
fi | ||
|
||
|
||
# execute command | ||
if [ ! "$3" = "" ] || [ ! "$4" = "" ]; then | ||
"$1" $2 1>"$3" 2>"$4" | ||
elif [ ! "$3" = "" ]; then | ||
"$1" $2 1>"$3" | ||
elif [ ! "$4" = "" ]; then | ||
"$1" $2 2>"$4" | ||
else | ||
"$1" $2 | ||
fi | ||
|
||
if [ $? -ne 0 ]; then | ||
return $HestiaKERNEL_ERROR_BAD_EXEC | ||
fi | ||
|
||
|
||
# report status | ||
return $HestiaKERNEL_ERROR_OK | ||
} | ||
################################################################################ | ||
# Unix Main Codes # | ||
################################################################################ | ||
return 0 | ||
#> |
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,38 @@ | ||
# Copyright (c) 2024, (Holloway) Chew, Kean Ho <[email protected]> | ||
# | ||
# | ||
# BSD 3-Clause License | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# | ||
# 1. Redistributions of source code must retain the above copyright notice, this | ||
# list of conditions and the following disclaimer. | ||
# | ||
# 2. Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# | ||
# 3. Neither the name of the copyright holder nor the names of its | ||
# contributors may be used to endorse or promote products derived from | ||
# this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
. "${env:LIBS_HESTIA}\HestiaOS\To_Arch.ps1" | ||
|
||
|
||
|
||
|
||
function HestiaOS-Get-Arch { | ||
# execute | ||
return HestiaOS-To-Arch "$((Get-ComputerInfo).CsProcessors.Architecture)" | ||
} |
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,39 @@ | ||
#!/bin/sh | ||
# Copyright (c) 2024, (Holloway) Chew, Kean Ho <[email protected]> | ||
# | ||
# | ||
# BSD 3-Clause License | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# | ||
# 1. Redistributions of source code must retain the above copyright notice, this | ||
# list of conditions and the following disclaimer. | ||
# | ||
# 2. Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# | ||
# 3. Neither the name of the copyright holder nor the names of its | ||
# contributors may be used to endorse or promote products derived from | ||
# this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
. "${LIBS_HESTIA}/HestiaOS/To_Arch.sh" | ||
|
||
|
||
|
||
|
||
HestiaOS_Get_Arch() { | ||
# execute | ||
printf -- "%b" "$(HestiaOS_To_Arch "$(uname -m)")" | ||
} |
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,56 @@ | ||
# Copyright (c) 2024, (Holloway) Chew, Kean Ho <[email protected]> | ||
# | ||
# | ||
# BSD 3-Clause License | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# | ||
# 1. Redistributions of source code must retain the above copyright notice, this | ||
# list of conditions and the following disclaimer. | ||
# | ||
# 2. Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# | ||
# 3. Neither the name of the copyright holder nor the names of its | ||
# contributors may be used to endorse or promote products derived from | ||
# this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
. "${env:LIBS_HESTIA}\HestiaKERNEL\Error_Codes.ps1" | ||
|
||
|
||
|
||
|
||
function HestiaOS-Is-Command-Available { | ||
param ( | ||
[string]$___command | ||
) | ||
|
||
|
||
# validate input | ||
if ($___command -eq "") { | ||
return ${env:HestiaKERNEL_ERROR_DATA_MISSING} | ||
} | ||
|
||
|
||
# execute | ||
$___process = Get-Command $___command -ErrorAction SilentlyContinue | ||
if ($___process) { | ||
return ${env:HestiaKERNEL_ERROR_OK} | ||
} | ||
|
||
|
||
# report status | ||
return ${env:HestiaKERNEL_ERROR_DATA_MISSING} | ||
} |
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,58 @@ | ||
#!/bin/sh | ||
# Copyright (c) 2024, (Holloway) Chew, Kean Ho <[email protected]> | ||
# | ||
# | ||
# BSD 3-Clause License | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# | ||
# 1. Redistributions of source code must retain the above copyright notice, this | ||
# list of conditions and the following disclaimer. | ||
# | ||
# 2. Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# | ||
# 3. Neither the name of the copyright holder nor the names of its | ||
# contributors may be used to endorse or promote products derived from | ||
# this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
. "${LIBS_HESTIA}/HestiaKERNEL/Error_Codes.sh" | ||
|
||
|
||
|
||
|
||
HestiaOS_Is_Command_Available() { | ||
#___command="$1" | ||
|
||
|
||
# validate input | ||
if [ "$1" = "" ]; then | ||
printf -- "%d" $HestiaKERNEL_ERROR_DATA_MISSING | ||
return $HestiaKERNEL_ERROR_DATA_MISSING | ||
fi | ||
|
||
|
||
# execute | ||
___ret="$(type "$1")" | ||
if [ "${___ret##*not found}" = "$___ret" ]; then | ||
printf -- "%d" $HestiaKERNEL_ERROR_OK | ||
return $HestiaKERNEL_ERROR_OK | ||
fi | ||
|
||
|
||
# report status | ||
printf -- "%d" $HestiaKERNEL_ERROR_DATA_MISSING | ||
return $HestiaKERNEL_ERROR_DATA_MISSING | ||
} |
Oops, something went wrong.