当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 0

7x24/google-cloud-go
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
httpr.go 3.06 KB
一键复制 编辑 原始数据 按行查看 历史
Jonathan Amsterdam 提交于 2018-06-13 19:11 . all: modify copyright notice
// Copyright 2018 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// httpr is a proxy that can record or replay HTTP requests.
// Start httpr with either the -record or -replay flags, providing a filename.
// Terminate the process with an interrupt (kill -2) to write the log file when recording.
// To get the CA certificate of the proxy, issue a GET to http://localhost:CP/authority.cer, where
// CP is the control port.
// +build go1.8
package main
import (
"flag"
"fmt"
"io/ioutil"
"log"
"net"
"net/http"
"os"
"os/signal"
"cloud.google.com/go/httpreplay/internal/proxy"
"github.com/google/martian/martianhttp"
)
var (
port = flag.Int("port", 8080, "port of the proxy")
controlPort = flag.Int("control-port", 8181, "port for controlling the proxy")
record = flag.String("record", "", "record traffic and save to filename")
replay = flag.String("replay", "", "read filename and replay traffic")
debugHeaders = flag.Bool("debug-headers", false, "log header mismatches")
)
func main() {
flag.Parse()
if *record == "" && *replay == "" {
log.Fatal("provide either -record or -replay")
}
if *record != "" && *replay != "" {
log.Fatal("provide only one of -record and -replay")
}
log.Printf("httpr: starting proxy on port %d and control on port %d", *port, *controlPort)
var pr *proxy.Proxy
var err error
if *record != "" {
pr, err = proxy.ForRecording(*record, *port)
} else {
pr, err = proxy.ForReplaying(*replay, *port)
}
if err != nil {
log.Fatal(err)
}
proxy.DebugHeaders = *debugHeaders
// Expose handlers on the control port.
mux := http.NewServeMux()
mux.Handle("/authority.cer", martianhttp.NewAuthorityHandler(pr.CACert))
mux.HandleFunc("/initial", handleInitial(pr))
lControl, err := net.Listen("tcp", fmt.Sprintf(":%d", *controlPort))
if err != nil {
log.Fatal(err)
}
go http.Serve(lControl, mux)
sigc := make(chan os.Signal, 1)
signal.Notify(sigc, os.Interrupt)
<-sigc
log.Println("httpr: shutting down")
if err := pr.Close(); err != nil {
log.Fatal(err)
}
}
func handleInitial(pr *proxy.Proxy) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
switch req.Method {
case "GET":
if pr.Initial != nil {
w.Write(pr.Initial)
}
case "POST":
bytes, err := ioutil.ReadAll(req.Body)
req.Body.Close()
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
fmt.Fprintf(w, "reading body: %v", err)
}
pr.Initial = bytes
default:
w.WriteHeader(http.StatusBadRequest)
fmt.Fprint(w, "use GET to retrieve initial or POST to set it")
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/wangHvip/google-cloud-go.git
git@gitee.com:wangHvip/google-cloud-go.git
wangHvip
google-cloud-go
google-cloud-go
v0.30.0

搜索帮助