1. 程式人生 > 實用技巧 >我的go練手專案--使用go實現“在檔案中替換”功能

我的go練手專案--使用go實現“在檔案中替換”功能

寫這個專案的需求比較簡單,就是想批量替換一批檔案裡面的關鍵字(實際場景是為了遷移到達夢,需要把php程式碼裡面使用oci的函式名全替換了)

不過由於替換規則比較複雜,現有的文字編輯器不好操作,所以寫了一個工具輔助

package main

import (
	"bytes"
	"fmt"
	"io/ioutil"
	"log"
	"os"
	"regexp"
	"strings"
)

//獲取指定目錄下的所有檔案和目錄
func GetFilesAndDirs(dirPth string) (files []string, dirs []string, err error) {
	dir, err := ioutil.ReadDir(dirPth)
	if err != nil {
		return nil, nil, err
	}

	PthSep := string(os.PathSeparator)
	//suffix = strings.ToUpper(suffix) //忽略字尾匹配的大小寫

	for _, fi := range dir {
		if fi.IsDir() { // 目錄, 遞迴遍歷
			dirs = append(dirs, dirPth+PthSep+fi.Name())
			GetFilesAndDirs(dirPth + PthSep + fi.Name())
		} else {
			// 過濾指定格式
			ok := strings.HasSuffix(fi.Name(), ".go")
			if ok {
				files = append(files, dirPth+PthSep+fi.Name())
			}
		}
	}

	return files, dirs, nil
}


//獲取指定目錄下的所有檔案,包含子目錄下的檔案
func GetAllFiles(dirPth string) (files []string, err error) {
	var dirs []string
	dir, err := ioutil.ReadDir(dirPth)
	if err != nil {
		return nil, err
	}

	PthSep := string(os.PathSeparator)
	//suffix = strings.ToUpper(suffix) //忽略字尾匹配的大小寫

	for _, fi := range dir {
		if fi.IsDir() { // 目錄, 遞迴遍歷
			dirs = append(dirs, dirPth+PthSep+fi.Name())
			GetAllFiles(dirPth + PthSep + fi.Name())
		} else {
			files = append(files, dirPth+PthSep+fi.Name())
			/*
			// 過濾指定格式
			ok := strings.HasSuffix(fi.Name(), ".go")
			if ok {
				files = append(files, dirPth+PthSep+fi.Name())
			}

			 */
		}
	}

	// 讀取子目錄下檔案
	for _, table := range dirs {
		temp, _ := GetAllFiles(table)
		for _, temp1 := range temp {
			files = append(files, temp1)
		}
	}

	return files, nil
}

//獲取目錄裡面的檔名與expr正則匹配的檔案
func GetAllFilesMatch(dirPth string, expr string) (files []string, err error) {
	var reg *regexp.Regexp = nil

	if expr != "" {
		//先編譯正則 提高匹配效率
		reg, err = regexp.Compile(expr)
		if err != nil {
			return nil, err
		}
	}

	return getAllFilesMatchInter(reg, dirPth)
}

//獲取指定目錄下的所有檔案,包含子目錄下的檔案
func getAllFilesMatchInter(reg *regexp.Regexp, dirPth string) (files []string, err error) {
	var dirs []string

	dir, err := ioutil.ReadDir(dirPth)
	if err != nil {
		return nil, err
	}

	PthSep := string(os.PathSeparator)
	//suffix = strings.ToUpper(suffix) //忽略字尾匹配的大小寫

	for _, fi := range dir {
		if fi.IsDir() { // 目錄, 遞迴遍歷
			dirs = append(dirs, dirPth+PthSep+fi.Name())
		} else {
			if (reg != nil) {
				// 過濾指定格式
				ok := reg.MatchString(fi.Name())
				if ok {
					files = append(files, dirPth+PthSep+fi.Name())
				}
			} else {
				files = append(files, dirPth+PthSep+fi.Name())
			}
		}
	}

	// 讀取子目錄下檔案
	for _, table := range dirs {
		temp, err := getAllFilesMatchInter(reg, table)
		if err != nil {
			return nil, err
		}

		for _, temp1 := range temp {
			files = append(files, temp1)
		}
	}

	return files, nil
}

