gambas-source-code/main/gbx/gbx_stream_direct.c
Benoît Minisini 5f900c0b68 [DEVELOPMENT ENVIRONMENT]
* NEW: English and french tips were updated. A new tip was added.
* NEW: Files that were opened at project close are automatically reopened
  when the project is loaded again.
* NEW: A warning message is displayed when the GNU translation tools are
  not installed.
* BUG: The code editor method combo-box is correctly updated now.
* BUG: Some fixes in the automatic completion.
* BUG: Replace points by dash in the name of packages generated by the IDE
  packager.
* NEW: Updated russian translation
* NEW: Updated french translation

[DATABASE MANAGER]
* NEW: Updated russian translation

[EXAMPLES]
* BUG: Fixed the Gravity and the GameOfLife examples so that they do not
  use public form controls anymore.

[INTERPRETER]
* OPT: Many optimizations in the string substitution routines, the 
  internal datatype conversions, the INPUT and LINE INPUT instructions, the 
  error messages generation, the object and string reference counting, and
  the memory allocation routines.
* NEW: Opening a device file in direct mode (FOR READ/WRITE) is now 
  automatically non blocking.
* OPT: Lof() now only tries its different methods (ioctl and lseek) once.
* BUG: Val() now ignores thousand separators characters at the end of the 
  number.
* NEW: A new flag for enabling the stack trace generation at each error.

[GB.DEBUG]
* BUG: The gb.debug component interface declaration was not 64-bits aware.

[GB.EVAL]
* BUG: The Highlight.Purge() method now correctly deals with non-ASCII 
 characters.

[GB.FORM]
* BUG: TableView.Edit() does not raise a "read-only combo-box" error 
  anymore.
  
[GB.FORM.DIALOG]
* BUG: Dialog buttons now are never cut.

[GB.GTK]
* BUG: Cached drawing areas are correctly redrawn now.
* BUG: Loading big images now works correctly. There is apparently a bug 
  in the GTK+ image loader, and I found a workaround.
* BUG: Message boxes correctly display the text of their buttons now.

[GB.QT]
* BUG: The Open, and initial Move and Resize event of embedded forms are 
  now always raised when you call the Show method or if you set the Visible
  property. Before, it was raised when the embedded form was actually 
  shown.

[GB.SETTINGS]
* NEW: Settings are now stored in ~/.config/gambasX, where X is the 
  gambas version number.
* BUG: Strings are correctly quoted inside the settings file now.

[GB.WEB]
* NEW: Application.Protocol is a new property that allows to tell the 
  component that the protocol is not necessarily "http".


git-svn-id: svn://localhost/gambas/trunk@1153 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2008-03-11 13:29:47 +00:00

166 lines
3.1 KiB
C

/***************************************************************************
stream_direct.c
The direct stream management routines
(c) 2000-2007 Benoit Minisini <gambas@users.sourceforge.net>
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 Software Foundation; either version 1, or (at your option)
any later version.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***************************************************************************/
#define __STREAM_IMPL_C
#include "gb_common.h"
#include "gb_error.h"
#include "gbx_value.h"
#include "gb_limit.h"
#include <fcntl.h>
#include <unistd.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <errno.h>
#include "gbx_stream.h"
#define FD (stream->direct.fd)
static int stream_open(STREAM *stream, const char *path, int mode)
{
int fd;
struct stat info;
int fmode;
if (mode & ST_CREATE)
fmode = O_CREAT | O_TRUNC;
else if (mode & ST_APPEND)
fmode = O_APPEND | O_CREAT;
else
fmode = 0;
switch (mode & ST_MODE)
{
case ST_READ: fmode |= O_RDONLY; break;
case ST_WRITE: fmode |= O_WRONLY; break;
case ST_READ_WRITE: fmode |= O_RDWR; break;
default: fmode |= O_RDONLY;
}
fd = open(path, fmode, 0666);
if (fd < 0)
return TRUE;
if (fstat(fd, &info) < 0)
return TRUE;
if (S_ISDIR(info.st_mode))
{
errno = EISDIR;
return TRUE;
}
if (!S_ISREG(info.st_mode))
{
stream->direct.is_device = TRUE;
fcntl(fd, F_SETFL, O_NONBLOCK);
}
stream->direct.size = info.st_size;
FD = fd;
return FALSE;
}
static int stream_close(STREAM *stream)
{
if (close(FD) < 0)
return TRUE;
FD = -1;
return FALSE;
}
static int stream_read(STREAM *stream, char *buffer, int len)
{
return STREAM_read_direct(FD, buffer, len);
}
static int stream_getchar(STREAM *stream, char *buffer)
{
return read(FD, buffer, 1) <= 0;
}
static int stream_write(STREAM *stream, char *buffer, int len)
{
return STREAM_write_direct(FD, buffer, len);
}
static int stream_seek(STREAM *stream, int64_t pos, int whence)
{
return (lseek(FD, pos, whence) < 0);
}
static int stream_tell(STREAM *stream, int64_t *pos)
{
*pos = lseek(FD, 0, SEEK_CUR);
return (*pos < 0);
}
static int stream_flush(STREAM *stream)
{
return FALSE;
}
/*static int stream_eof(STREAM *stream)
{
int ilen;
if (STREAM_get_readable(FD, &ilen))
return TRUE;
return (ilen == 0);
}*/
#define stream_eof NULL
static int stream_lof(STREAM *stream, int64_t *len)
{
if (stream->direct.is_device)
return TRUE;
*len = stream->direct.size;
return FALSE;
}
static int stream_handle(STREAM *stream)
{
return FD;
}
DECLARE_STREAM(STREAM_direct);