Skip to content
Snippets Groups Projects
Commit f4c9f537 authored by Daniel Lyons's avatar Daniel Lyons Committed by Daniel Lyons
Browse files

Now writing output that can be loaded. Just two problems remain.

1. Output is in the wrong order. May need to topologically sort the dependencies or something.
2. Same data gets rendered more than once.
parent 2e012f6b
No related branches found
No related tags found
1 merge request!343Core sampler
This commit is part of merge request !343. Comments created here will be created in the context of that merge request.
......@@ -9,6 +9,7 @@ The core sampler outputs an SQL file you can use to load the core sample into a
import argparse
from typing import Any, Iterable
import datetime
import psycopg2 as pg
import psycopg2.extras as extras
......@@ -54,7 +55,7 @@ class MDDBConnector:
class RowWriter:
def write_row(self, table: str, row: dict):
def write_rows(self, table: str, row: dict):
raise NotImplementedError
......@@ -106,8 +107,24 @@ class CoreSampler(RowWriter):
"""
rows.write_to(self)
def write_row(self, table: str, row: dict):
pass # print((table, row))
def write_rows(self, table: str, rows: list[dict]):
columns = rows[0].keys()
print(f"COPY {table} ({', '.join(columns)}) FROM stdin;")
for row in rows:
print("\t".join([self.copy_format(row[col]) for col in columns]))
print("\.")
def copy_format(self, value):
if value == None:
return "\\N"
elif isinstance(value, str):
return value
elif isinstance(value, int) or isinstance(value, float):
return str(value)
elif isinstance(value, datetime.date):
return value.isoformat()
else:
raise TypeError(f"Unable to figure out what to do with {value} of type {type(value)}")
class Table:
......@@ -163,7 +180,7 @@ class Table:
:param columns: columns to consider in the generated WHERE clause
:return: RowSet for the rows in this table
"""
# print(f"Fetching from {self.name} according to {','.join(columns)}")
# 1. Escape the WHERE clause entries. it's important to use the primary keys
# to retrieve the values from the previous resultset; the new columns will
# appear in the query below.
......@@ -243,8 +260,7 @@ class RowSet:
return self.table.relations()
def write_to(self, writer: RowWriter):
for row in self.rows:
writer.write_row(self.table.name, row)
writer.write_rows(self.table.name, self.rows)
def __iter__(self):
return iter(self.rows)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment