/* gnomevfs-cat.c - Test for open() and read() for gnome-vfs Copyright (C) 1999 Free Software Foundation Copyright (C) 2003, Red Hat Example use: vfscat http://host:port | mpg123 - The Gnome Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. The Gnome Library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with the Gnome Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Author: Ettore Perazzoli Bastien Nocera */ #include #include #include #include static void show_result (GnomeVFSResult result, const gchar *what, const gchar *text_uri) { if (result != GNOME_VFS_OK) { fprintf (stderr, "%s `%s': %s\n", what, text_uri, gnome_vfs_result_to_string (result)); exit (1); } } int main (int argc, char **argv) { GnomeVFSResult result; GnomeVFSHandle *handle; gchar buffer[1024]; GnomeVFSFileSize bytes_read; GnomeVFSURI *uri; gchar *text_uri; if (argc != 2) { fprintf (stderr, "Usage: %s \n", argv[0]); return 1; } if (! gnome_vfs_init ()) { fprintf (stderr, "Cannot initialize gnome-vfs.\n"); return 1; } uri = gnome_vfs_uri_new (argv[1]); if (uri == NULL) { fprintf (stderr, "URI %s not valid.\n", argv[1]); return 1; } text_uri = gnome_vfs_uri_to_string (uri, GNOME_VFS_URI_HIDE_NONE); result = gnome_vfs_open_uri (&handle, uri, GNOME_VFS_OPEN_READ); show_result (result, "open", text_uri); while (result == GNOME_VFS_OK) { result = gnome_vfs_read (handle, buffer, sizeof (buffer) - 1, &bytes_read); /* show_result (result, "read", text_uri); */ buffer[bytes_read] = 0; write (1, buffer, bytes_read); if(bytes_read == 0) break; } result = gnome_vfs_close (handle); show_result (result, "close", text_uri); g_free (text_uri); return 0; }