首頁 >後端開發 >Golang >如何使用帶有 switch 和 ForEach 的 Go 模板生成 Bash 腳本,以迭代依賴項並根據其類型輸出相應的回顯訊息?

如何使用帶有 switch 和 ForEach 的 Go 模板生成 Bash 腳本,以迭代依賴項並根據其類型輸出相應的回顯訊息?

Susan Sarandon
Susan Sarandon原創
2024-10-29 08:22:02407瀏覽

How can I generate a Bash script using Go templates with switch and ForEach to iterate through dependencies and output corresponding echo messages based on their type?

帶有 Switch 和 ForEach 的 Golang 範本

此程式碼示範重點介紹如何使用 Go 中的範本來產生 bash 腳本。該腳本需要 ForEach 透過依賴關係進行迭代,識別它們的類型,並輸出相應的回顯訊息。實作了 switch 語句來處理每個依賴項的類型。

package main

import (
    "log"
    "text/template"
    "gopkg.in/yaml.v2"
    "os"
)

type File struct {
    TypeVersion string `yaml:"_type-version"`
    Dependency  []Dependency
}

type Dependency struct {
    Name    string
    Type    string
    CWD     string
    Install []Install
}

type Install map[string]string

var data = `
_type-version: "1.0.0"
dependency:
  - name: ui
    type: runner
    cwd: /ui
    install:
       - name: api

  - name: ui2
    type: runner2
    cwd: /ui2
    install:
       - name: api2

`

func main() {
    f := File{}

    err := yaml.Unmarshal([]byte(data), &f)
    if err != nil {
        log.Fatalf("error: %v", err)
    }

   const t = `
#!/bin/bash

{{range .Dependency}}
echo "type is {{.Type}}"
echo "cwd is {{.CWD}}"
{{range .Install}}
echo "install {{.name}}"
{{end}}
{{end}}
`

    tt := template.Must(template.New("").Parse(t))
    err = tt.Execute(os.Stdout, f)
    if err != nil {
        log.Println("executing template:", err)
    }
}

提供的資料被解組到 File 結構中,然後準備模板執行。此修改後的程式碼產生一個腳本:

#!/bin/bash

echo "type is runner"
echo "cwd is /ui"
echo "install api"

echo "type is runner2"
echo "cwd is /ui2"
echo "install api2"

以上是如何使用帶有 switch 和 ForEach 的 Go 模板生成 Bash 腳本,以迭代依賴項並根據其類型輸出相應的回顯訊息?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn