postgresql/src/bin/pg_dump/pg_backup_null.c

127 lines
2.9 KiB
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* pg_backup_null.c
*
2001-03-22 05:01:46 +01:00
* Implementation of an archive that is never saved; it is used by
* pg_dump to output a plain text SQL script instead of save
* a real archive.
*
* See the headers to pg_restore for more details.
*
* Copyright (c) 2000, Philip Warner
2001-03-22 05:01:46 +01:00
* Rights are granted to use this software in any way so long
* as this notice is not removed.
*
* The author is not responsible for loss or damages that may
* result from it's use.
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_null.c,v 1.9 2002/05/10 22:36:26 tgl Exp $
*
* Modifications - 09-Jul-2000 - pjw@rhyme.com.au
*
2001-03-22 05:01:46 +01:00
* Initial version.
*
* Modifications - 04-Jan-2001 - pjw@rhyme.com.au
*
2001-03-22 05:01:46 +01:00
* - Check results of IO routines more carefully.
*
*
*-------------------------------------------------------------------------
*/
#include "pg_backup.h"
#include "pg_backup_archiver.h"
#include <stdlib.h>
#include <string.h>
2001-03-22 05:01:46 +01:00
#include <unistd.h> /* for dup */
2001-03-22 05:01:46 +01:00
static int _WriteData(ArchiveHandle *AH, const void *data, int dLen);
static void _EndData(ArchiveHandle *AH, TocEntry *te);
static int _WriteByte(ArchiveHandle *AH, const int i);
static int _WriteBuf(ArchiveHandle *AH, const void *buf, int len);
static void _CloseArchive(ArchiveHandle *AH);
static void _PrintTocData(ArchiveHandle *AH, TocEntry *te, RestoreOptions *ropt);
/*
2001-03-22 05:01:46 +01:00
* Initializer
*/
2001-03-22 05:01:46 +01:00
void
InitArchiveFmt_Null(ArchiveHandle *AH)
{
2001-03-22 05:01:46 +01:00
/* Assuming static functions, this can be copied for each format. */
AH->WriteDataPtr = _WriteData;
AH->EndDataPtr = _EndData;
AH->WriteBytePtr = _WriteByte;
AH->WriteBufPtr = _WriteBuf;
AH->ClosePtr = _CloseArchive;
AH->PrintTocDataPtr = _PrintTocData;
2001-03-22 05:01:46 +01:00
/*
* Now prevent reading...
*/
if (AH->mode == archModeRead)
die_horribly(AH, NULL, "this format cannot be read\n");
}
/*
* - Start a new TOC entry
*/
/*------
2001-03-22 05:01:46 +01:00
* Called by dumper via archiver from within a data dump routine
* As at V1.3, this is only called for COPY FROM dfata, and BLOB data
*------
*/
2001-03-22 05:01:46 +01:00
static int
_WriteData(ArchiveHandle *AH, const void *data, int dLen)
{
2001-03-22 05:01:46 +01:00
/* Just send it to output */
ahwrite(data, 1, dLen, AH);
return dLen;
}
2001-03-22 05:01:46 +01:00
static void
_EndData(ArchiveHandle *AH, TocEntry *te)
{
2001-03-22 05:01:46 +01:00
ahprintf(AH, "\n\n");
}
/*------
* Called as part of a RestoreArchive call; for the NULL archive, this
* just sends the data for a given TOC entry to the output.
*------
*/
2001-03-22 05:01:46 +01:00
static void
_PrintTocData(ArchiveHandle *AH, TocEntry *te, RestoreOptions *ropt)
{
2001-03-25 00:11:14 +01:00
if (te->dataDumper)
{
AH->currToc = te;
2001-03-22 05:01:46 +01:00
(*te->dataDumper) ((Archive *) AH, te->oid, te->dataDumperArg);
AH->currToc = NULL;
}
}
2001-03-22 05:01:46 +01:00
static int
_WriteByte(ArchiveHandle *AH, const int i)
{
2001-03-22 05:01:46 +01:00
/* Don't do anything */
return 0;
}
2001-03-22 05:01:46 +01:00
static int
_WriteBuf(ArchiveHandle *AH, const void *buf, int len)
{
2001-03-22 05:01:46 +01:00
/* Don't do anything */
return len;
}
2001-03-22 05:01:46 +01:00
static void
_CloseArchive(ArchiveHandle *AH)
{
2001-03-22 05:01:46 +01:00
/* Nothing to do */
}