forked from patrickschulz/openPCells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterface.lua
96 lines (87 loc) · 3.07 KB
/
interface.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
local M = {}
local interface
local function _collect_shapes(cell, get_layer_func, get_index_func, point_func, precomputed)
local shapes = {}
if get_index_func then
shapes.indexed = true
shapes.maxindex = 0
end
get_layer_func = get_layer_func or function(s) return s.lpp end
point_func = point_func or function(s) return s.points end
for _, shape in cell:iter() do
local layer = get_layer_func(shape, precomputed)
if shapes.indexed then
local index = get_index_func(shape, precomputed)
if not shapes[index] then
shapes[index] = { layer = layer, points = {} }
shapes.maxindex = math.max(shapes.maxindex, index)
end
table.insert(shapes[index].points, point_func(shape, precomputed))
else
if not shapes[layer] then
shapes[layer] = {}
end
table.insert(shapes[layer], point_func(shape, precomputed))
end
end
return shapes
end
local function _iter_shapes(shapes)
if shapes.indexed then
local idx = 1
local iter = function()
while true do
idx = idx + 1
if idx > shapes.maxindex + 1 then
return nil
end
if shapes[idx - 1] then break end
end
return shapes[idx - 1].layer, shapes[idx - 1].points
end
return iter
else
return pairs(shapes)
end
end
function M.load(name)
local filename = string.format("%s/interface/%s/init.lua", _get_opc_home(), name)
local chunkname = "@interface"
local reader = _get_reader(filename)
if not reader then
error(string.format("interface '%s' not found", name))
end
interface = _generic_load(reader, chunkname)
end
function M.get_techinterface()
if interface.techinterface then
return interface.techinterface()
end
end
function M.write_cell(filename, cell)
if cell:is_empty() then
error("interface: cell is empty")
end
local extension = interface.get_extension()
local file = stringfile.open(string.format("%s.%s", filename, extension))
local precomputed = aux.call_if_present(interface.precompute, cell)
aux.call_if_present(interface.at_begin, file, precomputed)
aux.call_if_present(interface.at_begin_cell, file, precomputed)
for layer, pcol in _iter_shapes(_collect_shapes(cell, interface.get_layer, interface.get_index, interface.get_points, precomputed)) do
interface.write_layer(file, layer, pcol)
end
if interface.write_port then
for name, port in pairs(cell.ports) do
--interface.write_port(file, name, port.layer, port.where)
-- FIXME: only for testing purposes
interface.write_port(file, name, "M1", port.where)
end
end
aux.call_if_present(interface.at_end_cell, file, precomputed)
aux.call_if_present(interface.at_end, file, precomputed)
file:truewrite()
end
function M.set_options(opt)
aux.call_if_present(interface.set_options, opt)
end
return M