blob: 26bd0d4588824bd653ba435f0f41c50dac543dce [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenaad1a882001-03-16 22:47:14 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Eric Andersenaad1a882001-03-16 22:47:14 +000020 */
21
22#include <stdio.h>
Glenn L McGrath25fe94f2002-12-13 08:20:44 +000023#include <stdlib.h>
Eric Andersen8ee2b272004-03-27 11:26:32 +000024#include <unistd.h>
Eric Andersenaad1a882001-03-16 22:47:14 +000025#include "libbb.h"
26
Rob Landleydfba7412006-03-06 20:47:33 +000027void bb_xprint_and_close_file(FILE *file)
Eric Andersenaad1a882001-03-16 22:47:14 +000028{
Manuel Novoa III cad53642003-03-19 09:13:01 +000029 bb_xfflush_stdout();
30 /* Note: Do not use STDOUT_FILENO here, as this is a lib routine
31 * and the calling code may have reassigned stdout. */
Eric Andersen70060d22004-03-27 10:02:48 +000032 if (bb_copyfd_eof(fileno(file), STDOUT_FILENO) == -1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000033 /* bb_copyfd outputs any needed messages, so just die. */
34 exit(bb_default_error_retval);
Glenn L McGrath25fe94f2002-12-13 08:20:44 +000035 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000036 /* Note: Since we're reading, don't bother checking the return value
37 * of fclose(). The only possible failure is EINTR which
38 * should already have been taken care of. */
Eric Andersen55f98722001-05-15 17:48:09 +000039 fclose(file);
Eric Andersenaad1a882001-03-16 22:47:14 +000040}
41
Manuel Novoa III cad53642003-03-19 09:13:01 +000042/* Returns:
43 * 0 if successful
44 * -1 if 'filename' does not exist or is a directory
45 * exits with default error code if an error occurs
46 */
Eric Andersene5dfced2001-04-09 22:48:12 +000047
Rob Landleydfba7412006-03-06 20:47:33 +000048int bb_xprint_file_by_name(const char *filename)
Manuel Novoa III cad53642003-03-19 09:13:01 +000049{
50 FILE *f;
51
52#if 0
53 /* This check shouldn't be necessary for linux, but is left
54 * here disabled just in case. */
55 struct stat statBuf;
56
57 if(is_directory(filename, TRUE, &statBuf)) {
58 bb_error_msg("%s: Is directory", filename);
59 } else
60#endif
61 if ((f = bb_wfopen(filename, "r")) != NULL) {
62 bb_xprint_and_close_file(f);
63 return 0;
Eric Andersene5dfced2001-04-09 22:48:12 +000064 }
65
Manuel Novoa III cad53642003-03-19 09:13:01 +000066 return -1;
Eric Andersenaad1a882001-03-16 22:47:14 +000067}
68
Eric Andersenaad1a882001-03-16 22:47:14 +000069/* END CODE */
70/*
71Local Variables:
72c-file-style: "linux"
73c-basic-offset: 4
74tab-width: 4
75End:
76*/