快速业务通道

Linux 下tcp多线程编程

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-04-02

/* 服务器端server程序 */

/* 编译命令:gcc -Wall -g -o server server.c -lpthread */

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <pthread.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <errno.h>
#include <signal.h>

#define PORT 8458
#define MAX_LISTEN 20
typedef struct MsgHead{
unsigned char type;
unsigned char BL[4];
}MH;

pthread_mutex_t mutex;
pthread_attr_t attr;

char *get_time_string(char *sbuf)
{
time_t Now;
struct tm *tm;
struct tm temp_time;

time (&Now);

tm = localtime_r(&Now, &temp_time);
sprintf(sbuf, "%.4d%.2d%.2d_%.2d%.2d%.2d",
tm->tm_year 1900, tm->tm_mon 1, tm->tm_mday,
tm->tm_hour, tm->tm_min, tm->tm_sec);

return sbuf;
}

char *GetFileName(char *filename)
{
char strTime[20];
char strFileName[64];

memset(strTime,0x00,sizeof(strTime));
memset(strFileName,0x00,sizeof(strFileName));

sleep(1);

get_time_string(strTime);

strcpy(strFileName,"rec_");
strcat(strFileName,strTime);
strcat(strFileName,".dat");

strcpy(filename,strFileName);

return filename;
}

int tcp_recv(int fd,int len, char *strRecv)
{
char *p = strRecv;
int iRet = -1,iRecvLen = -1,count = 0;
fd_set rset;
struct timeval tv;

tv.tv_sec = 0;
tv.tv_usec = 0;

while(len > 0)
{
FD_ZERO(&rset);

Empire CMS,phome.net

FD_SET(fd,&rset);

iRet = select (fd 1,&rset,NULL,NULL,&tv);
//printf("iRet = %dn",iRet);
if (iRet < 0)
{
printf("tcp select error:%sn",strerror(errno));
break;
}
else if (iRet == 0)
{
sleep(1);
continue;
}

iRecvLen = recv(fd,p,len,0);

if (iRecvLen > 0)
{
len -= iRecvLen;
p = iRecvLen;
count = iRecvLen;
}
}
return count;
}

void *recv_msg(void *clfd)
{
MH *MsgHead = NULL;
int iMHL,iBodyLen,iRet = -1,iType = -1,iRecCount = 0;
char RecvBuf[1024] = {""},sFileName[64] = {""};
int fd = *((int *)clfd);
FILE *fp = NULL;

printf("clfd=%dn",fd);
iMHL = sizeof(MH);

/* 打开一个文件用于存放sql 语句 */
pthread_mutex_lock(&mutex);
GetFileName(sFileName);
pthread_mutex_unlock(&mutex);

printf("Filename:%sn",sFileName);

if ( 0 > strlen(sFileName))
{
printf("get filename failedn");
return NULL;
}

fp = fopen(sFileName,"w ");
if (!fp)
{
printf("open file %s failed: %sn",sFileName,strerror(errno));
return NULL;
}

fprintf(fp,"%sn","set termout on");
fprintf(fp,"%sn","set feed off");

while(1)
{
memset(RecvBuf,0X00,sizeof(RecvBuf));
//Get message head
iRet = tcp_recv(fd,iMHL,RecvBuf);
if (iRet != iMHL)
{
printf(&quo

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号