File: packager.c

package info (click to toggle)
arj 3.10.22-15
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,396 kB
  • sloc: ansic: 32,993; makefile: 2,033; sh: 1,547; asm: 436
file content (478 lines) | stat: -rw-r--r-- 13,520 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
/*
 * $Id: packager.c,v 1.10 2004/04/17 11:39:43 andrew_belov Exp $
 * ---------------------------------------------------------------------------
 * ARJ distribution packaging tool.
 *
 */

#include "arj.h"
#include "arjdata.h"

#if TARGET==UNIX
#include <unistd.h>
#endif

#define P PATHSEP_DEFSTR                /* Dirty hack for compaction */

#if TARGET==UNIX
 #define REGWIZ       "arj-register"
#else
 #define REGWIZ           "register"
#endif

/* mkdir() macro */

#if TARGET==UNIX||defined(__EMX__)
 #define md(p) mkdir(p, 0755)
#else
 #define md(p) mkdir(p)
#endif

static char strform[]="%s";
static char sfx_name[16];
static char buf[2048];
static char l_nullstr[]="";

/* Q&D tolower() */

static void arj_strlwr(char *str)
{
 char p;

 while((p=*str)!='\0')
 {
  if(p>='A'&&p<='Z')
  {
   p+=32;
   *str=p;
  }
  str++;
 }
}

/* A smart fopen() */

static FILE *s_fopen(char *name, char *mode)
{
 FILE *rc;

 if((rc=fopen(name, mode))==NULL)
 {
  printf("Can't open %s\n", name);
  exit(2);
 }
 return(rc);
}

/* Line-by-line output routine. Involves macro expansion. */

static void out_line(FILE *stream, char *str)
{
 strcpyn(buf, str, sizeof(buf));
 expand_tags(buf, sizeof(buf));
 fprintf(stream, strform, buf);
}

/* Transfer a file, expanding the tags */

static void transfer_file(char *dest, char *src)
{
 FILE *istream;
 FILE *ostream;

 istream=s_fopen(src, "r");
 ostream=s_fopen(dest, "w");
 while(fgets(buf, sizeof(buf), istream))
 {
  expand_tags(buf, sizeof(buf));
  fputs(buf, ostream);
 }
 fclose(istream);
 fclose(ostream);
}

/* Packages a binary or other file, transforming to a UNIX-style path */

#if TARGET==UNIX
static void package_unix(FILE *stream, char *name, char *trunk, char *realpath, char *unixpath)
{
 char realname[CCHMAXPATH], unixname[CCHMAXPATH];

 /* Compose the trunk path, e.g. "freebsd3.4/en/rc/" */
 strcpy(realname, trunk);
 strcpy(unixname, trunk);
 strcat(realname, P);
 strcat(unixname, P);
 /* Now, make "freebsd3.4/en/rc/arj" and "freebsd3.4/en/rc/u/bin" */
 strcat(realname, realpath);    /* arj */
 if(realpath[0]!='\0')
  strcat(realname, P);
 strcat(unixname, "u");         /* u */
 md(unixname);
 strcat(unixname, P);
 strcat(unixname, unixpath);    /* u/bin */
 md(unixname);
 strcat(unixname, P);
 /* Append the names */
 strcat(realname, name);
 strcat(unixname, name);
 unlink(unixname);
 if(link(realname, unixname))
 {
  printf("Failed to link <%s> to <%s>\n", realname, unixname);
  exit(1);
 }
 fprintf(stream, "%s" P "%s\n", unixpath, name);
}

#endif

/* Arranges text file packaging (realpath -> resource, trunk -> compiler/en/rc/...) */

static void package_txt(FILE *stream, char *name, char *trunk, char *realpath, char *unixpath)
{
 char tmp_name[CCHMAXPATH], realname[CCHMAXPATH];
 char *p;

 strcpy(tmp_name, trunk);
 strcat(tmp_name, P);
 strcat(tmp_name, name);
 strcpy(realname, realpath);
 strcat(realname, P);
 strcat(realname, name);
 transfer_file(tmp_name, realname);
 #if TARGET==UNIX
  package_unix(stream, name, trunk, "", unixpath);
 #else
  fprintf(stream, "%s\n", tmp_name);
 #endif
}

/* Arranges binary file packaging (realpath -> arj, trunk -> compiler/en/rc/...) */

static void package_bin(FILE *stream, char *name, char *trunk, char *realpath, char *unixpath)
{
 #if TARGET==UNIX
  package_unix(stream, name, trunk, realpath, unixpath);
 #else
  fprintf(stream, "%s" P "%s" P "%s\n", trunk, realpath, name);
 #endif
}

