當前位置: 首頁>>代碼示例>>Golang>>正文


Golang context.Response類代碼示例

本文整理匯總了Golang中github.com/henrylee2cn/pholcus/downloader/context.Response的典型用法代碼示例。如果您正苦於以下問題:Golang Response類的具體用法?Golang Response怎麽用?Golang Response使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Response類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: connectByHttp

// choose http GET/method to download
func connectByHttp(p *context.Response, req *context.Request) (*http.Response, error) {
	client := &http.Client{
		CheckRedirect: req.GetRedirectFunc(),
	}

	httpreq, err := http.NewRequest(req.GetMethod(), req.GetUrl(), strings.NewReader(req.GetPostdata()))
	if header := req.GetHeader(); header != nil {
		httpreq.Header = req.GetHeader()
	}

	if cookies := req.GetCookies(); cookies != nil {
		for i := range cookies {
			httpreq.AddCookie(cookies[i])
		}
	}

	var resp *http.Response
	if resp, err = client.Do(httpreq); err != nil {
		if e, ok := err.(*url.Error); ok && e.Err != nil && e.Err.Error() == "normal" {
			//  normal
		} else {
			reporter.Log.Println(err.Error())
			p.SetStatus(true, err.Error())
			//fmt.Printf("client do error %v \r\n", err)
			return nil, err
		}
	}

	return resp, nil
}
開發者ID:houzhenggang,項目名稱:pholcus,代碼行數:31,代碼來源:downloader_http.go

示例2: downloadText

func (self *HttpDownloader) downloadText(p *context.Response, req *context.Request) *context.Response {
	p, destbody := self.downloadFile(p, req)
	if !p.IsSucc() {
		return p
	}
	p.SetBodyStr(destbody).SetStatus(false, "")
	return p
}
開發者ID:houzhenggang,項目名稱:pholcus,代碼行數:8,代碼來源:downloader_http.go

示例3: downloadHtml

func (self *HttpDownloader) downloadHtml(p *context.Response, req *context.Request) *context.Response {
	var err error
	p, destbody := self.downloadFile(p, req)
	//fmt.Printf("Destbody %v \r\n", destbody)
	if !p.IsSucc() {
		//fmt.Print("Response error \r\n")
		return p
	}
	bodyReader := bytes.NewReader([]byte(destbody))

	var doc *goquery.Document
	if doc, err = goquery.NewDocumentFromReader(bodyReader); err != nil {
		reporter.Log.Println(err.Error())
		p.SetStatus(true, err.Error())
		return p
	}

	var body string
	if body, err = doc.Html(); err != nil {
		reporter.Log.Println(err.Error())
		p.SetStatus(true, err.Error())
		return p
	}

	p.SetBodyStr(body).SetHtmlParser(doc).SetStatus(false, "")

	return p
}
開發者ID:houzhenggang,項目名稱:pholcus,代碼行數:28,代碼來源:downloader_http.go

示例4: downloadJson

func (self *HttpDownloader) downloadJson(p *context.Response, req *context.Request) *context.Response {
	var err error
	p, destbody := self.downloadFile(p, req)
	if !p.IsSucc() {
		return p
	}

	var body []byte
	body = []byte(destbody)
	mtype := req.GetRespType()
	if mtype == "jsonp" {
		tmpstr := util.JsonpToJson(destbody)
		body = []byte(tmpstr)
	}

	var r *simplejson.Json
	if r, err = simplejson.NewJson(body); err != nil {
		reporter.Log.Println(string(body) + "\t" + err.Error())
		p.SetStatus(true, err.Error())
		return p
	}

	// json result
	p.SetBodyStr(string(body)).SetJson(r).SetStatus(false, "")

	return p
}
開發者ID:houzhenggang,項目名稱:pholcus,代碼行數:27,代碼來源:downloader_http.go

示例5: downloadFile

// Download file and change the charset of response charset.
func (self *HttpDownloader) downloadFile(p *context.Response, req *context.Request) (*context.Response, string) {
	var err error
	var urlstr string
	if urlstr = req.GetUrl(); len(urlstr) == 0 {
		reporter.Log.Println("url is empty")
		p.SetStatus(true, "url is empty")
		return p, ""
	}

	var resp *http.Response

	if proxystr := req.GetProxyHost(); len(proxystr) != 0 {
		//using http proxy
		//fmt.Print("HttpProxy Enter ",proxystr,"\n")
		resp, err = connectByHttpProxy(p, req)
	} else {
		//normal http download
		//fmt.Print("Http Normal Enter \n",proxystr,"\n")
		resp, err = connectByHttp(p, req)
	}

	if err != nil {
		return p, ""
	}

	//b, _ := ioutil.ReadAll(resp.Body)
	//fmt.Printf("Resp body %v \r\n", string(b))

	p.SetHeader(resp.Header)
	p.SetCookies(resp.Cookies())

	// get converter to utf-8
	bodyStr := self.changeCharsetEncodingAuto(resp.Header.Get("Content-Type"), resp.Body)
	//fmt.Printf("utf-8 body %v \r\n", bodyStr)
	defer resp.Body.Close()
	return p, bodyStr
}
開發者ID:houzhenggang,項目名稱:pholcus,代碼行數:38,代碼來源:downloader_http.go

示例6: Process

// core processer
func (self *crawler) Process(req *context.Request) {
	// 聲明response
	var resp *context.Response

	defer func() {
		if err := recover(); err != nil { // do not affect other
			if strerr, ok := err.(string); ok {
				reporter.Log.Println(strerr)
			} else {
				reporter.Log.Println("Process error:", err)
			}
		}
	}()
	// reporter.Log.Println("**************斷點 1 ***********")
	// download page
	for i := 0; i < 3; i++ {
		self.sleep()
		resp = self.Downloader.Download(req)
		if resp.IsSucc() { // if fail retry 3 times
			break
		}
	}
	// reporter.Log.Println("**************斷點 2 ***********")
	if !resp.IsSucc() { // if fail do not need process
		return
	}
	// reporter.Log.Println("**************斷點 3 ***********")
	// 過程處理,提煉數據
	self.Spider.GoRule(resp)
	// reporter.Log.Println("**************斷點 5 ***********")
	// 該條請求結果存入pipeline
	datas := resp.GetItems()
	for i, count := 0, len(datas); i < count; i++ {
		self.Pipeline.Collect(
			resp.GetRuleName(), //DataCell.RuleName
			datas[i],           //DataCell.Data
			resp.GetUrl(),      //DataCell.Url
			resp.GetParent(),   //DataCell.ParentUrl
			time.Now().Format("2006-01-02 15:04:05"),
		)
	}
	// reporter.Log.Println("**************斷點 end ***********")
}
開發者ID:houzhenggang,項目名稱:pholcus,代碼行數:44,代碼來源:crawl.go

示例7: GetOutFeild

// 獲取任務規則采集語義字段
func (self *Spider) GetOutFeild(resp *context.Response, index int) string {
	return self.RuleTree.Nodes[resp.GetRuleName()].OutFeild[index]
}
開發者ID:houzhenggang,項目名稱:pholcus,代碼行數:4,代碼來源:spider.go

示例8: CallRule

// 用指定規則解析響應流
func (self *Spider) CallRule(ruleName string, resp *context.Response) {
	resp.SetRuleName(ruleName)
	self.GoRule(resp)
}
開發者ID:houzhenggang,項目名稱:pholcus,代碼行數:5,代碼來源:spider.go

示例9: GoRule

// 根據響應流運行指定解析規則
func (self *Spider) GoRule(resp *context.Response) {
	self.RuleTree.Nodes[resp.GetRuleName()].ParseFunc(self, resp)
}
開發者ID:houzhenggang,項目名稱:pholcus,代碼行數:4,代碼來源:spider.go


注:本文中的github.com/henrylee2cn/pholcus/downloader/context.Response類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。