mkg3states.c
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:9k
源码类别:

打印编程

开发平台:

Visual C++

  1. /* "$Id: mkg3states.c,v 1.9 2004/10/10 11:46:16 dron Exp $ */
  2. /*
  3.  * Copyright (c) 1991-1997 Sam Leffler
  4.  * Copyright (c) 1991-1997 Silicon Graphics, Inc.
  5.  *
  6.  * Permission to use, copy, modify, distribute, and sell this software and 
  7.  * its documentation for any purpose is hereby granted without fee, provided
  8.  * that (i) the above copyright notices and this permission notice appear in
  9.  * all copies of the software and related documentation, and (ii) the names of
  10.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  11.  * publicity relating to the software without the specific, prior written
  12.  * permission of Sam Leffler and Silicon Graphics.
  13.  * 
  14.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  15.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  16.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  17.  * 
  18.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  19.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  20.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  21.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  22.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  23.  * OF THIS SOFTWARE.
  24.  */
  25. /* Initialise fax decoder tables
  26.  * Decoder support is derived, with permission, from the code
  27.  * in Frank Cringle's viewfax program;
  28.  *      Copyright (C) 1990, 1995  Frank D. Cringle.
  29.  */
  30. #include "tif_config.h.in"
  31. #include <getopt.h>
  32. #include <stdio.h>
  33. #include <stdlib.h>
  34. #include <string.h>
  35. #ifdef HAVE_UNISTD_H
  36. # include <unistd.h>
  37. #endif
  38. #include "tif_fax3.h"
  39. #define streq(a,b) (strcmp(a,b) == 0)
  40. /* NB: can't use names in tif_fax3.h 'cuz they are declared const */
  41. TIFFFaxTabEnt MainTable[128];
  42. TIFFFaxTabEnt WhiteTable[4096];
  43. TIFFFaxTabEnt BlackTable[8192];
  44. struct proto {
  45.     uint16 code; /* right justified, lsb-first, zero filled */
  46.     uint16 val; /* (pixel count)<<4 + code width  */
  47. };
  48. static struct proto Pass[] = {
  49. { 0x0008, 4 },
  50. { 0, 0 }
  51. };
  52. static struct proto Horiz[]  = {
  53. { 0x0004, 3 },
  54. { 0, 0 }
  55. };
  56. static struct proto V0[]  = {
  57. { 0x0001, 1 },
  58. { 0, 0 }
  59. };
  60. static struct proto VR[]  = {
  61. { 0x0006, (1<<4)+3 },
  62. { 0x0030, (2<<4)+6 },
  63. { 0x0060, (3<<4)+7 },
  64. { 0, 0 }
  65. };
  66. static struct proto VL[]  = {
  67. { 0x0002, (1<<4)+3 },
  68. { 0x0010, (2<<4)+6 },
  69. { 0x0020, (3<<4)+7 },
  70. { 0, 0 }
  71. };
  72. static struct proto Ext[]  = {
  73. { 0x0040, 7 },
  74. { 0, 0 }
  75. };
  76. static struct proto EOLV[]  = {
  77. { 0x0000, 7 },
  78. { 0, 0 }
  79. };
  80. static struct proto MakeUpW[] = {
  81. { 0x001b, 1029 },
  82. { 0x0009, 2053 },
  83. { 0x003a, 3078 },
  84. { 0x0076, 4103 },
  85. { 0x006c, 5128 },
  86. { 0x00ec, 6152 },
  87. { 0x0026, 7176 },
  88. { 0x00a6, 8200 },
  89. { 0x0016, 9224 },
  90. { 0x00e6, 10248 },
  91. { 0x0066, 11273 },
  92. { 0x0166, 12297 },
  93. { 0x0096, 13321 },
  94. { 0x0196, 14345 },
  95. { 0x0056, 15369 },
  96. { 0x0156, 16393 },
  97. { 0x00d6, 17417 },
  98. { 0x01d6, 18441 },
  99. { 0x0036, 19465 },
  100. { 0x0136, 20489 },
  101. { 0x00b6, 21513 },
  102. { 0x01b6, 22537 },
  103. { 0x0032, 23561 },
  104. { 0x0132, 24585 },
  105. { 0x00b2, 25609 },
  106. { 0x0006, 26630 },
  107. { 0x01b2, 27657 },
  108. { 0, 0 }
  109. };
  110. static struct proto MakeUpB[] = {
  111. { 0x03c0, 1034 },
  112. { 0x0130, 2060 },
  113. { 0x0930, 3084 },
  114. { 0x0da0, 4108 },
  115. { 0x0cc0, 5132 },
  116. { 0x02c0, 6156 },
  117. { 0x0ac0, 7180 },
  118. { 0x06c0, 8205 },
  119. { 0x16c0, 9229 },
  120. { 0x0a40, 10253 },
  121. { 0x1a40, 11277 },
  122. { 0x0640, 12301 },
  123. { 0x1640, 13325 },
  124. { 0x09c0, 14349 },
  125. { 0x19c0, 15373 },
  126. { 0x05c0, 16397 },
  127. { 0x15c0, 17421 },
  128. { 0x0dc0, 18445 },
  129. { 0x1dc0, 19469 },
  130. { 0x0940, 20493 },
  131. { 0x1940, 21517 },
  132. { 0x0540, 22541 },
  133. { 0x1540, 23565 },
  134. { 0x0b40, 24589 },
  135. { 0x1b40, 25613 },
  136. { 0x04c0, 26637 },
  137. { 0x14c0, 27661 },
  138. { 0, 0 }
  139. };
  140. static struct proto MakeUp[] = {
  141. { 0x0080, 28683 },
  142. { 0x0180, 29707 },
  143. { 0x0580, 30731 },
  144. { 0x0480, 31756 },
  145. { 0x0c80, 32780 },
  146. { 0x0280, 33804 },
  147. { 0x0a80, 34828 },
  148. { 0x0680, 35852 },
  149. { 0x0e80, 36876 },
  150. { 0x0380, 37900 },
  151. { 0x0b80, 38924 },
  152. { 0x0780, 39948 },
  153. { 0x0f80, 40972 },
  154. { 0, 0 }
  155. };
  156. static struct proto TermW[] = {
  157. { 0x00ac, 8 },
  158. { 0x0038, 22 },
  159. { 0x000e, 36 },
  160. { 0x0001, 52 },
  161. { 0x000d, 68 },
  162. { 0x0003, 84 },
  163. { 0x0007, 100 },
  164. { 0x000f, 116 },
  165. { 0x0019, 133 },
  166. { 0x0005, 149 },
  167. { 0x001c, 165 },
  168. { 0x0002, 181 },
  169. { 0x0004, 198 },
  170. { 0x0030, 214 },
  171. { 0x000b, 230 },
  172. { 0x002b, 246 },
  173. { 0x0015, 262 },
  174. { 0x0035, 278 },
  175. { 0x0072, 295 },
  176. { 0x0018, 311 },
  177. { 0x0008, 327 },
  178. { 0x0074, 343 },
  179. { 0x0060, 359 },
  180. { 0x0010, 375 },
  181. { 0x000a, 391 },
  182. { 0x006a, 407 },
  183. { 0x0064, 423 },
  184. { 0x0012, 439 },
  185. { 0x000c, 455 },
  186. { 0x0040, 472 },
  187. { 0x00c0, 488 },
  188. { 0x0058, 504 },
  189. { 0x00d8, 520 },
  190. { 0x0048, 536 },
  191. { 0x00c8, 552 },
  192. { 0x0028, 568 },
  193. { 0x00a8, 584 },
  194. { 0x0068, 600 },
  195. { 0x00e8, 616 },
  196. { 0x0014, 632 },
  197. { 0x0094, 648 },
  198. { 0x0054, 664 },
  199. { 0x00d4, 680 },
  200. { 0x0034, 696 },
  201. { 0x00b4, 712 },
  202. { 0x0020, 728 },
  203. { 0x00a0, 744 },
  204. { 0x0050, 760 },
  205. { 0x00d0, 776 },
  206. { 0x004a, 792 },
  207. { 0x00ca, 808 },
  208. { 0x002a, 824 },
  209. { 0x00aa, 840 },
  210. { 0x0024, 856 },
  211. { 0x00a4, 872 },
  212. { 0x001a, 888 },
  213. { 0x009a, 904 },
  214. { 0x005a, 920 },
  215. { 0x00da, 936 },
  216. { 0x0052, 952 },
  217. { 0x00d2, 968 },
  218. { 0x004c, 984 },
  219. { 0x00cc, 1000 },
  220. { 0x002c, 1016 },
  221. { 0, 0 }
  222. };
  223. static struct proto TermB[] = {
  224. { 0x03b0, 10 },
  225. { 0x0002, 19 },
  226. { 0x0003, 34 },
  227. { 0x0001, 50 },
  228. { 0x0006, 67 },
  229. { 0x000c, 84 },
  230. { 0x0004, 100 },
  231. { 0x0018, 117 },
  232. { 0x0028, 134 },
  233. { 0x0008, 150 },
  234. { 0x0010, 167 },
  235. { 0x0050, 183 },
  236. { 0x0070, 199 },
  237. { 0x0020, 216 },
  238. { 0x00e0, 232 },
  239. { 0x0030, 249 },
  240. { 0x03a0, 266 },
  241. { 0x0060, 282 },
  242. { 0x0040, 298 },
  243. { 0x0730, 315 },
  244. { 0x00b0, 331 },
  245. { 0x01b0, 347 },
  246. { 0x0760, 363 },
  247. { 0x00a0, 379 },
  248. { 0x0740, 395 },
  249. { 0x00c0, 411 },
  250. { 0x0530, 428 },
  251. { 0x0d30, 444 },
  252. { 0x0330, 460 },
  253. { 0x0b30, 476 },
  254. { 0x0160, 492 },
  255. { 0x0960, 508 },
  256. { 0x0560, 524 },
  257. { 0x0d60, 540 },
  258. { 0x04b0, 556 },
  259. { 0x0cb0, 572 },
  260. { 0x02b0, 588 },
  261. { 0x0ab0, 604 },
  262. { 0x06b0, 620 },
  263. { 0x0eb0, 636 },
  264. { 0x0360, 652 },
  265. { 0x0b60, 668 },
  266. { 0x05b0, 684 },
  267. { 0x0db0, 700 },
  268. { 0x02a0, 716 },
  269. { 0x0aa0, 732 },
  270. { 0x06a0, 748 },
  271. { 0x0ea0, 764 },
  272. { 0x0260, 780 },
  273. { 0x0a60, 796 },
  274. { 0x04a0, 812 },
  275. { 0x0ca0, 828 },
  276. { 0x0240, 844 },
  277. { 0x0ec0, 860 },
  278. { 0x01c0, 876 },
  279. { 0x0e40, 892 },
  280. { 0x0140, 908 },
  281. { 0x01a0, 924 },
  282. { 0x09a0, 940 },
  283. { 0x0d40, 956 },
  284. { 0x0340, 972 },
  285. { 0x05a0, 988 },
  286. { 0x0660, 1004 },
  287. { 0x0e60, 1020 },
  288. { 0, 0 }
  289. };
  290. static struct proto EOLH[] = {
  291. { 0x0000, 11 },
  292. { 0, 0 }
  293. };
  294. static void
  295. FillTable(TIFFFaxTabEnt *T, int Size, struct proto *P, int State)
  296. {
  297.     int limit = 1 << Size;
  298.     while (P->val) {
  299. int width = P->val & 15;
  300. int param = P->val >> 4;
  301. int incr = 1 << width;
  302. int code;
  303. for (code = P->code; code < limit; code += incr) {
  304.     TIFFFaxTabEnt *E = T+code;
  305.     E->State = State;
  306.     E->Width = width;
  307.     E->Param = param;
  308. }
  309. P++;
  310.     }
  311. }
  312. static char* storage_class = "";
  313. static char* const_class = "";
  314. static int packoutput = 1;
  315. static char* prebrace = "";
  316. static char* postbrace = "";
  317. void
  318. WriteTable(FILE* fd, const TIFFFaxTabEnt* T, int Size, const char* name)
  319. {
  320.     int i;
  321.     char* sep;
  322.     fprintf(fd, "%s %s TIFFFaxTabEnt %s[%d] = {",
  323. storage_class, const_class, name, Size);
  324.     if (packoutput) {
  325. sep = "n";
  326. for (i = 0; i < Size; i++) {
  327.     fprintf(fd, "%s%s%d,%d,%d%s",
  328. sep, prebrace, T->State, T->Width, (int) T->Param, postbrace);
  329.     if (((i+1) % 10) == 0)
  330.     sep = ",n";
  331.     else
  332.     sep = ",";
  333.     T++;
  334. }
  335.     } else {
  336. sep = "n ";
  337. for (i = 0; i < Size; i++) {
  338.     fprintf(fd, "%s%s%3d,%3d,%4d%s",
  339. sep, prebrace, T->State, T->Width, (int) T->Param, postbrace);
  340.     if (((i+1) % 6) == 0)
  341.     sep = ",n ";
  342.     else
  343.     sep = ",";
  344.     T++;
  345. }
  346.     }
  347.     fprintf(fd, "n};n");
  348. }
  349. /* initialise the huffman code tables */
  350. int
  351. main(int argc, char* argv[])
  352. {
  353.     FILE* fd;
  354.     char* outputfile;
  355.     int c;
  356.     extern int optind;
  357.     extern char* optarg;
  358.     while ((c = getopt(argc, argv, "c:s:bp")) != -1)
  359. switch (c) {
  360. case 'c':
  361.     const_class = optarg;
  362.     break;
  363. case 's':
  364.     storage_class = optarg;
  365.     break;
  366. case 'p':
  367.     packoutput = 0;
  368.     break;
  369. case 'b':
  370.     prebrace = "{";
  371.     postbrace = "}";
  372.     break;
  373. case '?':
  374.     fprintf(stderr,
  375. "usage: %s [-c const] [-s storage] [-p] [-b] filen",
  376. argv[0]);
  377.     return (-1);
  378. }
  379.     outputfile =(char *)( optind < argc ? argv[optind] : "g3states.h");
  380.     fd = fopen(outputfile, "w");
  381.     if (fd == NULL) {
  382. fprintf(stderr, "%s: %s: Cannot create output file.n",
  383.     argv[0], outputfile);
  384. return (-2);
  385.     }
  386.     FillTable(MainTable, 7, Pass, S_Pass);
  387.     FillTable(MainTable, 7, Horiz, S_Horiz);
  388.     FillTable(MainTable, 7, V0, S_V0);
  389.     FillTable(MainTable, 7, VR, S_VR);
  390.     FillTable(MainTable, 7, VL, S_VL);
  391.     FillTable(MainTable, 7, Ext, S_Ext);
  392.     FillTable(MainTable, 7, EOLV, S_EOL);
  393.     FillTable(WhiteTable, 12, MakeUpW, S_MakeUpW);
  394.     FillTable(WhiteTable, 12, MakeUp, S_MakeUp);
  395.     FillTable(WhiteTable, 12, TermW, S_TermW);
  396.     FillTable(WhiteTable, 12, EOLH, S_EOL);
  397.     FillTable(BlackTable, 13, MakeUpB, S_MakeUpB);
  398.     FillTable(BlackTable, 13, MakeUp, S_MakeUp);
  399.     FillTable(BlackTable, 13, TermB, S_TermB);
  400.     FillTable(BlackTable, 13, EOLH, S_EOL);
  401.     fprintf(fd, "/* WARNING, this file was automatically generated by then");
  402.     fprintf(fd, "    mkg3states program */n");
  403.     fprintf(fd, "#include "tiff.h"n");
  404.     fprintf(fd, "#include "tif_fax3.h"n");
  405.     WriteTable(fd, MainTable, 128, "TIFFFaxMainTable");
  406.     WriteTable(fd, WhiteTable, 4096, "TIFFFaxWhiteTable");
  407.     WriteTable(fd, BlackTable, 8192, "TIFFFaxBlackTable");
  408.     fclose(fd);
  409.     return (0);
  410. }
  411. /* vim: set ts=8 sts=8 sw=8 noet: */