Skip to content
Snippets Groups Projects
Commit 80b040fb authored by Anders H. Rebner's avatar Anders H. Rebner
Browse files

#38 #39 Endring i serialiseringsformat

parent f7fc9969
No related branches found
No related tags found
1 merge request!40#38 #39 Eksporter og importer SOI til/fra fil
...@@ -23,6 +23,6 @@ class ModuleBase(ABC): ...@@ -23,6 +23,6 @@ class ModuleBase(ABC):
"""Abstract method, should be implemented by derived class.""" """Abstract method, should be implemented by derived class."""
raise NotImplementedError raise NotImplementedError
def get_as_dict(self): def get_data(self):
"""Abstract method, should be implemented by derived class.""" """Abstract method, should be implemented by derived class."""
raise NotImplementedError raise NotImplementedError
...@@ -29,10 +29,10 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta): ...@@ -29,10 +29,10 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta):
By default, the widget initializes as an empty START_ROWS * START_COLUMNS By default, the widget initializes as an empty START_ROWS * START_COLUMNS
table. If parameters are given, the table initializes accordingly: table. If parameters are given, the table initializes accordingly:
'size' is a dict: {"width": int, "height": int}, 'size' is a dict: {"width": int, "height": int},
'content' is a 2D list where content[x][y] represents row x, column y. 'data' is a 2D list where content[x][y] represents row x, column y.
""" """
def __init__(self, size=None, content=None): def __init__(self, size=None, data=None):
self.type = "TableModule" self.type = "TableModule"
QTableWidget.__init__(self) QTableWidget.__init__(self)
ModuleBase.__init__(self) ModuleBase.__init__(self)
...@@ -44,7 +44,7 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta): ...@@ -44,7 +44,7 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta):
self.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) self.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
# If parameters are None, start as empty table. # If parameters are None, start as empty table.
if size is None and content is None: if size is None and data is None:
# Set number of columns and rows # Set number of columns and rows
self.setColumnCount(START_COLUMNS) self.setColumnCount(START_COLUMNS)
self.setRowCount(START_ROWS) self.setRowCount(START_ROWS)
...@@ -58,17 +58,17 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta): ...@@ -58,17 +58,17 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta):
for i in range(self.columnCount()): for i in range(self.columnCount()):
self.set_header_item(i, "") self.set_header_item(i, "")
else: else:
self.setColumnCount(len(content[0])) self.setColumnCount(len(data[0]))
self.setRowCount(len(content)) self.setRowCount(len(data))
# Set header-items # Set header-items
for i in range(self.columnCount()): for i in range(self.columnCount()):
self.set_header_item(i, content[0][i]) self.set_header_item(i, data[0][i])
# Set cell-items # Set cell-items
for i in range(1, self.rowCount()): for i in range(1, self.rowCount()):
for j in range(self.columnCount()): for j in range(self.columnCount()):
item = QTableWidgetItem(content[i][j]) item = QTableWidgetItem(data[i][j])
self.setItem(i, j, item) self.setItem(i, j, item)
self.resizeColumnsToContents() self.resizeColumnsToContents()
...@@ -206,13 +206,13 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta): ...@@ -206,13 +206,13 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta):
def render_onto_pdf(self): def render_onto_pdf(self):
"""Render onto pdf.""" """Render onto pdf."""
def get_as_dict(self): def get_data(self):
"""Return a dict containing size and content of module. """Return list containing module data.
Returns Returns
------- -------
Dictionary List (2D)
Size and content of module. list[x][y] represents value of row x, column y.
""" """
content = [] content = []
for i in range(self.rowCount()): for i in range(self.rowCount()):
...@@ -225,11 +225,4 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta): ...@@ -225,11 +225,4 @@ class TableModule(ModuleBase, QTableWidget, metaclass=Meta):
row.append("") row.append("")
content.append(row) content.append(row)
width, height = self.get_size() return content
serialized = {
"size": {"width": width, "height": height},
"content": content,
}
return serialized
...@@ -34,10 +34,12 @@ def serialize_soi(soi): ...@@ -34,10 +34,12 @@ def serialize_soi(soi):
# Create dict with relevant module-information # Create dict with relevant module-information
modules = [] modules = []
for module in soi.modules: for module in soi.modules:
width, height = module["widget"].get_size()
modules.append( modules.append(
{ {
"type": module["widget"].type, "type": module["widget"].type,
"data": module["widget"].get_as_dict(), "data": module["widget"].get_data(),
"size": {"width": width, "height": height},
"meta": module["meta"], "meta": module["meta"],
} }
) )
...@@ -45,10 +47,12 @@ def serialize_soi(soi): ...@@ -45,10 +47,12 @@ def serialize_soi(soi):
# Create dict with relevant attachment-information # Create dict with relevant attachment-information
attachments = [] attachments = []
for attachment in soi.attachments: for attachment in soi.attachments:
width, height = attachment["widget"].get_size()
attachments.append( attachments.append(
{ {
"type": attachment["widget"].type, "type": attachment["widget"].type,
"data": attachment["widget"].get_as_dict(), "data": attachment["widget"].get_data(),
"size": {"width": width, "height": height},
"meta": attachment["meta"], "meta": attachment["meta"],
} }
) )
...@@ -141,10 +145,10 @@ def import_soi(file_path): ...@@ -141,10 +145,10 @@ def import_soi(file_path):
module_type = module["type"] module_type = module["type"]
if module_type == "TableModule": if module_type == "TableModule":
size = module["data"]["size"] size = module["size"]
content = module["data"]["content"] data = module["data"]
modules.append( modules.append(
{"widget": TableModule(size, content), "meta": module["meta"]} {"widget": TableModule(size, data), "meta": module["meta"]}
) )
else: else:
raise TypeError( raise TypeError(
...@@ -157,11 +161,11 @@ def import_soi(file_path): ...@@ -157,11 +161,11 @@ def import_soi(file_path):
module_type = attachment["type"] module_type = attachment["type"]
if module_type == "TableModule": if module_type == "TableModule":
size = attachment["data"]["size"] size = attachment["size"]
content = attachment["data"]["content"] data = attachment["data"]
attachments.append( attachments.append(
{ {
"widget": TableModule(size, content), "widget": TableModule(size, data),
"meta": attachment["meta"], "meta": attachment["meta"],
} }
) )
......
...@@ -38,14 +38,14 @@ MODULES = [ ...@@ -38,14 +38,14 @@ MODULES = [
{ {
"widget": TableModule( "widget": TableModule(
size={"width": 50, "height": 75}, size={"width": 50, "height": 75},
content=[["H1"], ["Row1"], ["Row2"]], data=[["H1"], ["Row1"], ["Row2"]],
), ),
"meta": {"x": 0, "y": 0, "page": 1, "name": "Table1"}, "meta": {"x": 0, "y": 0, "page": 1, "name": "Table1"},
}, },
{ {
"widget": TableModule( "widget": TableModule(
size={"width": 100, "height": 75}, size={"width": 100, "height": 75},
content=[["H1", "H2"], ["Row1Col1", "Row1Col2"]], data=[["H1", "H2"], ["Row1Col1", "Row1Col2"]],
), ),
"meta": {"x": 200, "y": 150, "page": 1, "name": "Table1"}, "meta": {"x": 200, "y": 150, "page": 1, "name": "Table1"},
}, },
...@@ -70,12 +70,10 @@ SCHEMA = Schema( ...@@ -70,12 +70,10 @@ SCHEMA = Schema(
"modules": [ "modules": [
{ {
"type": And(str, len), "type": And(str, len),
"data": { "data": object,
"size": { "size": {
"width": And(Or(int, float), lambda w: w > 0), "width": And(Or(int, float), lambda w: w > 0),
"height": And(Or(int, float), lambda h: h > 0), "height": And(Or(int, float), lambda h: h > 0),
},
"content": object,
}, },
"meta": { "meta": {
"x": And(Or(int, float), lambda x: x >= 0), "x": And(Or(int, float), lambda x: x >= 0),
...@@ -88,12 +86,10 @@ SCHEMA = Schema( ...@@ -88,12 +86,10 @@ SCHEMA = Schema(
"attachments": [ "attachments": [
{ {
"type": And(str, len), "type": And(str, len),
"data": { "data": object,
"size": { "size": {
"width": And(Or(int, float), lambda w: w > 0), "width": And(Or(int, float), lambda w: w > 0),
"height": And(Or(int, float), lambda h: h > 0), "height": And(Or(int, float), lambda h: h > 0),
},
"content": object,
}, },
"meta": { "meta": {
"x": And(Or(int, float), lambda x: x >= 0), "x": And(Or(int, float), lambda x: x >= 0),
......
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