Skip to content
Snippets Groups Projects
Commit d48fd1e3 authored by cvictory's avatar cvictory
Browse files

remove unused code, add license

parent acc7c798
No related branches found
No related tags found
No related merge requests found
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package dubbo
import (
......@@ -114,12 +130,6 @@ func (c *DubboCodec) EncodeRequest(request *remoting.Request) (*bytes.Buffer, er
panic(err)
}
p.Service.Timeout = time.Duration(timeout)
//var timeout = request.svcUrl.GetParam(strings.Join([]string{constant.METHOD_KEYS, request.method + constant.RETRIES_KEY}, "."), "")
//if len(timeout) != 0 {
// if t, err := time.ParseDuration(timeout); err == nil {
// p.Service.Timeout = t
// }
//}
p.Header.SerialID = byte(S_Dubbo)
p.Header.ID = request.Id
......@@ -322,12 +332,5 @@ func (c *DubboCodec) decodeResponse(data []byte) (*remoting.Response, int, error
rpcResult.Rest = pkg.Body.(*hessian.Response).RspObj
}
//h.conn.updateSession(session)
//pendingResponse := h.conn.pool.rpcClient.removePendingResponse(SequenceType(p.Header.ID))
//if pendingResponse == nil {
// logger.Errorf("failed to get pending response context for response package %s", *p)
// return
//}
return response, hessian.HEADER_LENGTH + pkg.Header.BodyLen, nil
}
package dubbo
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package remoting
import (
"bytes"
)
// codec for exchangeClient
type Codec interface {
EncodeRequest(request *Request) (*bytes.Buffer, error)
EncodeResponse(response *Response) (*bytes.Buffer, error)
......
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package remoting
import (
......@@ -38,12 +54,6 @@ func NewRequest(version string) *Request {
}
}
//func (request *Request) SetHeartbeat(isHeartbeat bool) {
// if isHeartbeat {
//
// }
//}
// Response ...
type Response struct {
Id int64
......@@ -70,8 +80,6 @@ func (response *Response) IsHeartbeat() bool {
type Options struct {
// connect timeout
ConnectTimeout time.Duration
// request timeout
//RequestTimeout time.Duration
}
//AsyncCallbackResponse async response for dubbo
......
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package remoting
import (
......@@ -24,8 +40,6 @@ type ExchangeClient struct {
type Client interface {
SetExchangeClient(client *ExchangeClient)
SetResponseHandler(responseHandler ResponseHandler)
//invoke once for connection
//ConfigClient()
Connect(url common.URL) error
Close()
Request(request *Request, timeout time.Duration, response *PendingResponse) error
......@@ -64,7 +78,6 @@ func (client *ExchangeClient) Request(invocation *protocol.Invocation, url commo
rsp.response = NewResponse(request.Id, "2.0.2")
rsp.Reply = (*invocation).Reply()
AddPendingResponse(rsp)
//rsp.callback = invo
err := client.client.Request(request, timeout, rsp)
if err != nil {
......@@ -72,7 +85,6 @@ func (client *ExchangeClient) Request(invocation *protocol.Invocation, url commo
return err
}
result.Rest = rsp.response.Result
//result.Attrs = rsp.response.
return nil
}
......@@ -95,7 +107,6 @@ func (client *ExchangeClient) AsyncRequest(invocation *protocol.Invocation, url
return err
}
result.Rest = rsp.response
//result.Attrs = rsp.response.
return nil
}
......@@ -113,7 +124,6 @@ func (client *ExchangeClient) Send(invocation *protocol.Invocation, timeout time
if err != nil {
return err
}
//result.Attrs = rsp.response.
return nil
}
......
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package remoting
import (
......
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package getty
// copy from dubbo/dubbo_codec.go
import (
"bufio"
"bytes"
......
......@@ -108,16 +108,6 @@ type Options struct {
ConnectTimeout time.Duration
}
////AsyncCallbackResponse async response for dubbo
//type AsyncCallbackResponse struct {
// common.CallbackResponse
// Opts Options
// Cause error
// Start time.Time // invoke(call) start time == write start time
// ReadStart time.Time // read start time, write duration = ReadStart - Start
// Reply interface{}
//}
// Client ...
type Client struct {
addr string
......@@ -149,6 +139,7 @@ func (c *Client) SetResponseHandler(responseHandler remoting.ResponseHandler) {
c.responseHandler = responseHandler
}
// init client and try to connection.
func (c *Client) Connect(url common.URL) error {
initClient(url.Protocol)
c.conf = *clientConf
......
......@@ -133,25 +133,6 @@ func (h *RpcClientHandler) OnMessage(session getty.Session, pkg interface{}) {
h.conn.updateSession(session)
h.conn.pool.rpcClient.responseHandler.Handler(p)
//
//pendingResponse := h.conn.pool.rpcClient.removePendingResponse(SequenceType(p.Header.ID))
//if pendingResponse == nil {
// logger.Errorf("failed to get pending response context for response package %s", *p)
// return
//}
//
//if p.Err != nil {
// pendingResponse.err = p.Err
//}
//
//pendingResponse.response.atta = p.Body.(*Response).atta
//
//if pendingResponse.callback == nil {
// pendingResponse.done <- struct{}{}
//} else {
// pendingResponse.callback(pendingResponse.GetCallResponse())
//}
}
// OnCron ...
......@@ -262,12 +243,6 @@ func (h *RpcServerHandler) OnMessage(session getty.Session, pkg interface{}) {
return
}
//twoway := true
//// not twoway
//if p.Header.Type&hessian.PackageRequest_TwoWay == 0x00 {
// twoway = false
//}
defer func() {
if e := recover(); e != nil {
resp.Status = hessian.Response_SERVER_ERROR
......@@ -334,20 +309,6 @@ func (h *RpcServerHandler) OnCron(session getty.Session) {
}
func reply(session getty.Session, resp *remoting.Response, tp hessian.PackageType) {
//resp := &DubboPackage{
// Header: hessian.DubboHeader{
// SerialID: req.Header.SerialID,
// Type: tp,
// ID: req.Header.ID,
// ResponseStatus: req.Header.ResponseStatus,
// },
//}
//
//if resp.Event {
// resp.Result = req.Body
//} else {
// resp.Body = nil
//}
if err := session.WritePkg(resp, WritePkg_Timeout); err != nil {
logger.Errorf("WritePkg error: %#v, %#v", perrors.WithStack(err), resp)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment