免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6395 | 回复: 3
打印 上一主题 下一主题

发个在AS/400上可以跑的算CRC32的C程序 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-08-26 17:32 |只看该作者 |倒序浏览
发个在AS/400上可以跑的算CRC32的C程序

  1. /*                                                                              
  2.    CRC32F.c -- Calculate CRC32 for a file                                       
  3.    M.L.Y  2005.5                                                               
  4.                                                                                 
  5.    MODIFIED   (YYYY.MM.DD)                                                      
  6.     M.L.Y      2005.05.   -  Creation                                          
  7. */                                                                              
  8.                                                                                 
  9. #ifdef __OS400__                      /* AS/400 */                              
  10.   #include "CRC32FH"                                                            
  11. #else                                                                           
  12. # include "CRC32F.h"                                                            
  13. #endif                                                                          
  14.                                                                                 
  15. #include <stdlib.h>                                                            
  16.                                                                                 
  17. USGL CRC32Table[256] = {0, 0};                                                  
  18.                                                                                 
  19. #define CRC32_POLYNOMIAL     0xEDB88320UL                                       
  20.                                                                                 
  21. /* ------------------------------------------------------------------------- */
  22. void BuildCRC32Table(USGL aPoly)                                                
  23. /*                                                                              
  24.    构造 32 位 CRC 表                                                      
  25. */                                                                              
  26. {                                                                              
  27.   int  i;                                                                       
  28.   int  j;                                                                       
  29.   USGL crc;                                                                     
  30.                                                                                 
  31.   for(i = 0; i <= 255 ; i++)                                                   
  32.   {                                                                             
  33.     crc = i;                                                                    
  34.     for(j = 8 ; j > 0; j--)                                                     
  35.     {                                                                           
  36.       if(crc & 1)                                                               
  37.         crc = (crc >> 1) ^ aPoly;                                               
  38.       else                                                                     
  39.         crc >>= 1;                                                              
  40.     }                                                                           
  41.     CRC32Table[i] = crc;                                                        
  42.   }                                                                             
  43. }                                                                              
  44.                                                                                 
  45. /* ------------------------------------------------------------------------- */
  46. USGL CalculateBufferCRC32(void *buffer, USGI count, USGL crc)                  
  47. {                                                                              
  48.   USGC *p;                                                                     
  49.   USGL temp1;                                                                  
  50.   USGL temp2;                                                                  
  51.                                                                                 
  52.   if(CRC32Table[1] == 0)                                                        
  53.     BuildCRC32Table(CRC32_POLYNOMIAL);                                          
  54.   p = (USGC*) buffer;                                                           
  55.   while(count-- != 0)                                                           
  56.   {                                                                             
  57.     temp1 = (crc >> 8) & 0x00FFFFFFUL;                                          
  58.     temp2 = CRC32Table[((int) crc ^ *p++) & 0xff];                              
  59.     crc = temp1 ^ temp2;                                                        
  60.   }                                                                             
  61.   return crc;                                                                  
  62. }                                                                              
  63.                                                                                 
  64. /* ------------------------------------------------------------------------- */
  65. USGL CalculateFileCRC32(FILE *fp)                                               
  66. {                                                                              
  67.   USGL crc;                                                                     
  68.   int  count;                                                                  
  69.   USGC buffer[512];                                                            
  70.                                                                                 
  71.   crc = 0xFFFFFFFFUL;                                                           
  72.   for( ; ;)                                                                     
  73.   {                                                                             
  74.     count = fread(buffer, 1, 512, fp);                                          
  75.     if(count == 0)                                                              
  76.       break;                                                                    
  77.     crc = CalculateBufferCRC32(buffer, count, crc);                             
  78.   }                                                                             
  79.   return(crc ^= 0xFFFFFFFFUL);                                                  
  80. }                                                                              
  81.                                                                                 
  82. /* ------------------------------------------------------------------------- */
  83. USGL CalculateStringCRC32(void *buffer, USGI len)                              
  84. /*                                                                              
  85.    计算字符串的 32 位 CRC 值                                             
  86. */                                                                              
  87. {                                                                              
  88.   USGL crc;                                                                     
  89.                                                                                 
  90.   if(CRC32Table[1] == 0)                                                        
  91.     BuildCRC32Table(CRC32_POLYNOMIAL);                                          
  92.   crc = 0xFFFFFFFFUL;                                                           
  93.   crc = CalculateBufferCRC32(buffer, len, crc);                                 
  94.   return (crc ^= 0xFFFFFFFFUL);                                                
  95. }                                                                              
  96.                                                                                 
  97. /* ------------------------------------------------------------------------- */
  98. int  DispFileCRC32(char *filename)                                             
  99. {                                                                              
  100.   FILE *fp;                                                                     
  101.   USGL crc;                                                                     
  102.                                                                                 
  103.   fp = fopen(filename, "rb");                                                   
  104.   if(fp == NULL )                                                               
  105.   {                                                                             
  106.     printf("Error: could not open file %s!\n", filename);                       
  107.     return -1;                                                                  
  108.   }                                                                             
  109.   crc = CalculateFileCRC32(fp);                                                
  110.   fclose(fp);                                                                  
  111.   printf("CRC32: %08lX\n", crc);                                                
  112.   return 0;                                                                     
  113. }                                                                              
  114.                                                                                 
  115. /* ------------------------------------------------------------------------- */
  116. long filesize(FILE *stream)                                                     
  117. {                                                                              
  118.   long curpos, length;                                                         
  119.                                                                                 
  120.   curpos = ftell(stream);                                                      
  121.   fseek(stream, 0L, SEEK_END);                                                  
  122.   length = ftell(stream);                                                      
  123.   fseek(stream, curpos, SEEK_SET);                                             
  124.   return length;                                                               
  125. }                                                                              
  126.                                                                                 
  127. /* ------------------------------------------------------------------------- */
  128. int  FileCRC32(char *filename)                                                  
  129. {                                                                              
  130.   FILE *fp;                                                                     
  131.   USGL crc;                                                                     
  132.   char *str;                                                                    
  133.   USGI flen;                                                                    
  134.                                                                                 
  135.   fp = fopen(filename, "rb");                                                   
  136.   if(fp == NULL )                                                               
  137.   {                                                                             
  138.     printf("Error: could not open file %s!\n", filename);                       
  139.     return -1;                                                                  
  140.   }                                                                             
  141.   flen = filesize(fp);                                                         
  142.   /* allocate memory for string */                                             
  143.   if((str = (char *) malloc((USGI)flen)) == NULL)                              
  144.   {                                                                             
  145.     printf("Not enough memory to allocate buffer\n");                           
  146.     fclose(fp);                                                                 
  147.     exit(1);  /* terminate program if out of memory */                          
  148.   }                                                                             
  149.   fread(str, 1, flen, fp);                                                      
  150.   fclose(fp);                                                                  
  151.   crc = CalculateStringCRC32(str, flen);                                       
  152.   printf("string CRC32: %08lX\n", crc);                                         
  153.   /* free memory */                                                            
  154.   free(str);                                                                    
  155.   return 0;                                                                     
  156. }                                                                              
  157.                                                                                 
  158. /* ------------------------------------------------------------------------- */
  159. int  main(int argc, char *argv[])                                               
  160. {                                                                              
  161.   printf("CRC32F -- 计算文件的 CRC32 值\n");                                
  162.   if(argc != 2)                                                                 
  163.   {                                                                             
  164.     printf("用法:CRC32F 文件名\n");                                       
  165.     return 1;                                                                  
  166.   }                                                                             
  167.   printf("\nCalculating ...\n");                                                
  168.   DispFileCRC32(argv[1]);                                                      
  169.   FileCRC32(argv[1]);                                                           
  170.   return 0;                                                                     
  171. }                                                                              
  172.                                                                                 
  173. /* End of file */                                                               

