Documentation
¶
Index ¶
- Constants
- func EnsureDirExist(name string) error
- func File2lines(filePath string) ([]string, error)
- func FileOrPathExist(filename string) bool
- func GzipCompressFile(srcPath, dstPath string) error
- func InSliceString(v string, sl []string) bool
- func InsertStringToFile(path, str string, index int) error
- func LinesFromReader(r io.Reader) ([]string, error)
- func TarKFTools(name string, writer io.Writer) error
- func ToLinuxPath(path string) string
- func WsHandleError(ws *WsConnection, err error) bool
- type ConsoleFormatter
- type File
- type WsConnection
- type WsMessage
- type XtermMessage
Constants ¶
View Source
const ( WsMsgInput = "input" WsMsgResize = "resize" Heartbeat = "heartbeat" )
Variables ¶
This section is empty.
Functions ¶
func EnsureDirExist ¶
func File2lines ¶
func FileOrPathExist ¶
func GzipCompressFile ¶
func InSliceString ¶
func InsertStringToFile ¶
InsertStringToFile inserts a string to a file *
- Insert sting to n-th line of file.
- If you want to insert a line, append newline '\n' to the end of the string.
Types ¶
type ConsoleFormatter ¶
type ConsoleFormatter struct {
logrus.TextFormatter
}
type WsConnection ¶
type WsConnection struct { CloseChan chan byte // 关闭通知 // contains filtered or unexported fields }
WsConnection 封装websocket连接
func InitWebsocket ¶
func InitWebsocket(resp http.ResponseWriter, req *http.Request) (wsConn *WsConnection, err error)
InitWebsocket 初始化websocket ************* 并发安全 API *************
func (*WsConnection) WritePing ¶
func (wsConn *WsConnection) WritePing(body []byte) error
func (*WsConnection) WritePong ¶
func (wsConn *WsConnection) WritePong(body []byte) error
func (*WsConnection) WsRead ¶
func (wsConn *WsConnection) WsRead() (msg *WsMessage, err error)
WsRead 读取消息
Click to show internal directories.
Click to hide internal directories.