Skip to content

Commit

Permalink
init: ported HestiaOS library
Browse files Browse the repository at this point in the history
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
4 people committed Oct 3, 2024
1 parent 57ba4e8 commit 73252c2
Show file tree
Hide file tree
Showing 19 changed files with 1,153 additions and 0 deletions.
125 changes: 125 additions & 0 deletions init/services/HestiaOS/Exec.ps1
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}
}
72 changes: 72 additions & 0 deletions init/services/HestiaOS/Exec.sh
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
#>
38 changes: 38 additions & 0 deletions init/services/HestiaOS/Get_Arch.ps1
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)"
}
39 changes: 39 additions & 0 deletions init/services/HestiaOS/Get_Arch.sh
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)")"
}
56 changes: 56 additions & 0 deletions init/services/HestiaOS/Is_Command_Available.ps1
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}
}
58 changes: 58 additions & 0 deletions init/services/HestiaOS/Is_Command_Available.sh
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
}
Loading

0 comments on commit 73252c2

Please sign in to comment.