chenshijun
2019-09-11 2d152f583afd602d501cc7fb05c54cc244943e70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package util
 
import (
    "basic.com/valib/deliver.git"
    "context"
    "errors"
    "github.com/pierrec/lz4"
    "basic.com/valib/logger.git"
)
 
type SocketContext struct {
    Sock    deliver.Deliver
    Context context.Context
    Cancel  context.CancelFunc
}
 
//  1. oldstring element is not in new  : abandon(delete)
//  2. new element is not in oldstring  : add(add)
func Difference(oldstring []string, newstring []string) map[string]string {
    var diff = make(map[string]string)
 
    // Loop two times, first to find oldstring strings not in newstring,
    // second loop to find newstring strings not in oldstring
    for i := 0; i < 2; i++ {
        for _, s1 := range oldstring {
            found := false
            for _, s2 := range newstring {
                if s1 == s2 {
                    found = true
                    break
                }
            }
            // String not found. We add it to return slice
            if !found && i == 0 {
                diff[s1] = "delete"
            }
            if !found && i != 0 {
                diff[s1] = "add"
            }
        }
        // Swap the slices, only if it was the first loop
        if i == 0 {
            oldstring, newstring = newstring, oldstring
        }
    }
    return diff
}
 
// UnCompress uncompress
func UnCompress(in []byte) ([]byte, error) {
    out := make([]byte, 10*len(in))
    n, err := lz4.UncompressBlock(in, out)
    if err != nil {
        logger.Error("uncompress error: ", err)
        return nil, err
    }
    out = out[:n] // uncompressed data
    return out, nil
}
 
// Compress compress
func Compress(in []byte) ([]byte, error) {
    out := make([]byte, len(in))
    ht := make([]int, 64<<10) // buffer for the compression table
    n, err := lz4.CompressBlock(in, out, ht)
    if err != nil {
        logger.Error("compress: ", err)
        return nil, err
    }
    if n >= len(in) {
        logger.Error("image is not compressible")
    }
    out = out[:n] // compressed data
    return out, nil
}
 
// create server
func NewSocketListen(mode int, url string) (socket SocketContext, err error) {
    logger.Info("url is: ", url)
    ctx, cancel := context.WithCancel(context.Background())
 
    socket.Context = ctx
    socket.Cancel = cancel
    socket.Sock = deliver.NewServer(deliver.Mode(mode), url)
 
    if socket.Sock == nil {
        return socket, errors.New("create listen error")
    }
 
    return socket, nil
}
 
func NewSocketDial(mode int, url string) (socket SocketContext, err error) {
    logger.Info("url is: ", url)
    ctx, cancel := context.WithCancel(context.Background())
 
    socket.Context = ctx
    socket.Cancel = cancel
 
    socket.Sock = deliver.NewClient(deliver.Mode(mode), url)
 
    if socket.Sock == nil {
        return socket, errors.New("create listen error")
    }
 
    return socket, nil
}