#include "config.h"
#ifndef lint
static const char sccsid[] = "@(#)os_oflags.c 10.6 (Sleepycat) 4/19/98";
#endif
#ifndef NO_SYSTEM_INCLUDES
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#endif
#include "db_int.h"
u_int32_t
__db_oflags(oflags)
int oflags;
{
u_int32_t dbflags;
dbflags = 0;
if (oflags & O_CREAT)
dbflags |= DB_CREATE;
if (!(oflags & (O_RDWR | O_WRONLY)) || oflags & O_RDONLY)
dbflags |= DB_RDONLY;
if (oflags & O_TRUNC)
dbflags |= DB_TRUNCATE;
return (dbflags);
}
int
__db_omode(perm)
const char *perm;
{
int mode;
#ifndef S_IRUSR
#if defined(_WIN32) || defined(WIN16)
#define S_IRUSR S_IREAD
#define S_IWUSR S_IWRITE
#define S_IRGRP 0
#define S_IWGRP 0
#define S_IROTH 0
#define S_IWOTH 0
#else
#define S_IRUSR 0000400
#define S_IWUSR 0000200
#define S_IRGRP 0000040
#define S_IWGRP 0000020
#define S_IROTH 0000004
#define S_IWOTH 0000002
#endif
#endif
mode = 0;
if (perm[0] == 'r')
mode |= S_IRUSR;
if (perm[1] == 'w')
mode |= S_IWUSR;
if (perm[2] == 'r')
mode |= S_IRGRP;
if (perm[3] == 'w')
mode |= S_IWGRP;
if (perm[4] == 'r')
mode |= S_IROTH;
if (perm[5] == 'w')
mode |= S_IWOTH;
return (mode);
}