@@ -404,7 +404,7 @@ func tcpServer(address string, exitChan chan int) {
404
404
exitChan <- 1
405
405
}
406
406
407
- log .Println ("[Memcache] Listning on " + address )
407
+ log .Println ("[Memcache TCP ] Listning on " + address )
408
408
409
409
defer l .Close ()
410
410
@@ -420,21 +420,21 @@ func tcpServer(address string, exitChan chan int) {
420
420
go func () {
421
421
skip := false
422
422
reader := bufio .NewReader (conn )
423
- log .Printf ("[Memcache %d] Accepted a client socket from %s\n " , trackID , conn .RemoteAddr ().String ())
423
+ log .Printf ("[Memcache TCP %d] Accepted a client socket from %s\n " , trackID , conn .RemoteAddr ().String ())
424
424
for {
425
425
str , err := reader .ReadString ('\n' )
426
426
if skip {
427
427
skip = false
428
428
continue
429
429
}
430
430
if err != nil {
431
- log .Printf ("[Memcache %d] Closed a client socket." , trackID )
431
+ log .Printf ("[Memcache TCP %d] Closed a client socket.\n " , trackID )
432
432
conn .Close ()
433
433
break
434
434
}
435
435
str = strings .TrimSpace (str )
436
436
437
- log .Printf ("[Memcache %d] Client request: %s." , trackID , str )
437
+ log .Printf ("[Memcache TCP %d] Client request: %s.\n " , trackID , str )
438
438
args := strings .Split (str , " " )
439
439
function , exist := commands [args [0 ]]
440
440
if ! exist {
@@ -470,37 +470,65 @@ func tcpServer(address string, exitChan chan int) {
470
470
471
471
}
472
472
473
- // func udpServer(address string, exitChan chan int) {
474
- // udpAddr, err := net.ResolveUDPAddr("udp", address)
475
- // if err != nil {
476
- // fmt.Println(err.Error())
477
- // exitChan <- 1
478
- // }
479
-
480
- // l, err := net.ListenUDP("udp", udpAddr)
481
- // if err != nil {
482
- // fmt.Println(err.Error())
483
- // exitChan <- 1
484
- // }
485
-
486
- // go func() {
487
- // buf := make([]byte, 1500)
488
- // for {
489
- // buf := make([]byte, 1500)
490
- // plen, addr, _ := l.ReadFromUDP(buf)
491
-
492
- // }
493
- // }
494
- // }()
495
- // }
473
+ func udpServer (address string , exitChan chan int ) {
474
+ udpAddr , err := net .ResolveUDPAddr ("udp" , address )
475
+ if err != nil {
476
+ fmt .Println (err .Error ())
477
+ exitChan <- 1
478
+ }
479
+
480
+ l , err := net .ListenUDP ("udp" , udpAddr )
481
+ if err != nil {
482
+ fmt .Println (err .Error ())
483
+ exitChan <- 1
484
+ }
485
+
486
+ log .Println ("[Memcache UDP] Listning on " + address )
487
+
488
+ go func () {
489
+ buf := make ([]byte , 1500 )
490
+ for {
491
+ plen , addr , _ := l .ReadFromUDP (buf )
492
+ /* UDP协议需要8个字节的头 */
493
+ if plen < 8 {
494
+ continue
495
+ }
496
+ requestStr := string (buf [8 :plen ])
497
+
498
+ for _ , request := range strings .Split (requestStr , "\n " ) {
499
+ request = strings .TrimSpace (request )
500
+ if request == "" {
501
+ continue
502
+ }
503
+ log .Printf ("[Memcache UDP] Client request: [%s] from: %s\n " , request , addr .String ())
504
+ args := strings .Split (request , " " )
505
+ function , exist := commands [args [0 ]]
506
+ if ! exist {
507
+ continue
508
+ }
509
+ args = args [1 :]
510
+
511
+ response , requiredBytes := function (args )
512
+ if requiredBytes != 0 {
513
+ continue
514
+ }
515
+ if len (response ) > 1300 {
516
+ response = response [:1300 ]
517
+ }
518
+ l .WriteTo (append ([]byte {0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x01 , 0x00 , 0x00 }, response ... ), addr )
519
+ }
520
+
521
+ }
522
+ }()
523
+ }
496
524
497
525
func Start (addr string ) {
498
526
// 创建一个程序结束码的通道
499
527
exitChan := make (chan int )
500
528
501
529
// 将服务器并发运行
502
530
go tcpServer (addr , exitChan )
503
- // go udpServer(addr, exitChan)
531
+ go udpServer (addr , exitChan )
504
532
505
533
// 通道阻塞,等待接受返回值
506
534
code := <- exitChan
0 commit comments