postgresql/contrib/pg_dumplo/lo_export.c

203 lines
4.6 KiB
C
Raw Normal View History

/* -------------------------------------------------------------------------
* pg_dumplo
*
* $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/lo_export.c,v 1.11 2002/09/05 21:01:16 tgl Exp $
*
* Karel Zak 1999-2000
* -------------------------------------------------------------------------
*/
2000-06-15 21:05:22 +02:00
#include "postgres_fe.h"
2000-06-15 21:05:22 +02:00
#include <fcntl.h>
2001-03-22 05:01:46 +01:00
#include <errno.h>
2000-06-15 21:05:22 +02:00
#include <time.h>
#include <unistd.h>
#include <sys/stat.h>
2000-06-15 21:05:22 +02:00
#include "libpq-fe.h"
#include "libpq/libpq-fs.h"
2000-06-15 21:05:22 +02:00
#include "pg_dumplo.h"
2001-03-22 05:01:46 +01:00
extern int errno;
2000-06-15 21:05:22 +02:00
2001-03-22 05:01:46 +01:00
void
load_lolist(LODumpMaster * pgLO)
2000-06-15 21:05:22 +02:00
{
2001-03-22 05:01:46 +01:00
LOlist *ll;
int i;
int n;
2000-06-15 21:05:22 +02:00
/*
* Now find any candidate tables who have columns of type oid.
*
* NOTE: System tables including pg_largeobject will be ignored.
* Otherwise we'd end up dumping all LOs, referenced or not.
*
* NOTE: the system oid column is ignored, as it has attnum < 1. This
* shouldn't matter for correctness, but it saves time.
2001-03-22 05:01:46 +01:00
*/
pgLO->res = PQexec(pgLO->conn,
"SELECT c.relname, a.attname "
"FROM pg_class c, pg_attribute a, pg_type t "
"WHERE a.attnum > 0 "
" AND a.attrelid = c.oid "
" AND a.atttypid = t.oid "
" AND t.typname = 'oid' "
" AND c.relkind = 'r' "
" AND c.relname NOT LIKE 'pg_%'");
2001-03-22 05:01:46 +01:00
if (PQresultStatus(pgLO->res) != PGRES_TUPLES_OK)
{
fprintf(stderr, "%s: Failed to get LO OIDs:\n%s", progname,
PQerrorMessage(pgLO->conn));
exit(RE_ERROR);
}
2001-03-22 05:01:46 +01:00
if ((n = PQntuples(pgLO->res)) == 0)
{
fprintf(stderr, "%s: No OID columns in the database.\n", progname);
2000-06-15 21:05:22 +02:00
exit(RE_ERROR);
2001-03-22 05:01:46 +01:00
}
2000-06-15 21:05:22 +02:00
pgLO->lolist = (LOlist *) malloc((n + 1) * sizeof(LOlist));
2001-03-22 05:01:46 +01:00
if (!pgLO->lolist)
{
2000-06-15 21:05:22 +02:00
fprintf(stderr, "%s: can't allocate memory\n", progname);
exit(RE_ERROR);
2001-03-22 05:01:46 +01:00
}
for (i = 0, ll = pgLO->lolist; i < n; i++, ll++)
{
2000-06-15 21:05:22 +02:00
ll->lo_table = strdup(PQgetvalue(pgLO->res, i, 0));
2001-03-22 05:01:46 +01:00
ll->lo_attr = strdup(PQgetvalue(pgLO->res, i, 1));
2000-06-15 21:05:22 +02:00
}
2001-03-22 05:01:46 +01:00
ll->lo_table = ll->lo_attr = (char *) NULL;
2000-06-15 21:05:22 +02:00
PQclear(pgLO->res);
}
2001-03-22 05:01:46 +01:00
void
pglo_export(LODumpMaster * pgLO)
2000-06-15 21:05:22 +02:00
{
2001-03-22 05:01:46 +01:00
LOlist *ll;
int tuples;
2000-06-15 21:05:22 +02:00
char path[BUFSIZ],
2001-03-22 05:01:46 +01:00
Qbuff[QUERY_BUFSIZ];
if (pgLO->action != ACTION_SHOW)
{
time_t t;
2000-06-15 21:05:22 +02:00
time(&t);
fprintf(pgLO->index, "#\n# This is the PostgreSQL large object dump index\n#\n");
fprintf(pgLO->index, "#\tDate: %s", ctime(&t));
fprintf(pgLO->index, "#\tHost: %s\n", pgLO->host);
fprintf(pgLO->index, "#\tDatabase: %s\n", pgLO->db);
fprintf(pgLO->index, "#\tUser: %s\n", pgLO->user);
fprintf(pgLO->index, "#\n# oid\ttable\tattribut\tinfile\n#\n");
}
2001-03-22 05:01:46 +01:00
2000-06-15 21:05:22 +02:00
pgLO->counter = 0;
2001-03-22 05:01:46 +01:00
for (ll = pgLO->lolist; ll->lo_table != NULL; ll++)
{
/*
* Query: find the LOs referenced by this column
2000-06-15 21:05:22 +02:00
*/
snprintf(Qbuff, QUERY_BUFSIZ,
"SELECT DISTINCT l.loid FROM \"%s\" x, pg_largeobject l WHERE x.\"%s\" = l.loid",
ll->lo_table, ll->lo_attr);
2001-03-22 05:01:46 +01:00
2000-06-15 21:05:22 +02:00
/* puts(Qbuff); */
2001-03-22 05:01:46 +01:00
2000-06-15 21:05:22 +02:00
pgLO->res = PQexec(pgLO->conn, Qbuff);
2001-03-22 05:01:46 +01:00
if (PQresultStatus(pgLO->res) != PGRES_TUPLES_OK)
{
fprintf(stderr, "%s: Failed to get LO OIDs:\n%s", progname,
PQerrorMessage(pgLO->conn));
2001-03-22 05:01:46 +01:00
}
else if ((tuples = PQntuples(pgLO->res)) == 0)
{
2000-06-15 21:05:22 +02:00
if (!pgLO->quiet && pgLO->action == ACTION_EXPORT_ATTR)
printf("%s: no large objects in \"%s\".\"%s\"\n",
2001-03-22 05:01:46 +01:00
progname, ll->lo_table, ll->lo_attr);
}
else
{
int t;
char *val;
/*
2000-06-15 21:05:22 +02:00
* Create DIR/FILE
*/
2001-03-22 05:01:46 +01:00
if (pgLO->action != ACTION_SHOW)
{
snprintf(path, BUFSIZ, "%s/%s/%s", pgLO->space, pgLO->db,
2002-09-04 22:31:48 +02:00
ll->lo_table);
2000-06-15 21:05:22 +02:00
2001-03-22 05:01:46 +01:00
if (mkdir(path, DIR_UMASK) == -1)
{
if (errno != EEXIST)
{
2000-06-15 21:05:22 +02:00
perror(path);
2001-03-22 05:01:46 +01:00
exit(RE_ERROR);
}
2000-06-15 21:05:22 +02:00
}
snprintf(path, BUFSIZ, "%s/%s/%s/%s", pgLO->space, pgLO->db,
2002-09-04 22:31:48 +02:00
ll->lo_table, ll->lo_attr);
2001-03-22 05:01:46 +01:00
if (mkdir(path, DIR_UMASK) == -1)
{
if (errno != EEXIST)
{
2000-06-15 21:05:22 +02:00
perror(path);
2001-03-22 05:01:46 +01:00
exit(RE_ERROR);
}
2000-06-15 21:05:22 +02:00
}
2001-03-22 05:01:46 +01:00
2000-06-15 21:05:22 +02:00
if (!pgLO->quiet)
2001-03-22 05:01:46 +01:00
printf("dump %s.%s (%d large obj)\n",
ll->lo_table, ll->lo_attr, tuples);
2000-06-15 21:05:22 +02:00
}
pgLO->counter += tuples;
2001-03-22 05:01:46 +01:00
for (t = 0; t < tuples; t++)
{
Oid lo;
2000-06-15 21:05:22 +02:00
val = PQgetvalue(pgLO->res, t, 0);
2001-03-22 05:01:46 +01:00
lo = atooid(val);
2001-03-22 05:01:46 +01:00
if (pgLO->action == ACTION_SHOW)
{
printf("%s.%s: %u\n", ll->lo_table, ll->lo_attr, lo);
2000-06-15 21:05:22 +02:00
continue;
}
2001-03-22 05:01:46 +01:00
snprintf(path, BUFSIZ, "%s/%s/%s/%s/%s", pgLO->space,
2002-09-04 22:31:48 +02:00
pgLO->db, ll->lo_table, ll->lo_attr, val);
2001-03-22 05:01:46 +01:00
if (lo_export(pgLO->conn, lo, path) < 0)
fprintf(stderr, "%s: lo_export failed:\n%s", progname,
PQerrorMessage(pgLO->conn));
2001-03-22 05:01:46 +01:00
else
fprintf(pgLO->index, "%s\t%s\t%s\t%s/%s/%s/%s\n", val,
ll->lo_table, ll->lo_attr, pgLO->db, ll->lo_table, ll->lo_attr, val);
2000-06-15 21:05:22 +02:00
}
}
PQclear(pgLO->res);
}
}