Bash Shell 的 OOP 要如何寫?

Linux 的 Bash shell 可以寫簡單的 Shell script, 但是想要用 OOP 來寫的話, 要如何寫?

用 Bash script 寫 OOP 的範例程式可見: http://lab.madscience.nl/oo.sh.txt (備份)


以下程式為上述 Script 整個轉貼於此.

  1. #!/bin/bash
  2. # ---------------------------------------------------------------------------
  3. # OO support functions
  4. # Kludged by Pim van Riezen <pi@madscience.nl>
  5. # ---------------------------------------------------------------------------
  6. DEFCLASS=""
  7. CLASS=""
  8. THIS=0
  9. class() {
  10. DEFCLASS="$1"
  11. eval CLASS_${DEFCLASS}_VARS=""
  12. eval CLASS_${DEFCLASS}_FUNCTIONS=""
  13. }
  14. static() {
  15. return 0
  16. }
  17. func() {
  18. local varname="CLASS_${DEFCLASS}_FUNCTIONS"
  19. eval "$varname=\"\${$varname}$1 \""
  20. }
  21. var() {
  22. local varname="CLASS_${DEFCLASS}_VARS"
  23. eval $varname="\"\${$varname}$1 \""
  24. }
  25. loadvar() {
  26. eval "varlist=\"\$CLASS_${CLASS}_VARS\""
  27. for var in $varlist; do
  28. eval "$var=\"\$INSTANCE_${THIS}_$var\""
  29. done
  30. }
  31. loadfunc() {
  32. eval "funclist=\"\$CLASS_${CLASS}_FUNCTIONS\""
  33. for func in $funclist; do
  34. eval "${func}() { ${CLASS}::${func} \"\$*\"; return \$?; }"
  35. done
  36. }
  37. savevar() {
  38. eval "varlist=\"\$CLASS_${CLASS}_VARS\""
  39. for var in $varlist; do
  40. eval "INSTANCE_${THIS}_$var=\"\$$var\""
  41. done
  42. }
  43. typeof() {
  44. eval echo \$TYPEOF_$1
  45. }
  46. new() {
  47. local
  48. local cvar="$2"
  49. shift
  50. shift
  51. local id=$(uuidgen | tr A-F a-f | sed -e "s/-//g")
  52. eval TYPEOF_${id}=$class
  53. eval $cvar=$id
  54. local funclist
  55. eval "funclist=\"\$CLASS_${class}_FUNCTIONS\""
  56. for func in $funclist; do
  57. eval "${cvar}.${func}() { local t=\$THIS; THIS=$id; local c=\$CLASS; CLASS=$class; loadvar; loadfunc; ${class}::${func} \"\$*\"; rt=\$?; savevar; CLASS=\$c; THIS=\$t; return $rt; }"
  58. done
  59. eval "${cvar}.${class} \"\$*\" || true"
  60. }
  61. # ---------------------------------------------------------------------------
  62. # Example code
  63. # ---------------------------------------------------------------------------
  64. # class definition
  65. class Storpel
  66. func Storpel
  67. func setName
  68. func setQuality
  69. func print
  70. var name
  71. var quality
  72. # class implementation
  73. Storpel::Storpel() {
  74. setName "$1"
  75. setQuality "$2"
  76. if [ -z "$name" ]; then setName "Generic"; fi
  77. if [ -z "$quality" ]; then setQuality "Normal"; fi
  78. }
  79. Storpel::setName() { name="$1"; }
  80. Storpel::setQuality() { quality="$1"; }
  81. Storpel::print() { echo "$name ($quality)"; }
  82. # usage
  83. new Storpel one "Storpilator 1000" Medium
  84. new Storpel two
  85. new Storpel three
  86. two.setName "Storpilator 2000"
  87. two.setQuality "Strong"
  88. one.print
  89. two.print
  90. three.print
  91. echo ""
  92. echo "one: $one ($(typeof $one))"
  93. echo "two: $two ($(typeof $two))"
  94. echo "three: $three ($(typeof $two))"

作者: Tsung

對新奇的事物都很有興趣, 喜歡簡單的東西, 過簡單的生活.

發表迴響

這個網站採用 Akismet 服務減少垃圾留言。進一步了解 Akismet 如何處理網站訪客的留言資料