func changeKey(fileName string) {
	buf, _ := ioutil.ReadFile(fileName)
	//log.Printf("%v", string(buf))
	if !bytes.Contains(buf, []byte("OCI")) {
		return
	}

	ok, _ := regexp.Match("OCI[a-zA-Z]", buf)
	if !ok {
		return
	}

	fmt.Printf("修改檔案[%s]\n", fileName)
	buf = bytes.ReplaceAll(buf, []byte("\nOCI"), []byte("\nHT_DPI"))
	buf = bytes.ReplaceAll(buf, []byte("\rOCI"), []byte("\rHT_DPI"))
	/*
	buf = bytes.ReplaceAll(buf, []byte(";OCI"), []byte(";HT_DPI"))
	buf = bytes.ReplaceAll(buf, []byte("\"OCI"), []byte("\"HT_DPI"))
	buf = bytes.ReplaceAll(buf, []byte("/OCI"), []byte("/HT_DPI"))
	buf = bytes.ReplaceAll(buf, []byte("@OCI"), []byte("@HT_DPI"))
	buf = bytes.ReplaceAll(buf, []byte("\nOCI"), []byte("\nHT_DPI"))
	buf = bytes.ReplaceAll(buf, []byte("!OCI"), []byte("!HT_DPI"))
	buf = bytes.ReplaceAll(buf, []byte("(OCI"), []byte("(HT_DPI"))
	buf = bytes.ReplaceAll(buf, []byte("=OCI"), []byte("=HT_DPI"))
	buf = bytes.ReplaceAll(buf, []byte(" OCI"), []byte(" HT_DPI"))
	buf = bytes.ReplaceAll(buf, []byte("\tOCI"), []byte("\tHT_DPI"))
	*/
	ioutil.WriteFile(fileName, buf, os.ModePerm)
}

func changeKey1(fileName string) {
	buf, _ := ioutil.ReadFile(fileName)
	//log.Printf("%v", string(buf))
	if !bytes.Contains(buf, []byte("ocifetchinto")) {
		return
	}

	fmt.Printf("修改檔案[%s]\n", fileName)
	buf = bytes.ReplaceAll(buf, []byte("ocifetchinto"), []byte("HT_DPIFetchInto"))

	ioutil.WriteFile(fileName, buf, os.ModePerm)
}


func changeKey2(fileName string) {
	buf, _ := ioutil.ReadFile(fileName)
	//log.Printf("%v", string(buf))
	if !bytes.Contains(buf, []byte("HT_DPIFetchinto")) {
		return
	}

	fmt.Printf("修改檔案[%s]\n", fileName)
	buf = bytes.ReplaceAll(buf, []byte("HT_DPIFetchinto"), []byte("HT_DPIFetchInto"))

	ioutil.WriteFile(fileName, buf, os.ModePerm)
}



func changeKey3(fileName string) {
	buf, _ := ioutil.ReadFile(fileName)
	//log.Printf("%v", string(buf))
	if !bytes.Contains(buf, []byte("HT_DPIexecute")) {
		return
	}

	fmt.Printf("修改檔案[%s]\n", fileName)
	buf = bytes.ReplaceAll(buf, []byte("HT_DPIexecute"), []byte("HT_DPIExecute"))

	ioutil.WriteFile(fileName, buf, os.ModePerm)
}

/*
ocibindbyname(
ociBindByName(
OCIBindByName(
OCICommit(
ocidefinebyname(
OCIExecute(
ocifetch(
ocifetchstatement(
OCIFreeStatement(
ocilogoff(
OCILogoff(
OCIRollback(
ocisetprefetch(
*/
func changeKey4(fileName string) {
	buf, _ := ioutil.ReadFile(fileName)
	//log.Printf("%v", string(buf))
	if !bytes.Contains(buf, []byte("oci")) {
		return
	}

	fmt.Printf("修改檔案[%s]\n", fileName)
	buf = bytes.ReplaceAll(buf, []byte("ocibindbyname"), []byte("HT_DPIBindByName"))
	buf = bytes.ReplaceAll(buf, []byte("ociBindByName"), []byte("HT_DPIBindByName"))
	buf = bytes.ReplaceAll(buf, []byte("ocidefinebyname"), []byte("HT_DPIDefineByName"))
	buf = bytes.ReplaceAll(buf, []byte("ocifetch"), []byte("HT_DPIFetch"))
	buf = bytes.ReplaceAll(buf, []byte("ocifetchstatement"), []byte("HT_DPIFetchStatement"))
	buf = bytes.ReplaceAll(buf, []byte("ocilogoff"), []byte("HT_DPILogoff"))
	buf = bytes.ReplaceAll(buf, []byte("ocisetprefetch"), []byte("HT_DPISetPreFetch"))

	ioutil.WriteFile(fileName, buf, os.ModePerm)
}


func main() {
	files, dirs, _ := GetFilesAndDirs(`C:\inc_chk`)

	for _, dir := range dirs {
		fmt.Printf("獲取的資料夾為[%s]\n", dir)
	}


	for _, dir := range files {
		fmt.Printf("獲取的檔案為[%s]\n", dir)
	}

	xfiles, err := GetAllFilesMatch(`C:\inc_chk_dpi`, `.*\.php$`)
	if err != nil {
		log.Printf("err = %v", err)
		os.Exit(1)
	}

	for _, file := range xfiles {
		//fmt.Printf("獲取的檔案為[%s]\n", file)
		changeKey(file)
		/*
		changeKey4(file)
		changeKey1(file)
		changeKey2(file)
		changeKey3(file)

		 */
	}
}