errors.Format

pull/330/head
Darien Raymond 2016-12-15 11:05:32 +01:00
parent 49202930ff
commit 5bbbdc05de
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
6 changed files with 15 additions and 11 deletions

View File

@ -2,6 +2,7 @@ package errors
import ( import (
"fmt" "fmt"
"v2ray.com/core/common/serial" "v2ray.com/core/common/serial"
) )
@ -27,7 +28,7 @@ func (v *Error) Inner() error {
func New(msg ...interface{}) error { func New(msg ...interface{}) error {
return &Error{ return &Error{
message: serial.ToString(msg), message: serial.Concat(msg),
} }
} }
@ -37,6 +38,11 @@ func Base(err error) ErrorBuilder {
} }
} }
func Format(format string, values ...interface{}) error {
return New(fmt.Sprintf(format, values...))
}
// Cause returns the root cause of this error.
func Cause(err error) error { func Cause(err error) error {
if err == nil { if err == nil {
return nil return nil

View File

@ -1,7 +1,6 @@
package protocol package protocol
import ( import (
"fmt"
"io" "io"
"v2ray.com/core/common/buf" "v2ray.com/core/common/buf"
@ -228,7 +227,7 @@ func ReadRequest(reader io.Reader) (request *Socks5Request, err error) {
return return
} }
default: default:
err = fmt.Errorf("Socks: Unexpected address type %d", request.AddrType) err = errors.Format("Socks: Unexpected address type %d", request.AddrType)
return return
} }

View File

@ -1,7 +1,6 @@
package protocol package protocol
import ( import (
"fmt"
"v2ray.com/core/common/buf" "v2ray.com/core/common/buf"
"v2ray.com/core/common/errors" "v2ray.com/core/common/errors"
v2net "v2ray.com/core/common/net" v2net "v2ray.com/core/common/net"
@ -79,7 +78,7 @@ func ReadUDPRequest(packet []byte) (*Socks5UDPRequest, error) {
request.Address = v2net.ParseAddress(domain) request.Address = v2net.ParseAddress(domain)
dataBegin = 5 + domainLength + 2 dataBegin = 5 + domainLength + 2
default: default:
return nil, fmt.Errorf("Socks|UDP: Unknown address type %d", addrType) return nil, errors.Format("Socks|UDP: Unknown address type %d", addrType)
} }
if len(packet) > dataBegin { if len(packet) > dataBegin {

View File

@ -5,7 +5,6 @@ import (
"crypto/cipher" "crypto/cipher"
"crypto/md5" "crypto/md5"
"crypto/rand" "crypto/rand"
"fmt"
"hash/fnv" "hash/fnv"
"io" "io"
@ -14,6 +13,7 @@ import (
"v2ray.com/core/common/buf" "v2ray.com/core/common/buf"
"v2ray.com/core/common/crypto" "v2ray.com/core/common/crypto"
"v2ray.com/core/common/dice" "v2ray.com/core/common/dice"
"v2ray.com/core/common/errors"
"v2ray.com/core/common/log" "v2ray.com/core/common/log"
v2net "v2ray.com/core/common/net" v2net "v2ray.com/core/common/net"
"v2ray.com/core/common/protocol" "v2ray.com/core/common/protocol"
@ -187,7 +187,7 @@ func (v *ClientSession) DecodeResponseHeader(reader io.Reader) (*protocol.Respon
} }
if buffer[0] != v.responseHeader { if buffer[0] != v.responseHeader {
return nil, fmt.Errorf("VMess|Client: Unexpected response header. Expecting %d but actually %d", v.responseHeader, buffer[0]) return nil, errors.Format("VMess|Client: Unexpected response header. Expecting %d but actually %d", v.responseHeader, buffer[0])
} }
header := &protocol.ResponseHeader{ header := &protocol.ResponseHeader{

View File

@ -2,7 +2,6 @@ package conf
import ( import (
"encoding/json" "encoding/json"
"fmt"
"io/ioutil" "io/ioutil"
"strings" "strings"
@ -46,14 +45,14 @@ func (v *KCPConfig) Build() (*loader.TypedSettings, error) {
if v.Mtu != nil { if v.Mtu != nil {
mtu := *v.Mtu mtu := *v.Mtu
if mtu < 576 || mtu > 1460 { if mtu < 576 || mtu > 1460 {
return nil, fmt.Errorf("KCP|Config: Invalid MTU size: %d", mtu) return nil, errors.Format("KCP|Config: Invalid MTU size: %d", mtu)
} }
config.Mtu = &kcp.MTU{Value: mtu} config.Mtu = &kcp.MTU{Value: mtu}
} }
if v.Tti != nil { if v.Tti != nil {
tti := *v.Tti tti := *v.Tti
if tti < 10 || tti > 100 { if tti < 10 || tti > 100 {
return nil, fmt.Errorf("KCP|Config: Invalid TTI: %d", tti) return nil, errors.Format("KCP|Config: Invalid TTI: %d", tti)
} }
config.Tti = &kcp.TTI{Value: tti} config.Tti = &kcp.TTI{Value: tti}
} }

View File

@ -14,6 +14,7 @@ import (
"strings" "strings"
"v2ray.com/core/app/router" "v2ray.com/core/app/router"
"v2ray.com/core/common/errors"
"v2ray.com/core/tools/geoip" "v2ray.com/core/tools/geoip"
"github.com/golang/protobuf/proto" "github.com/golang/protobuf/proto"
@ -29,7 +30,7 @@ func main() {
panic(err) panic(err)
} }
if resp.StatusCode != 200 { if resp.StatusCode != 200 {
panic(fmt.Errorf("Unexpected status %d", resp.StatusCode)) panic(errors.Format("Unexpected status %d", resp.StatusCode))
} }
defer resp.Body.Close() defer resp.Body.Close()
scanner := bufio.NewScanner(resp.Body) scanner := bufio.NewScanner(resp.Body)