From dc969fb3be94dab0d15e9870a6114efed7db90e1 Mon Sep 17 00:00:00 2001 From: cbping-pc <452775680@qq.com> Date: Wed, 8 Nov 2017 10:19:05 +0800 Subject: [PATCH] bridge --- structural/bridge.md | 50 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 structural/bridge.md diff --git a/structural/bridge.md b/structural/bridge.md new file mode 100644 index 0000000..31c1556 --- /dev/null +++ b/structural/bridge.md @@ -0,0 +1,50 @@ +# Bridge Pattern +Decouples an interface from its implementation so that the two can vary independently + +## Implementation + +```go + +// interface +type Request interface { + HttpRequest() (*http.Request, error) +} + +type Client struct { + Client *http.Client +} + +func (c *Client) Query(req Request) (resp *http.Response, err error) { + httpreq,_:=req.HttpRequest() + resp, err = c.Client.Do(httpreq) + return +} + +// implementation +type BaiduRequest struct { +} + +func (cdn *BaiduRequest) HttpRequest() (*http.Request, error) { + return http.NewRequest("GET", "https://www.baidu.com", nil) +} + +// implementation +type Googleequest struct { +} + +func (cdn *Googleequest) HttpRequest() (*http.Request, error) { + return http.NewRequest("GET", "https://www.google.com/?hl=zh-cn&gws_rd=ssl", nil) +} +``` + +## Usage +```go +client := &Client{http.DefaultClient} + +baiduReq := &BaiduRequest{} +fmt.Println(client.Query(baiduReq)) + +googleReq := &Googleequest{} +fmt.Println(client.Query(googleReq)) +``` +