/* Comment creation routine */

static void create_cmt(char *dest)
{
 FILE *stream;
 /* Output path tricks */
 #if TARGET==UNIX
  char subdir[]="/usr/local/";
 #elif TARGET==OS2
  char subdir[]="C:" P "ARJ" P "OS2" P; /* Historical (since ARJ/2 v 2.61) */
 #elif TARGET==DOS||TARGET==WIN32
  char subdir[]="C:" P "ARJ" P;
 #endif
 char tmp_str[128], out_str[128];
 int i, l;

 stream=s_fopen(dest, "w");
 fprintf(stream, ")) %s -m -b -x\n\n", subdir);
 /* Version string */
 sprintf(tmp_str, "%s",
 #if LOCALE==LANG_en
  #if TARGET==DOS
   "ARJ v @VERSION manufacturing refresh by ARJ Software Russia  All rights reserved"
  #else
   "@PRODUCT v @VERSION, (c) 1998-@{y}, ARJ Software Russia. All rights reserved."
  #endif
 #elif LOCALE==LANG_de
  #if TARGET==DOS
   "ARJ @VERSION Produktionsauffrischung, ARJ Software Russia  Alle Rechte vorbehalten"
  #else
   "ARJ fr @PLATFORM @VERSION (c) 1998-@{y}, ARJ Software Russia. Alle Rechte vorbehalten."
  #endif
 #elif LOCALE==LANG_ru
  "ARJ v @VERSION, (c) 1998-@{y}, ARJ Software Russia."
 #endif
 );
 expand_tags(tmp_str, sizeof(tmp_str));
 sprintf(out_str, "@{c40}%s@{_}\n", tmp_str);
 out_line(stream, out_str);
 l=strlen(tmp_str);
 for(i=0; i<l; i++)
  tmp_str[i]='_';
 sprintf(out_str, "@{c40}%s@{_}\n", tmp_str);
 out_line(stream, out_str);
 out_line(stream, "\n");
 /* Distribution area */
 #ifndef DEBUG
  sprintf(tmp_str, "@{c40}%s@{_}\n",
  #if LOCALE==LANG_en
   "*** For World-wide use and distribution ***"
  #elif LOCALE==LANG_de
   "*** Fr weltweiten Einsatz und Vertrieb ***"
  #elif LOCALE==LANG_ru
   /* All correct here, Russian NLV contains strong encryption so we limit it
      to domestic distribution */
   "***  ࠭  ਨ  ***"
  #endif
  );
 #endif
 /* Intro */
 out_line(stream,
  "\n"
 #if LOCALE==LANG_en
  "  ARJ is a disk space saving file archiver with many file management functions."
 #elif LOCALE==LANG_de
  "  ARJ archiviert Dateien in Speicherplatz sparende, komprimierte Archive."
 #elif LOCALE==LANG_ru
  "  ARJ - ணࠬ   娢 (஢ ᦠ 䠩)."
 #endif
 "\n\n"
 );
 /* Feature list */
 out_line(stream,
 #if LOCALE==LANG_en
  "  NEW FEATURES OF ARJ INCLUDE:\n"
  "\n"
  "  Native versions for UNIX-like operating systems.\n"
  "  Support for archiving more than 65000 files.\n"
  "  ARJ self-extractor post extraction command execution option.\n"
  "  ARJ self-extractor automatic password prompt for garbled archives.\n"
  "  Option to select files with long filenames within an archive.\n"
  "  Handling of file ownership, UNIX special files, EAs and file access time.\n"
 #elif LOCALE==LANG_de
  /* BUGBUG: update this! */
  "  NEUE FUNKTIONEN VON ARJ BEINHALTEN:\n"
  "\n"
  "  ARJ Selbst-Entpacker Post-Entpack-Programmaufruf Mglichkeit.\n"
  "  ARJ Selbst-Entpacker automatische Passwort-Eingabe fr geschtzte Archive.\n"
  "  Mglichkeit Dateien mit langem Dateinamen in einem Archiv auszuwhlen.\n"
  "  Untersttzung erweiterter Attribute und Zeitstempel.\n"
 #elif LOCALE==LANG_ru
  "    ARJ   :\n"
  "\n"
  "  ᨨ  樮 ⥬ ᥬ⢠ UNIX\n"
  "  娢  65000 䠩\n"
  "   䨪樨 祩  ᠬᯠ뢠 娢.\n"
  "  ⮬᪨  ஫  ࠡ  ஢묨 䠩.\n"
  "    ⡮ 䠩  묨   娢.\n"
  #if TARGET==DOS
   "  প  , ७ ਡ⮢  ᯥ樠 䠩 UNIX.\n"
  #elif TARGET==OS2
   "  প ᯥ樠 䠩  ਡ⮢ UNIX, EA   㯠  䠩.\n"
  #endif
 #endif
  "\n"
 );
 /* Packaging hints */
 out_line(stream,
 #if LOCALE==LANG_en
  "  This is a self-extracting archive. Run it to extract all files.\n"
  "  The file names in this archive are the same as in ARJ @COUNTERPARTS for DOS.\n"
 #elif LOCALE==LANG_de
  "  Dies ist ein selbst-entpackendes Archiv-'ARJ2G281' zum Entpacken aller Dateien.\n"
  "  Die Dateinamen in diesem Archiv sind die gleichen, wie in ARJ @COUNTERPARTS fr DOS.\n"
 #elif LOCALE==LANG_ru
  "   ᠬᯠ뢠騩 娢.  , ⮡ ᯠ  䠩.\n"
  "    娢 ᮢ    ARJ v @COUNTERPARTS  DOS.\n"
 #endif
 );
 /* README hint */
 out_line(stream,
 #if LOCALE==LANG_en
  "  Please read README.TXT and @PLATFORM_FN.TXT for important update information!\n"
 #elif LOCALE==LANG_de
  "  Bitte die README.TXT fr wichtige Informationen zum Update lesen!\n"
 #elif LOCALE==LANG_ru
  "   ଠ   ᮤন  䠩 README.TXT  @PLATFORM_FN.TXT\n"
 #endif
 );
 fclose(stream);
}

