media.c
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:8k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (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.  */
  19.  
  20. #include "echo.h"
  21. void freeMedia (struct Channel *pc)
  22. {
  23. int i;
  24. struct LiveChannelInfo *pcinfo = pc->pcinfo;
  25. if (pcinfo == NULL || pcinfo->media == NULL) return;
  26. for (i=0; i<pcinfo->cur_channel; i++)
  27. {
  28. free (pcinfo->media[i].data);
  29. }
  30. free (pc->pcinfo->media);
  31. pc->pcinfo->media = NULL;
  32. pc->pcinfo->cur_channel = 0;
  33. }
  34. #ifdef __CP_SOURCE
  35. void addMedia (struct Channel *pc, int start, int len, int dlen, char *data, char *progname, char *channel_name)
  36. #endif
  37. #ifdef __SP_SOURCE
  38. void addMedia (struct Channel *pc, int start, int len, int dlen, char *data, char *progname)
  39. #endif
  40. {
  41. struct LiveChannelInfo *pcinfo = pc->pcinfo;
  42. PDEBUG ("Add media to %p, %d, %d, %dn", pc, start, len, dlen);
  43. if (pcinfo == NULL || pcinfo->media == NULL) return;
  44. if (pcinfo->cur_channel >= pcinfo->max_channel)
  45. return;
  46. pcinfo->media[pcinfo->cur_channel].start = start;
  47. pcinfo->media[pcinfo->cur_channel].len = len;
  48. pcinfo->media[pcinfo->cur_channel].dlen = dlen;
  49. strncpy (pcinfo->media[pcinfo->cur_channel].progname, progname, CHNLURL_LEN);
  50. #ifdef __CP_SOURCE
  51. strncpy (pcinfo->media[pcinfo->cur_channel].channel_name, channel_name, CHNLURL_LEN);
  52. #endif
  53. if (dlen > 0)
  54. {
  55. pcinfo->media[pcinfo->cur_channel].data = calloc (1, dlen);
  56. memcpy (pcinfo->media[pcinfo->cur_channel].data, data, dlen);
  57. } else
  58. pcinfo->media[pcinfo->cur_channel].data = NULL;
  59. pcinfo->cur_channel ++;
  60. PDEBUG ("Add media succeed.n");
  61. }
  62. #ifdef __CP_SOURCE
  63. int isHit (struct Channel *pc, int blockid)
  64. {
  65. int i;
  66. struct LiveChannelInfo *pcinfo = pc->pcinfo;
  67. if (pcinfo == NULL || pcinfo->media == NULL || pcinfo->max_queue == 0) return -1;
  68. int realid = blockid % pcinfo->max_queue;
  69. for (i=0; i<pcinfo->cur_channel; i++)
  70. {
  71. if (realid == pcinfo->media[i].start)
  72. return i;
  73. }
  74. return -1;
  75. }
  76. #endif
  77. static int transID (struct Channel *pc, int blockid)
  78. {
  79. int i;
  80. struct LiveChannelInfo *pcinfo = pc->pcinfo;
  81. if (pcinfo == NULL || pcinfo->media == NULL || pcinfo->max_queue == 0) return -1;
  82. int realid = blockid % pcinfo->max_queue;
  83. for (i=0; i<pcinfo->cur_channel; i++)
  84. {
  85. if (realid < pcinfo->media[i].start)
  86. return i-1;
  87. }
  88. return (pcinfo->cur_channel -1);
  89. }
  90. void sendIdMedia (struct Session *p, struct Channel *pc, int id, int copymd5)
  91. {
  92. int i, namelen;
  93. struct MediaData *media;
  94. char buffer[MAX_MSG_SIZE], *buf;
  95. PDEBUG ("send media to %p, %p, %dn", p, pc, id);
  96. if (pc->pcinfo == NULL || (media = pc->pcinfo->media) == NULL
  97. || (pc->type == T_PLIST && pc->pcinfo->max_queue == 0))
  98. return;
  99. buf = buffer +sizeof (int);
  100. *(unsigned char *)buf = P2P_MEDIATYPE;
  101. buf += sizeof (char);
  102. if (copymd5)
  103. {
  104. memcpy (buf, pc->channel_md5, MD5_LEN);
  105. buf += MD5_LEN;
  106. }
  107. if (pc->type == T_PLIST)
  108. {
  109. if ((i = transID (pc, id)) < 0) return;
  110. *(int *)buf = media[i].start + (id / pc->pcinfo->max_queue) * pc->pcinfo->max_queue;
  111. } else
  112. {
  113. i = 0;
  114. *(int *)buf = 0;
  115. }
  116. buf += sizeof (int);
  117. *(int *)buf = media[i].len;
  118. buf += sizeof (int);
  119. *(int *)buf = media[i].dlen;
  120. buf += sizeof (int);
  121. if (media[i].dlen > 0)
  122. {
  123. memcpy (buf, media[i].data, media[i].dlen);
  124. buf += media[i].dlen;
  125. }
  126. if (media[i].progname != NULL)
  127. {
  128. if ((namelen = strlen (media[i].progname)) >= CHNLURL_LEN)
  129. namelen = CHNLURL_LEN - 1;
  130. *(unsigned char *)buf = namelen+1;
  131. buf += sizeof (char);
  132. memcpy (buf, media[i].progname, namelen);
  133. buf[namelen] = 0;
  134. buf += namelen+1;
  135. } else
  136. {
  137. *(unsigned char *)buf = 1;
  138. buf += sizeof (char);
  139. *(unsigned char *)buf = 0;
  140. buf += sizeof (char);
  141. }
  142. *(unsigned int *)buf = 0;
  143. buf += sizeof (int);
  144. #ifdef __SP_SOURCE
  145. if ((namelen = strlen (pc->channel_name)) >= CHNLURL_LEN)
  146. namelen = CHNLURL_LEN - 1;
  147. *(unsigned char *)buf = namelen;
  148. buf += sizeof (char);
  149. memcpy (buf, pc->channel_name, namelen);
  150. buf[namelen] = 0;
  151. buf += namelen+1;
  152. #endif
  153. #ifdef __CP_SOURCE
  154. if ((namelen = strlen (media[i].channel_name)) >= CHNLURL_LEN)
  155. namelen = CHNLURL_LEN - 1;
  156. *(unsigned char *)buf = namelen;
  157. buf += sizeof (char);
  158. memcpy (buf, media[i].channel_name, namelen);
  159. buf[namelen] = 0;
  160. buf += namelen+1;
  161. #endif
  162. *(int *)buffer = buf - buffer;
  163. writeMessage (p, pc, buffer);
  164. PDEBUG ("send media succeed.n");
  165. }
  166. void sendHitMedia (struct Session *p, struct Channel *pc, int i, int startid, int copymd5)
  167. {
  168. struct MediaData *media;
  169. int namelen;
  170. char buffer[MAX_MSG_SIZE], *buf;
  171. if (pc->pcinfo == NULL || (media = pc->pcinfo->media) == NULL)
  172. return;
  173. PDEBUG ("send media to %p, %p, %dn", p, pc, startid);
  174. buf = buffer +sizeof (int);
  175. *(unsigned char *)buf = P2P_MEDIATYPE;
  176. buf += sizeof (char);
  177. if (copymd5)
  178. {
  179. memcpy (buf, pc->channel_md5, MD5_LEN);
  180. buf += MD5_LEN;
  181. }
  182. *(int *)buf = startid;
  183. buf += sizeof (int);
  184. *(int *)buf = media[i].len;
  185. buf += sizeof (int);
  186. *(int *)buf = media[i].dlen;
  187. buf += sizeof (int);
  188. if (media[i].dlen > 0)
  189. {
  190. memcpy (buf, media[i].data, media[i].dlen);
  191. buf += media[i].dlen;
  192. }
  193. if (media[i].progname != NULL)
  194. {
  195. if ((namelen = strlen (media[i].progname)) >= CHNLURL_LEN)
  196. namelen = CHNLURL_LEN - 1;
  197. *(unsigned char *)buf = namelen+1;
  198. buf += sizeof (char);
  199. memcpy (buf, media[i].progname, namelen);
  200. buf[namelen] = 0;
  201. buf += namelen+1;
  202. } else
  203. {
  204. *(unsigned char *)buf = 1;
  205. buf += sizeof (char);
  206. *(unsigned char *)buf = 0;
  207. buf += sizeof (char);
  208. }
  209. *(unsigned int *)buf = 0;
  210. buf += sizeof (int);
  211. #ifdef __SP_SOURCE
  212. if ((namelen = strlen (pc->channel_name)) >= CHNLURL_LEN)
  213. namelen = CHNLURL_LEN - 1;
  214. *(unsigned char *)buf = namelen;
  215. buf += sizeof (char);
  216. memcpy (buf, pc->channel_name, namelen);
  217. buf[namelen] = 0;
  218. buf += namelen+1;
  219. #endif
  220. #ifdef __CP_SOURCE
  221. if ((namelen = strlen (media[i].channel_name)) >= CHNLURL_LEN)
  222. namelen = CHNLURL_LEN - 1;
  223. *(unsigned char *)buf = namelen;
  224. buf += sizeof (char);
  225. memcpy (buf, media[i].channel_name, namelen);
  226. buf[namelen] = 0;
  227. buf += namelen+1;
  228. #endif
  229. *(int *)buffer = buf - buffer;
  230. writeMessage (p, pc, buffer);
  231. PDEBUG ("send media succeed.n");
  232. }
  233. void sendMedia (struct Session *p, struct Channel *pc)
  234. {
  235. int i;
  236. struct LiveChannelInfo *pcinfo = pc->pcinfo;
  237. if (pcinfo == NULL || pcinfo->media == NULL) return;
  238. for (i=0; i<pcinfo->cur_channel; i++)
  239. sendHitMedia (p, pc, i, pcinfo->media[i].start, 1);
  240. }
  241. #ifdef __TEST_MEDIA
  242. main ()
  243. {
  244. struct Channel ch;
  245. struct LiveChannelInfo lch;
  246. memset (&ch, 0, sizeof (ch));
  247. memset (&lch, 0, sizeof (lch));
  248. ch.pcinfo = &lch;
  249. addMedia (&ch, 0, 100, 10, "aaaaaaaaa");
  250. if (lch.media != NULL)
  251. assert (0);
  252. lch.cur_channel = 0, lch.max_channel = 2;
  253. lch.media = calloc (2, sizeof (struct MediaData));
  254. addMedia (&ch, 0, 100, 10, "aaaaaaaaa");
  255. if (lch.media == NULL || strcmp (lch.media[0].data, "aaaaaaaaa") != 0)
  256. assert (0);
  257. addMedia (&ch, 0, 100, 10, "bbbbbbbbb");
  258. if (lch.media == NULL || strcmp (lch.media[0].data, "aaaaaaaaa") != 0
  259. || strcmp (lch.media[1].data, "bbbbbbbbb") != 0)
  260. assert (0);
  261. freeMedia (&ch);
  262. }
  263. #endif