제 첫 번 째 실 용적 인 GO 언어 프로그램 입 니 다.

11737 단어 http정칙Go

우리 의 코드 에는 다음 과 같은 코드 가 매우 많다.
  UarrMain [0]: = AsMainType (edLayer, myStr, 'Layer', '구조 층 이름');
  UarrMain [1]: = AsMainType (edKind, myStr, 'Kind', '안정 제 종류');
.......
   UArrSub [0]: = AsSubType (myInt, True, 'seqnum', '번호');
  UArrSub [1]: = AsSubType (myStr, False, 'BoxNumber', '테스트 박스 번호');
  UArrSub [2]: = AsSubType (my Float, False, 'BoxWeigth', '상자 의 품질');
.....
나 는 지금 세 번 째, 네 번 째 인 자 를 추출 해 야 한다.
올 려 놓 아 라, 다음 에 컴퓨터 가 고장 나 면 다시 쓸 필요 가 없다.일 에 쓰 이 는 것 은 작업량 을 줄 일 수 있다.
배우 면서 쓴 것 이 비교적 서투르다. 문 서 를 여러 번 뒤 져 서 야 썼 다.
관건 은 정칙 이다. 물론 모든 상황 을 고려 하지 않 았 다.
이 언어 는 서버 를 위 한 개발 이기 때문에 GUI 에 좋 지 않 습 니 다.B / S 코드 를 함부로 만 들 었 습 니 다. 코드 는 다음 과 같 습 니 다.
 

  
  
  
  
  1. package main 
  2. import  
  3. (   
  4.   "io" 
  5.   "fmt" 
  6.   "regexp" 
  7.   "strings" 
  8.    "net/http" 
  9.   
  10. const(  
  11.  SQL = "EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'AAAA', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CCCC', @level2type=N'COLUMN',@level2name=N'BBBB'" 
  12.  SQL2 = "EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'AAAA', @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'CCCC'" 
  13.  html =   
  14.   `<html> 
  15.    <head><title> <a/title></head> 
  16.    <body><form method = 'post'
  17.    TableName : <input type = "text" name = "tablename"></input> qs_Table   TableName,  TestRecordC21 <br></br> 
  18.      : <input type = "text" name = "tablename2"></input>    <br></br> 
  19.    <textarea rows="20" cols="120" name = "target"></textarea><br></br> 
  20.    <input type = "submit" value = "Submit"></input> 
  21.    %s 
  22.    </form> 
  23.    </body> 
  24.    </html>` 
  25. )   
  26.   
  27. func mySearch(str string) (result string) { 
  28.   result = "" 
  29.   regSub := regexp.MustCompile(`(?i)AsSubType\s*\(\w+\s*\,\s*(True|False)\s*\,\s*\'\s*(\w+)\s*\'\s*\,\s*\'\s*(.*?)\s*\'`) 
  30.   regMain := regexp.MustCompile(`(?i)AsMainType\s*\(\w+\s*\,\s*(\w+)\s*\,\s*\'\s*(\w+)\s*\'\s*\,\s*\'\s*(.*?)\s*\'`) 
  31.    
  32.   resultSub := regSub.FindAllStringSubmatch(str, -1) 
  33.   resultMain := regMain.FindAllStringSubmatch(str, -1) 
  34.    
  35.   for _, V := range resultSub { 
  36.       result = result + strings.Replace(strings.Replace(SQL, "AAAA", V[3],-1), "BBBB", V[2], -1) + 
  37.                 "<br></br>" + " GO " + "<br></br>" 
  38.  } 
  39.   
  40.   for _, V := range resultMain { 
  41.   result = result + strings.Replace(strings.Replace(SQL, "AAAA", V[3],-1), "BBBB", V[2], -1) + 
  42.                 "<br></br>" + " GO " + "<br></br>" 
  43.  } 
  44.   
  45.   return  
  46.   
  47. func Analyze(w http.ResponseWriter, r *http.Request) { 
  48.   if r.Method == "GET" { 
  49.     io.WriteString(w, strings.Replace(html, "%s""", -1)) 
  50.  return  
  51.   } 
  52.    
  53.   if r.Method == "POST"
  54.     str := r.FormValue("target"
  55.  tablename := r.FormValue("tablename"
  56.  tablename2 := r.FormValue("tablename2"
  57.  if tablename == "" { 
  58.    io.WriteString(w, strings.Replace(html, "%s""<div border = '1'>" +  
  59.       "TableName   " +"</div>", -1)) 
  60.    return 
  61.  } 
  62.  if tablename2 == "" { 
  63.    io.WriteString(w, strings.Replace(html, "%s""<div border = '1'>" +  
  64.       "    " +"</div>", -1)) 
  65.    return 
  66.  } 
  67.  if str == "" { 
  68.    io.WriteString(w, strings.Replace(html, "%s""<div border = '1'>" +  
  69.       "    " +"</div>", -1)) 
  70.   return 
  71.  } 
  72.   
  73.  SQLCMD := strings.Replace(html, "%s""<div border = '1'>" +  
  74.       strings.Replace(mySearch(str), "CCCC", tablename, -1) +"</div>", -1) 
  75.     SQLCMD = SQLCMD + strings.Replace(strings.Replace(SQL2, "AAAA", tablename2, -1), "CCCC", tablename, -1) 
  76.  io.WriteString(w, SQLCMD) 
  77.   } 
  78.    
  79. func main(){  
  80.     fmt.Println("Open http://localhost:8888/extract"
  81.   http.HandleFunc("/extract", Analyze) 
  82.   err := http.ListenAndServe(":8888", nil) 
  83.   if err != nil { 
  84.     fmt.Println(err.Error()) 
  85.   } 
  86.   

좋은 웹페이지 즐겨찾기