/* Main routine */

int main(int argc, char **argv)
{
 #ifndef COMMERCIAL
  char family_tag[]="arj";
 #else
  char family_tag[]="com";
 #endif
 #if TARGET==DOS
  char os_tag='_';
 #elif TARGET==OS2
  char os_tag='2';
 #elif TARGET==WIN32
  char os_tag='w';
 #elif defined(linux)
  char os_tag='l';
 #elif defined(__FreeBSD__)
  char os_tag='f';
 #elif defined(__QNXNTO__)
  char os_tag='q';
 #elif defined(SUNOS)
  char os_tag='s';
 #else
  char os_tag='x';
 #endif
 #if LOCALE==LANG_en
  char lang_tag='_';
 #elif LOCALE==LANG_fr
  char lang_tag='f';
 #elif LOCALE==LANG_de
  char lang_tag='g';
 #elif LOCALE==LANG_ru
  char lang_tag='r';
 #endif
 char version_tag[8];
 char *p, *pname, *ppath;
 FILE *istream, *ostream;
 static char pkg_rsp_draft[CCHMAXPATH], pkg_rsp[CCHMAXPATH];
 static char tmp_name[CCHMAXPATH];
 static char cmdline[CMDLINE_MAX], arj_cmds[CMDLINE_MAX];
 char platform_specific[CCHMAXPATH];

 printf("PACKAGER v 2.15c  [27/06/2003]  Not a part of any binary package!\n\n");
 if(argc<3)
 {
  printf("Usage: PACKAGER <builder directory> <work directory>,\n"
         "       e.g, PACKAGER msc6_os2/en/rc/arj msc6_os2/en/ds/arj\n"
         "\n"
         "This program finalizes the resources and performs packaging of the given brach.\n");
  exit(1);
 }
 strcpy(buf, "@VERSION");
 expand_tags(buf, sizeof(buf)-1);
 if((p=strchr(buf, '.'))!=NULL)
 {
  safe_strcpy(p, p+1);
  if((p=strchr(buf, '.'))!=NULL)
   *p='\0';
 }
 memset(version_tag, 0, sizeof(version_tag));
 memcpy(version_tag, buf, 3);
 sprintf(pkg_rsp_draft, "%s" P "pkg_dft.rsp", argv[2]);
 sprintf(pkg_rsp, "%s" P "pkg.rsp", argv[2]);
 sprintf(tmp_name, "%s" P "cmt.txt", argv[2]);
 create_cmt(tmp_name);
 ostream=s_fopen(pkg_rsp_draft, "w");
 sprintf(sfx_name, "%s%c%c%s", family_tag, os_tag, lang_tag, version_tag);
 /* Flush the main line */
 #ifdef DEBUG
  #if defined(linux)
   strcpy(buf, ".lnx");
  #elif defined(__FreeBSD__)
   strcpy(buf, ".bsd");
  #elif defined(__QNXNTO__)
   strcpy(buf, ".qnx");
  #else
   buf[0]='\0';
  #endif
  strcat(buf, " -h#YYYYMMDD");          /* The classic debug by-date format */
 #else
  strcpy(buf, sfx_name);
 #endif
 #if TARGET==UNIX
  sprintf(platform_specific, "-e1 %s" P "u" P, argv[2]);
 #else
  strcpy(platform_specific, "-e");
 #endif
 /* Dispose of previous package */
 sprintf(arj_cmds, "retail" P "%s" EXE_EXTENSION, buf);
 unlink(arj_cmds);
 /* "-hz" removed - no commercial versions */
 sprintf(arj_cmds, "a -2e.*TYPE -jm -z%s -y -je -va retail" P "%s %s", tmp_name, buf, platform_specific);
 /* Create doc repository */
 #if TARGET==UNIX
  sprintf(platform_specific, "%s" P "u", argv[2]);
  md(platform_specific);
  strcat(platform_specific, P "doc");
  md(platform_specific);
 #endif
 /* Proceed with the files */
 package_bin(ostream, "arj" EXE_EXTENSION, argv[2], "arj", "bin");
 #if LOCALE==LANG_ru
  package_bin(ostream, "arjcrypt" MOD_EXTENSION, argv[2], "arjcrypt", "lib");
 #endif
 package_bin(ostream, "rearj" EXE_EXTENSION, argv[2], "rearj", "bin");
 package_bin(ostream, REGWIZ EXE_EXTENSION, argv[2], "register", "bin");
 package_bin(ostream, "arjdisp" EXE_EXTENSION, argv[2], "arjdisp", "bin");
 #if TARGET==DOS
  /* ASR 20/02/2001 -- we were supposed to divert it for various platforms but
     it remains DOS-specific as for now */
  package_txt(ostream, "rearj.cfg", argv[2], "resource", "doc");
 #elif TARGET==UNIX
  /* Provide an InfoZIP and .tar.gz-capable configuration */
  package_txt(ostream, "rearj.cfg.example", argv[2], "resource", "doc" P "arj");
 #endif
 package_txt(ostream, "readme.txt", argv[2], "resource" P LOCALE_DESC, "doc" P "arj");
 package_txt(ostream, "history.txt", argv[2], "resource"  P LOCALE_DESC, "doc" P "arj");
 strcpy(tmp_name, "@PLATFORM_FN.txt");
 expand_tags(tmp_name, sizeof(tmp_name));
 arj_strlwr(tmp_name);
 package_txt(ostream, tmp_name, argv[2], "resource" P LOCALE_DESC, "doc" P "arj");
 package_txt(ostream, "COPYING", argv[2], "doc", "doc" P "arj");
 package_txt(ostream, "file_id.diz", argv[2], "resource" P LOCALE_DESC, "doc" P "arj");
 /* Share our secrets with the debugging team */
 #ifdef DEBUG
  package_txt(ostream, "rev_hist.txt", argv[2], "doc", "doc" P "arj");
  package_txt(ostream, "debug.txt", argv[2], "doc", "doc" P "arj");
  package_txt(ostream, "glossary.txt", argv[2], "doc", "doc" P "arj");
 #endif
 fclose(ostream);
 istream=s_fopen(pkg_rsp_draft, "r");
 ostream=s_fopen(pkg_rsp, "w");
 fprintf(ostream, "%s\n", arj_cmds);
 while(fgets(buf, sizeof(buf), istream)!=NULL)
 {
  fputs(buf, ostream);
  #ifdef MAKESYM  
   if((p=strstr(buf, EXE_EXTENSION))!=NULL||
      (p=strstr(buf, MOD_EXTENSION))!=NULL)
   {
    pname=strrchr(buf, PATHSEP_DEFAULT);
    if(pname!=NULL)
    {
     *pname++='\0';
     ppath=buf;
    }
    else
    {
     pname=buf;
     ppath=l_nullstr;
    }
    *p='\0';
    chdir(ppath);
    strcat(pname, ".map");
    if(!access(pname, 0))
    {
     fprintf(ostream, "%s" P "%s\n", ppath, pname);
     sprintf(cmdline, "mapsym %s", pname);
     system(cmdline);
     strcpy(p, ".sym");
     if(!access(pname, 0))
      fprintf(ostream, "%s" P "%s\n", ppath, pname);
    }
    if(*ppath!='\0')
    {
     p=ppath;
     do
     {
      chdir("..");
      p=strchr(p+1, PATHSEP_DEFAULT);
     } while(p!=NULL);
    }
   }
  #endif 
 }
 fclose(istream);
 fclose(ostream);
 unlink(pkg_rsp_draft);
 /* Pack the files. */
 sprintf(cmdline, "%s" P "arj" P "arj @%s -+", argv[1], pkg_rsp);
 system(cmdline);
 unlink(pkg_rsp);
 return(0);
}