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

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 <sys/stat.h>
  21. #include <sys/types.h>
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <unistd.h>
  25. #define _GNU_SOURCE
  26. #include <getopt.h>
  27. #define MAX_DATA 16384
  28. struct BlockData
  29. {
  30. int id;
  31. int size;
  32. char block[MAX_DATA];
  33. };
  34. int
  35. main (int argc, char **argv)
  36. {
  37. int change = 0, size = 16384;;
  38. int i=0, j=0, c, num=1256, k=0;
  39. FILE *in=NULL, *out=NULL;
  40. struct BlockData b;
  41. char block[MAX_DATA];
  42. char buffer[MAX_DATA];
  43. char *p = block;
  44. while ((c=getopt (argc, argv, "cnv")) != -1)
  45. {
  46. switch (c)
  47. {
  48. case 'c':
  49. change = 1;
  50. break;
  51. case 'n':
  52. num = atoi (optarg);
  53. break;
  54. case 'v':
  55. default:
  56. fprintf (stderr, "%s file_to_be_changedn", argv[0]);
  57. exit (EXIT_FAILURE);
  58. }
  59. }
  60. if (change == 1)
  61. {
  62. size = sizeof (b);
  63. p = (char *)(&b);
  64. }
  65. mkdir ("CHANGED", 0777);
  66. while (1)
  67. {
  68. snprintf (buffer, sizeof(buffer), "%d", j);
  69. if ((in = fopen (buffer, "r")) == NULL)
  70. {
  71. fprintf (stderr, "%s cannot be opened.n", argv[i]);
  72. goto OUT;
  73. }
  74. while (fread (p, size, 1, in) == 1)
  75. {
  76. if (k >= num || out == NULL)
  77. {
  78. if (out != NULL) fclose (out);
  79. snprintf (buffer, MAX_DATA, "CHANGED/%d", i);
  80. if ((out = fopen (buffer, "w")) == NULL)
  81. {
  82. fprintf (stderr, "%s cannot be opened.n", buffer);
  83. perror ("fopen");
  84. fclose (in);
  85. goto OUT;
  86. }
  87. i++;
  88. k=0;
  89. }
  90. if (change)
  91. fwrite (b.block, b.size, 1, out);
  92. else
  93. fwrite (block, size, 1, out);
  94. k ++;
  95. }
  96. fclose (in);
  97. j++;
  98. }
  99. OUT:
  100. printf ("Total %d changed, saved to %d files.n", j, i);
  101. return 0;
  102. }