- 论坛徽章:
- 0
|
//这是客户端- while (1)
- {
- struct in_addr addr;
- char * serverIpStr;
- char * tmpPort;
- int initFlag = 1;
- status = 0;
- timeOutCount = 0;
- if(sockId >= 0){
- safeclose(sockId);
- sockId = -1;
- sleep(1);
- }
- serverIpStr = ipSever;
- tmpPort = Port;
- for(count = 0; count < 3; count++){
- sockId = clientconnect(serverIpStr,tmpPort,Proto);
- printf("sockId: %d\n",sockId);
- if(sockId >= 0) break;
- sleep(1);
- }
- if(sockId < 0){
- printf("fail,connect ip is %s,port id %s,try times is %d NOW GO TO TRY_OTHER",serverIpStr,tmpPort,count);
- continue;
- }
- printf("success,connect ip :%s,port %s,sockId %d\n",serverIpStr,tmpPort,sockId);
- FD_ZERO(&oriSelectSet);
- FD_SET(sockId,&oriSelectSet);
- do{
- read_size = readRingShm(sem_id,shm_buff,cTemp,&read_count);
- }while(!read_size);
- while(initFlag){
- memcpy(&selectSet,&oriSelectSet,sizeof(selectSet));
- timeOut.tv_sec = 3;
- timeOut.tv_sec = 3;
- timeOut.tv_usec = 0;
- selectRvalue = select(sockId+1,NULL,&selectSet,NULL,&timeOut);
- if(selectRvalue > 0){
- timeOutCount = 0;
- if(FD_ISSET(sockId,&selectSet)){//success
- send_size = 0;
- send_count = 0;
- // do{
- read_size = readRingShm(sem_id,shm_buff,cTemp,&read_count);
- // }while(!read_size);
- //printf("read_size:%d\n",read_size);
- //char str[10];
- //memset(cTemp,sui,CARD_DATA_SIZE);
- //sui++;
- /*
- while(1){
- i_left = read_size - send_count;
- if(i_left <= 0)
- break;
- send_size = write_buffer_send(sockId,cTemp+send_count,i_left,25);
-
- if(send_size < 0){
- printf("send fail \n");
- }else if(0 == send_size){
-
- printf("send time out\n");
- usleep(2000);
- }else{
- send_count += send_size;
- if(send_count == CARD_DATA_SIZE){
- break;
- }
-
- }
- */
- send(sockId,cTemp,CARD_DATA_SIZE,0);
- //}
- close(sockId);
- }
- }else if(selectRvalue == 0){
- //timeOut
- //sleep(2);
- if(++timeOutCount >= TIMEOUT){
- printf("time out\n");
- initFlag = 0;
- }
- FD_CLR(sockId,&oriSelectSet);
- continue;
- }else{
- // system error
- if(errno != EINTR)
- printf("error sockId :%d",sockId);
- initFlag =0;
- //sleep(2);
- FD_CLR(sockId,&oriSelectSet);
- continue;
- }
- }
- }
复制代码 |
|