-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path00-connection.go
128 lines (116 loc) · 2.4 KB
/
00-connection.go
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package main
import (
"encoding/json"
"fmt"
"log"
"os"
"sync"
"time"
"github.com/streadway/amqp"
)
type C struct {
DialUrl string
}
var c = C{}
/*
.env.json
{
"DialUrl":"amqp://user:pwd@ip:5672/"
}
*/
func init() {
fs, err := os.ReadFile(".env.json")
if err != nil {
panic(err)
}
err = json.Unmarshal(fs, &c)
if err != nil {
panic(err)
}
}
var count int
var mutex sync.Mutex
func main() {
fmt.Println(time.Now())
conn, err := amqp.Dial(c.DialUrl)
if err != nil {
log.Fatal("dial:", err)
}
channel, err := conn.Channel()
if err != nil {
log.Fatal("channel:", err)
}
channel.ExchangeDeclare("test", amqp.ExchangeTopic, true, false, false, false, nil)
channel.QueueDeclare("testQueue", true, false, false, false, nil)
channel.QueueBind("testQueue", "testKey", "test", false, nil)
channel.Close()
done := make(chan bool, 1)
for {
select {
case <-done:
fmt.Println("done")
fmt.Println(time.Now())
return
default:
go testNotCloseConn(conn, done)
//fmt.Println("test")
//go testCloseConn(done)
}
time.Sleep(time.Nanosecond)
}
}
func testNotCloseConn(conn *amqp.Connection, done chan bool) {
mutex.Lock()
channel, err := conn.Channel()
count++
fmt.Println(count)
if err != nil {
fmt.Println("*****", count, "****")
fmt.Println("channel:", err)
done <- true
return
}
mutex.Unlock()
amqpTest := amqp.Publishing{
ContentType: "application/json",
Body: []byte("{name:'china',host:'localhost'}"),
}
err = channel.Publish("test", "testKey", false, false, amqpTest)
if err != nil {
fmt.Println("publish:", err)
return
}
defer channel.Close()
fmt.Println("发送成功!")
time.Sleep(time.Second * 600)
}
func testCloseConn(done chan bool) {
mutex.Lock()
conn, err := amqp.Dial(c.DialUrl)
count++
if err != nil {
fmt.Println("*****", count, "****")
fmt.Println("dial:", err)
done <- true
return
}
mutex.Unlock() //加锁位置
channel, err := conn.Channel()
defer conn.Close()
if err != nil {
log.Println("channel:", err)
return
}
defer channel.Close()
amqpTest := amqp.Publishing{
ContentType: "application/json",
Body: []byte("{name:'china',host:'localhost'}"),
}
channel.Qos(1, 0, true)
err = channel.Publish("test", "testKey", false, false, amqpTest)
if err != nil {
log.Println("publish:", err)
}
fmt.Println(count, " 发送成功")
time.Sleep(time.Second * 600) //睡眠协程,不让conn和channel关闭
}