serverqueue.c
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2000,2001 Onlyer (onlyer@263.net)
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #include "common/setup_before.h"
  19. #include "setup.h"
  20. #ifdef STDC_HEADERS
  21. # include <stdlib.h>
  22. #else
  23. # ifdef HAVE_MALLOC_H
  24. #  include <malloc.h>
  25. # endif
  26. #endif
  27. #ifdef TIME_WITH_SYS_TIME
  28. # include <time.h>
  29. # include <sys/time.h>
  30. #else
  31. # ifdef HAVE_SYS_TIME_H
  32. #  include <sys/time.h>
  33. # else
  34. #  include <time.h>
  35. # endif
  36. #endif
  37. #include "prefs.h"
  38. #include "serverqueue.h"
  39. #include "common/packet.h"
  40. #include "common/list.h"
  41. #include "common/eventlog.h"
  42. #include "common/setup_after.h"
  43. static t_list * sqlist_head=NULL;
  44. static unsigned int sqlist_seqno=0;
  45. extern t_list * sqlist(void)
  46. {
  47. return sqlist_head;
  48. }
  49. extern int sqlist_create(void)
  50. {
  51. if (!(sqlist_head=list_create())) return -1;
  52.    return 0;
  53. }
  54. extern int sqlist_destroy(void)
  55. {
  56. t_sq  * sq;
  57. BEGIN_LIST_TRAVERSE_DATA_CONST(sqlist_head,sq)
  58. {
  59. sq_destroy(sq);
  60. }
  61. END_LIST_TRAVERSE_DATA_CONST()
  62. if (list_destroy(sqlist_head)<0) {
  63. eventlog(eventlog_level_error,__FUNCTION__,"error destroy server queue list");
  64. return -1;
  65. }
  66. sqlist_head=NULL;
  67. return 0;
  68. }
  69. extern int sqlist_check_timeout(void)
  70. {
  71. t_sq * sq;
  72. time_t now;
  73. now=time(NULL);
  74. BEGIN_LIST_TRAVERSE_DATA(sqlist_head, sq)
  75. {
  76. if (now - sq->ctime > prefs_get_sq_timeout()) {
  77. eventlog(eventlog_level_info,__FUNCTION__,"destroying expired server queue %d",sq->seqno);
  78. sq_destroy(sq);
  79. }
  80. }
  81. END_LIST_TRAVERSE_DATA()
  82. return 0;
  83. }
  84. extern t_sq * sqlist_find_sq(unsigned int seqno)
  85. {
  86. t_sq * sq;
  87. BEGIN_LIST_TRAVERSE_DATA_CONST(sqlist_head,sq)
  88. {
  89. if (sq->seqno==seqno) return sq;
  90. }
  91. END_LIST_TRAVERSE_DATA_CONST()
  92. return NULL;
  93. }
  94. extern t_sq * sq_create(unsigned int clientid, t_packet * packet,unsigned int gameid )
  95. {
  96. t_sq * sq;
  97. if (!(sq=malloc(sizeof(t_sq)))) return NULL;
  98. sq->seqno=++sqlist_seqno;
  99. sq->ctime=time(NULL);
  100. sq->clientid=clientid;
  101. sq->gameid=gameid;
  102. sq->packet=packet;
  103. sq->gametoken=0;
  104. if (packet) packet_add_ref(packet);
  105. if (list_append_data(sqlist_head,sq)<0) {
  106. eventlog(eventlog_level_error,__FUNCTION__,"error append server queue to list");
  107. if (packet) packet_del_ref(packet);
  108. free(sq);
  109. return NULL;
  110. }
  111. return sq;
  112. }
  113. extern int sq_destroy(t_sq * sq)
  114. {
  115. ASSERT(sq,-1);
  116. if (list_remove_data(sqlist_head,sq)<0) {
  117. eventlog(eventlog_level_error,__FUNCTION__,"error remove server queue from list");
  118. return -1;
  119. }
  120. if (sq->packet) packet_del_ref(sq->packet);
  121. free(sq);
  122. return 0;
  123. }
  124.   
  125. extern unsigned int sq_get_clientid(t_sq const * sq)
  126. {
  127. ASSERT(sq,0);
  128. return sq->clientid;
  129. }
  130. extern t_packet * sq_get_packet(t_sq const * sq)
  131. {
  132. ASSERT(sq,NULL);
  133. return sq->packet;
  134. }
  135. extern unsigned int sq_get_gameid(t_sq const * sq)
  136. {
  137. ASSERT(sq,0);
  138. return sq->gameid;
  139. }
  140. extern unsigned int sq_get_seqno(t_sq const * sq)
  141. {
  142. ASSERT(sq,0);
  143. return sq->seqno;
  144. }
  145. extern int sq_set_gametoken(t_sq * sq, unsigned int gametoken)
  146. {
  147. ASSERT(sq,-1);
  148. sq->gametoken=gametoken;
  149. return 0;
  150. }
  151. extern unsigned int sq_get_gametoken(t_sq const * sq)
  152. {
  153. ASSERT(sq,0);
  154. return sq->gametoken;
  155. }