OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [or1ksim/] [or1ksim-0.3.0/] [peripheral/] [channels/] [file.c] - Diff between revs 19 and 21

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 19 Rev 21
/* file.c -- Definition of functions and structures for
/* file.c -- Definition of functions and structures for
   peripheral to communicate with host through files
   peripheral to communicate with host through files
 
 
   Copyright (C) 2002 Richard Prescott <rip@step.polymtl.ca>
   Copyright (C) 2002 Richard Prescott <rip@step.polymtl.ca>
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
   Copyright (C) 2008 Embecosm Limited
   Copyright (C) 2008 Embecosm Limited
 
 
   Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
   Contributor Jeremy Bennett <jeremy.bennett@embecosm.com>
 
 
   This file is part of Or1ksim, the OpenRISC 1000 Architectural Simulator.
   This file is part of Or1ksim, the OpenRISC 1000 Architectural Simulator.
 
 
   This program is free software; you can redistribute it and/or modify it
   This program 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
   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)
   Software Foundation; either version 3 of the License, or (at your option)
   any later version.
   any later version.
 
 
   This program is distributed in the hope that it will be useful, but WITHOUT
   This program is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
   more details.
   more details.
 
 
   You should have received a copy of the GNU General Public License along
   You should have received a copy of the GNU General Public License along
   with this program.  If not, see <http://www.gnu.org/licenses/>.  */
   with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
/* This program is commented throughout in a fashion suitable for processing
/* This program is commented throughout in a fashion suitable for processing
   with Doxygen. */
   with Doxygen. */
 
 
 
 
/* Autoconf and/or portability configuration */
/* Autoconf and/or portability configuration */
#include "config.h"
#include "config.h"
#include "port.h"
#include "port.h"
 
 
/* System includes */
/* System includes */
#include <stdlib.h>
#include <stdlib.h>
#include <unistd.h>
#include <unistd.h>
#include <errno.h>
#include <errno.h>
#include <fcntl.h>
#include <fcntl.h>
 
 
/* Package includes */
/* Package includes */
#include "channel.h"
#include "channel.h"
#include "fd.h"
#include "fd.h"
 
 
/*! Data structure representing a channel to/from a file */
/*! Data structure representing a channel to/from a file */
struct file_channel
struct file_channel
{
{
  struct fd_channel  fds;
  struct fd_channel  fds;
  char              *namein;
  char              *namein;
  char              *nameout;
  char              *nameout;
};
};
 
 
 
 
/* Forward declarations of static routines */
/* Forward declarations of static routines */
static void *file_init (const char *args);
static void *file_init (const char *args);
static int   file_open (void *data);
static int   file_open (void *data);
static void  file_close (void *data);
static void  file_close (void *data);
static void  file_free (void *data);
static void  file_free (void *data);
 
 
/*! Data structure with all the operations for communicating with a file
/*! Data structure with all the operations for communicating with a file
    channel */
    channel */
struct channel_ops  file_channel_ops = {
struct channel_ops  file_channel_ops = {
        .init  = file_init,
        .init  = file_init,
        .open  = file_open,
        .open  = file_open,
        .close = file_close,
        .close = file_close,
        .read  = fd_read,
        .read  = fd_read,
        .write = fd_write,
        .write = fd_write,
        .free  = file_free,
        .free  = file_free,
};
};
 
 
 
 
static void *
static void *
file_init (const char *args)
file_init (const char *args)
{
{
  struct file_channel *retval;
  struct file_channel *retval;
  char *nameout;
  char *nameout;
 
 
  if (!args)
  if (!args)
    {
    {
      errno = EINVAL;
      errno = EINVAL;
      return NULL;
      return NULL;
    }
    }
 
 
  retval = (struct file_channel *) calloc (1, sizeof (struct file_channel));
  retval = (struct file_channel *) calloc (1, sizeof (struct file_channel));
 
 
  if (!retval)
  if (!retval)
    {
    {
      return NULL;
      return NULL;
    }
    }
 
 
  retval->fds.fdin = -1;
  retval->fds.fdin = -1;
  retval->fds.fdout = -1;
  retval->fds.fdout = -1;
 
 
  nameout = strchr (args, ',');
  nameout = strchr (args, ',');
 
 
  if (nameout)
  if (nameout)
    {
    {
      retval->namein = strndup (args, nameout - args);
      retval->namein = strndup (args, nameout - args);
      retval->nameout = strdup (nameout + 1);
      retval->nameout = strdup (nameout + 1);
    }
    }
  else
  else
    {
    {
      retval->nameout = retval->namein = strdup (args);
      retval->nameout = retval->namein = strdup (args);
    }
    }
 
 
  return (void *) retval;
  return (void *) retval;
}
}
 
 
static int
static int
file_open (void *data)
file_open (void *data)
{
{
  struct file_channel *files = (struct file_channel *) data;
  struct file_channel *files = (struct file_channel *) data;
 
 
  if (!files)
  if (!files)
    {
    {
      errno = ENODEV;
      errno = ENODEV;
      return -1;
      return -1;
    }
    }
 
 
  if (files->namein == files->nameout)
  if (files->namein == files->nameout)
    {
    {
      /* if we have the same name in and out
      /* if we have the same name in and out
       * it cannot (logically) be a regular files.
       * it cannot (logically) be a regular files.
       * so we wont create one
       * so we wont create one
       */
       */
      files->fds.fdin = files->fds.fdout = open (files->namein, O_RDWR);
      files->fds.fdin = files->fds.fdout = open (files->namein, O_RDWR);
 
 
      return files->fds.fdin < 0 ? -1 : 0;
      return files->fds.fdin < 0 ? -1 : 0;
    }
    }
 
 
 
 
  files->fds.fdin = open (files->namein, O_RDONLY | O_CREAT, 0664);
  files->fds.fdin = open (files->namein, O_RDONLY | O_CREAT, 0664);
 
 
  if (files->fds.fdin < 0)
  if (files->fds.fdin < 0)
    return -1;
    return -1;
 
 
  files->fds.fdout = open (files->nameout, O_WRONLY | O_CREAT, 0664);
  files->fds.fdout = open (files->nameout, O_WRONLY | O_CREAT, 0664);
 
 
  if (files->fds.fdout < 0)
  if (files->fds.fdout < 0)
    {
    {
      close (files->fds.fdout);
      close (files->fds.fdout);
      files->fds.fdout = -1;
      files->fds.fdout = -1;
      return -1;
      return -1;
    }
    }
 
 
  return 0;
  return 0;
}
}
 
 
static void
static void
file_close (void *data)
file_close (void *data)
{
{
  struct file_channel *files = (struct file_channel *) data;
  struct file_channel *files = (struct file_channel *) data;
 
 
  if (files->fds.fdin != files->fds.fdout)
  if (files->fds.fdin != files->fds.fdout)
    close (files->fds.fdin);
    close (files->fds.fdin);
 
 
  close (files->fds.fdout);
  close (files->fds.fdout);
 
 
  files->fds.fdin = -1;
  files->fds.fdin = -1;
  files->fds.fdout = -1;
  files->fds.fdout = -1;
}
}
 
 
static void
static void
file_free (void *data)
file_free (void *data)
{
{
  struct file_channel *files = (struct file_channel *) data;
  struct file_channel *files = (struct file_channel *) data;
 
 
  if (files->namein != files->nameout)
  if (files->namein != files->nameout)
    free (files->namein);
    free (files->namein);
 
 
  free (files->nameout);
  free (files->nameout);
 
 
  free (files);
  free (files);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.