Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Utility routines. |
| 4 | * |
Eric Andersen | cb81e64 | 2003-07-14 21:21:08 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 6 | * |
| 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 Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #include <stdio.h> |
Glenn L McGrath | 25fe94f | 2002-12-13 08:20:44 +0000 | [diff] [blame] | 23 | #include <stdlib.h> |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 24 | #include "libbb.h" |
| 25 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 26 | extern void bb_xprint_and_close_file(FILE *file) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 27 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 28 | bb_xfflush_stdout(); |
| 29 | /* Note: Do not use STDOUT_FILENO here, as this is a lib routine |
| 30 | * and the calling code may have reassigned stdout. */ |
| 31 | if (bb_copyfd(fileno(file), fileno(stdout), 0) == -1) { |
| 32 | /* bb_copyfd outputs any needed messages, so just die. */ |
| 33 | exit(bb_default_error_retval); |
Glenn L McGrath | 25fe94f | 2002-12-13 08:20:44 +0000 | [diff] [blame] | 34 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 35 | /* Note: Since we're reading, don't bother checking the return value |
| 36 | * of fclose(). The only possible failure is EINTR which |
| 37 | * should already have been taken care of. */ |
Eric Andersen | 55f9872 | 2001-05-15 17:48:09 +0000 | [diff] [blame] | 38 | fclose(file); |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 39 | } |
| 40 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 41 | /* Returns: |
| 42 | * 0 if successful |
| 43 | * -1 if 'filename' does not exist or is a directory |
| 44 | * exits with default error code if an error occurs |
| 45 | */ |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 46 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 47 | extern int bb_xprint_file_by_name(const char *filename) |
| 48 | { |
| 49 | FILE *f; |
| 50 | |
| 51 | #if 0 |
| 52 | /* This check shouldn't be necessary for linux, but is left |
| 53 | * here disabled just in case. */ |
| 54 | struct stat statBuf; |
| 55 | |
| 56 | if(is_directory(filename, TRUE, &statBuf)) { |
| 57 | bb_error_msg("%s: Is directory", filename); |
| 58 | } else |
| 59 | #endif |
| 60 | if ((f = bb_wfopen(filename, "r")) != NULL) { |
| 61 | bb_xprint_and_close_file(f); |
| 62 | return 0; |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 63 | } |
| 64 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 65 | return -1; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 66 | } |
| 67 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 68 | /* END CODE */ |
| 69 | /* |
| 70 | Local Variables: |
| 71 | c-file-style: "linux" |
| 72 | c-basic-offset: 4 |
| 73 | tab-width: 4 |
| 74 | End: |
| 75 | */ |