复制代码

[ 本帖最后由 ux400 于 2008-8-26 17:57 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2008-08-26 17:33 |只看该作者
头文件:

  1. /*                                                                              
  2.    CRC32F.h -- Calculate CRC32 for a file                                       
  3.    M.L.Y  2005.5                                                               
  4.                                                                                 
  5.    MODIFIED   (YYYY.MM.DD)                                                      
  6.     M.L.Y      2005.05.   -  Creation                                          
  7. */                                                                              
  8.                                                                                 
  9. #ifndef  USG_TYPE                                                               
  10. # define USG_TYPE                                                               
  11.   typedef unsigned char  USGC;                                                  
  12.   typedef unsigned short USGS;                                                  
  13.   typedef unsigned int   USGI;                                                  
  14.   typedef unsigned long  USGL;                                                  
  15. #endif                                                                          
  16.                                                                                 
  17. #include <stdio.h>                                                              
  18.                                                                                 
  19. void BuildCRC32Table(USGL aPoly);                                               
  20. USGL CalculateBufferCRC32(void *buffer, USGI count, USGL crc);                  
  21. USGL CalculateFileCRC32(FILE *file);                                            
  22. USGL CalculateStringCRC32(void *buffer, USGI len);                              
  23. int  DispFileCRC32(char *filename);                                             
  24.                                                                                 
  25. /* End of file */                                                               

复制代码

[ 本帖最后由 ux400 于 2008-8-26 17:58 编辑 ]

论坛徽章:
0
3 [报告]
发表于 2008-08-26 17:35 |只看该作者
论坛中“crc; ”竟然会变成斜体?

论坛徽章:
0
4 [报告]
发表于 2008-08-26 17:59 |只看该作者
原来要用 code  标签
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP