2018-08-22 05:23:27 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
|
|
|
* GNU Mes --- Maxwell Equations of Software
|
2019-06-08 13:36:22 +00:00
|
|
|
* Copyright © 2017,2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2018-08-22 05:23:27 +00:00
|
|
|
* Copyright © 2018 Jeremiah Orians <jeremiah@pdp10.guru>
|
|
|
|
*
|
|
|
|
* This file is part of GNU Mes.
|
|
|
|
*
|
|
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-05-07 22:25:41 +00:00
|
|
|
#include <mes/lib.h>
|
2019-06-08 13:36:22 +00:00
|
|
|
#include <assert.h>
|
|
|
|
#include <fcntl.h>
|
2018-08-22 05:23:27 +00:00
|
|
|
#include <stdio.h>
|
2019-06-08 13:36:22 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2018-08-15 16:26:55 +00:00
|
|
|
|
2019-05-18 11:27:42 +00:00
|
|
|
FILE *
|
2018-08-22 05:23:27 +00:00
|
|
|
fopen (char const *file_name, char const *opentype)
|
|
|
|
{
|
|
|
|
if (__mes_debug ())
|
|
|
|
{
|
2019-05-18 11:27:42 +00:00
|
|
|
eputs ("fopen ");
|
|
|
|
eputs (file_name);
|
|
|
|
eputs (" ");
|
|
|
|
eputs (opentype);
|
|
|
|
eputs ("\n");
|
2018-08-22 05:23:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int fd;
|
|
|
|
int mode = 0600;
|
2019-05-18 11:27:42 +00:00
|
|
|
if ((opentype[0] == 'a' || !strcmp (opentype, "r+")) && !access (file_name, O_RDONLY))
|
2018-08-22 05:23:27 +00:00
|
|
|
{
|
|
|
|
int flags = O_RDWR;
|
|
|
|
if (opentype[0] == 'a')
|
|
|
|
flags |= O_APPEND;
|
|
|
|
fd = open (file_name, flags, mode);
|
|
|
|
}
|
|
|
|
else if (opentype[0] == 'w' || opentype[0] == 'a' || !strcmp (opentype, "r+"))
|
|
|
|
{
|
|
|
|
char *plus_p = strchr (opentype, '+');
|
|
|
|
int flags = plus_p ? O_RDWR | O_CREAT : O_WRONLY | O_CREAT | O_TRUNC;
|
2019-06-08 13:36:22 +00:00
|
|
|
fd = _open3 (file_name, flags, mode);
|
2018-08-22 05:23:27 +00:00
|
|
|
}
|
|
|
|
else
|
2019-06-08 13:36:22 +00:00
|
|
|
fd = _open3 (file_name, 0, 0);
|
2018-08-22 05:23:27 +00:00
|
|
|
|
|
|
|
if (__mes_debug ())
|
|
|
|
{
|
2019-05-18 11:27:42 +00:00
|
|
|
eputs (" => fd=");
|
|
|
|
eputs (itoa (fd));
|
|
|
|
eputs ("\n");
|
2018-08-22 05:23:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!fd)
|
|
|
|
{
|
|
|
|
eputs (" ***MES LIB C*** fopen of stdin: signal me in band\n");
|
2019-06-08 13:36:22 +00:00
|
|
|
assert (0);
|
2018-08-22 05:23:27 +00:00
|
|
|
}
|
|
|
|
if (fd < 0)
|
|
|
|
fd = 0;
|
2019-06-08 13:36:22 +00:00
|
|
|
return (FILE *) (long) fd;
|
2018-08-22 05:23:27 +00:00
|
|
|
}
|
2018-08-15 16:26:55 +00:00
|
|
|
|
|
|
|
#undef open
|