2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
5 Join - Create a single file from several.
8 /******************************************************************************
13 Join [FILE] {(file | pattern)} AS|TO (filename)
25 Join makes one big file of all listed files by putting them together
26 in the order given. The destination file may not have the same name
27 as any of input files. You must supply a destination file name. The
28 original files remain unchanged. Any number of files can be Join:ed in
34 TO=AS -- the name of the combined file
42 Join Text1.doc Text2.doc AS Text.doc
43 (This will merge the two text files into one.)
51 ******************************************************************************/
54 #include <aros/debug.h>
56 #include <exec/types.h>
57 #include <exec/memory.h>
59 #include <dos/dosasl.h>
61 #include <proto/exec.h>
62 #include <proto/dos.h>
64 #define ARG_TEMPLATE "FILE/M/A,AS=TO/K/A"
69 #define BUFFERSIZE 32768 /* Buffersize used when reading & writing */
71 /****** StringID's for getstring() **************************************/
73 #define STR_ABORTED 1 /* Aborted */
74 #define STR_REMOVINGDEST 2 /* Removing destination-file */
75 #define STR_ERR_OPENREAD 3 /* Error opening file for reading */
76 #define STR_ERR_NOMEM 4 /* Error allocating memory */
77 #define STR_ERR_WRITING 5 /* Error while writing to file */
78 #define STR_ERR_OPENWRITE 6 /* Error opening file for writing */
79 #define STR_ERR_READING 7 /* Error while reading from file */
81 /****** Version- and error-header ***************************************/
83 const TEXT version
[] = "$VER: Join 41.1 (7.9.1999)";
84 static char ERROR_HEADER
[] = "Join";
86 /****** Prototypes for local functions **********************************/
88 LONG
append( BPTR destfile
, STRPTR srcfilename
);
89 STRPTR
getstring( LONG stringid
);
90 int doJoin(STRPTR
*files
, BPTR destfile
);
92 /****** Functions *******************************************************/
96 struct RDArgs
*rda
= NULL
;
98 IPTR args
[ARG_COUNT
] = { (IPTR
) NULL
, (IPTR
) NULL
};
101 BPTR destfile
= NULL
;
104 if( (rda
= ReadArgs( ARG_TEMPLATE
, args
, NULL
)) )
106 if( args
[ARG_FILE
] && args
[ARG_AS
] )
108 destination
= (STRPTR
)args
[ARG_AS
];
109 files
= (STRPTR
*)args
[ARG_FILE
];
111 if( (destfile
= Open( destination
, MODE_NEWFILE
)) )
113 rc
= doJoin(files
, destfile
);
117 Printf(", %s.\n", getstring(STR_REMOVINGDEST
));
118 DeleteFile(destination
);
123 PrintFault(IoErr() , ERROR_HEADER
);
136 PrintFault(IoErr(), ERROR_HEADER
);
144 #define MAX_PATH_LEN 512
147 int doJoin(STRPTR
*files
, BPTR destfile
)
149 struct AnchorPath
*ap
;
151 LONG i
; /* Loop variable over patterns */
152 LONG match
; /* Loop variable over files */
156 ap
= (struct AnchorPath
*)AllocVec(sizeof(struct AnchorPath
) +
157 MAX_PATH_LEN
, MEMF_CLEAR
);
161 SetIoErr(ERROR_NO_FREE_STORE
);
165 ap
->ap_Strlen
= MAX_PATH_LEN
;
167 /* Loop over the arguments */
168 for (i
= 0; files
[i
] != NULL
; i
++)
170 ap
->ap_BreakBits
= SIGBREAKF_CTRL_C
;
171 ap
->ap_FoundBreak
= 0;
173 for (match
= MatchFirst(files
[i
], ap
); match
== 0;
174 match
= MatchNext(ap
))
176 if(append(destfile
, ap
->ap_Buf
) != RETURN_OK
)
178 Printf("%s: %s", ERROR_HEADER
, getstring(STR_ABORTED
));
186 if (ap
->ap_FoundBreak
& SIGBREAKF_CTRL_C
)
188 SetIoErr(ERROR_BREAK
);
193 PrintFault(IoErr(), NULL
);
205 LONG
append(BPTR destfile
, STRPTR srcfilename
)
208 LONG actualLength
= 0;
213 if ( (buffer
= AllocMem( BUFFERSIZE
, MEMF_ANY
)) )
215 if ( (srcfile
= Open( srcfilename
, MODE_OLDFILE
)) )
218 while(!(brk
= SetSignal(0,0) & SIGBREAKF_CTRL_C
) && (actualLength
= Read(srcfile
, buffer
, BUFFERSIZE
)) != -1 )
220 if (Write(destfile
, buffer
, actualLength
) != actualLength
)
222 Printf("%s: %s.\n", ERROR_HEADER
, getstring(STR_ERR_WRITING
));
228 if (actualLength
< BUFFERSIZE
)
233 if (actualLength
== -1)
235 PrintFault(IoErr(), NULL
);
236 Printf( "%s: %s.\n", (ULONG
)ERROR_HEADER
,
237 (ULONG
)getstring(STR_ERR_READING
));
243 PrintFault(ERROR_BREAK
, NULL
);
244 SetIoErr(ERROR_BREAK
);
252 PrintFault(IoErr(), NULL
);
253 Printf("%s: %s: '%s'\n",
255 getstring(STR_ERR_OPENREAD
),
261 FreeMem(buffer
, BUFFERSIZE
);
265 Printf("%s: %s.\n", ERROR_HEADER
, getstring(STR_ERR_NOMEM
));
273 STRPTR
getstring(LONG stringid
)
280 case STR_REMOVINGDEST
:
281 return "removed incomplete destination-file";
283 case STR_ERR_OPENREAD
:
284 return "Could not open file for reading";
287 return "Could not allocate memory";
289 case STR_ERR_WRITING
:
290 return "Error while writing";
292 case STR_ERR_OPENWRITE
:
293 return "Could not open file for writing";
295 case STR_ERR_READING
:
296 return "Error while writing";
299 return "[Error: Unknown StringID]";