|
1 | 1 | from __future__ import print_function
|
2 | 2 |
|
| 3 | +import ast |
3 | 4 | import json
|
4 | 5 | import re
|
5 | 6 | import sys
|
6 | 7 | import typing
|
7 | 8 | from typing import Any, Dict, List, Set, Tuple, Type
|
8 | 9 |
|
9 | 10 | import jsondiff as jd
|
| 11 | +import pagebreaksip |
| 12 | +from IPython.core.interactiveshell import ExecutionInfo |
10 | 13 | from IPython.core.magic import (Magics, cell_magic, line_cell_magic,
|
11 | 14 | line_magic, magics_class)
|
12 | 15 | from IPython.core.magics.namespace import NamespaceMagics
|
|
22 | 25 | @magics_class
|
23 | 26 | class pagebreak_magics(Magics):
|
24 | 27 |
|
25 |
| - def __init__(self, shell): |
| 28 | + def __init__(self, shell, pb): |
26 | 29 | super(pagebreak_magics, self).__init__(shell)
|
27 | 30 | self.shell: TerminalInteractiveShell = shell
|
28 | 31 | self.schema = None
|
29 | 32 | self.currentJSON = None
|
| 33 | + self._pb = pb |
30 | 34 |
|
31 | 35 | @line_magic
|
32 | 36 | def print_schema(self, line):
|
@@ -114,44 +118,46 @@ def get_type(vv):
|
114 | 118 | exportedwidth = len(exportedLabel) + colsep
|
115 | 119 | scopewidth = len(scopeLabel) + colsep
|
116 | 120 | # table header
|
117 |
| - print(varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + scopeLabel.ljust(scopewidth) + exportedLabel.ljust(exportedwidth) + \ |
118 |
| - ' '+datalabel+'\n' + '-'*(varwidth+typewidth+len(datalabel)+1)) |
| 121 | + print(varlabel.ljust(varwidth) + typelabel.ljust(typewidth) + scopeLabel.ljust(scopewidth) + exportedLabel.ljust(exportedwidth) |
| 122 | + # + ' '+datalabel+'\n' |
| 123 | + # + '-'*(varwidth+typewidth+len(datalabel)+1) |
| 124 | + ) |
119 | 125 | # and the table itself
|
120 | 126 | kb = 1024
|
121 | 127 | Mb = 1048576 # kb**2
|
122 | 128 | def printEntry(vname: str,var: Any,vtype:str, scope: str = "global", exported:str = ""):
|
123 |
| - print(vformat.format(vname, vtype, scope, str(exported), varwidth=varwidth, typewidth=typewidth, scopewidth=scopewidth, exportedwidth=exportedwidth), end=' ') |
124 |
| - if vtype in seq_types: |
125 |
| - print("n="+str(len(var))) |
126 |
| - elif vtype == ndarray_type: |
127 |
| - vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1] |
128 |
| - if vtype==ndarray_type: |
129 |
| - # numpy |
130 |
| - vsize = var.size |
131 |
| - vbytes = vsize*var.itemsize |
132 |
| - vdtype = var.dtype |
133 |
| - |
134 |
| - if vbytes < 100000: |
135 |
| - print(aformat % (vshape, vsize, vdtype, vbytes)) |
136 |
| - else: |
137 |
| - print(aformat % (vshape, vsize, vdtype, vbytes), end=' ') |
138 |
| - if vbytes < Mb: |
139 |
| - print('(%s kb)' % (vbytes/kb,)) |
140 |
| - else: |
141 |
| - print('(%s Mb)' % (vbytes/Mb,)) |
142 |
| - else: |
143 |
| - try: |
144 |
| - vstr = str(var) |
145 |
| - except UnicodeEncodeError: |
146 |
| - vstr = var.encode(DEFAULT_ENCODING, |
147 |
| - 'backslashreplace') |
148 |
| - except: |
149 |
| - vstr = "<object with id %d (str() failed)>" % id(var) |
150 |
| - vstr = vstr.replace('\n', '\\n') |
151 |
| - if len(vstr) < 50: |
152 |
| - print(vstr) |
153 |
| - else: |
154 |
| - print(vstr[:25] + "<...>" + vstr[-25:]) |
| 129 | + print(vformat.format(vname, vtype, scope, str(exported), varwidth=varwidth, typewidth=typewidth, scopewidth=scopewidth, exportedwidth=exportedwidth), end='\n') |
| 130 | + # if vtype in seq_types: |
| 131 | + # print("n="+str(len(var))) |
| 132 | + # elif vtype == ndarray_type: |
| 133 | + # vshape = str(var.shape).replace(',','').replace(' ','x')[1:-1] |
| 134 | + # if vtype==ndarray_type: |
| 135 | + # # numpy |
| 136 | + # vsize = var.size |
| 137 | + # vbytes = vsize*var.itemsize |
| 138 | + # vdtype = var.dtype |
| 139 | + |
| 140 | + # if vbytes < 100000: |
| 141 | + # print(aformat % (vshape, vsize, vdtype, vbytes)) |
| 142 | + # else: |
| 143 | + # print(aformat % (vshape, vsize, vdtype, vbytes), end=' ') |
| 144 | + # if vbytes < Mb: |
| 145 | + # print('(%s kb)' % (vbytes/kb,)) |
| 146 | + # else: |
| 147 | + # print('(%s Mb)' % (vbytes/Mb,)) |
| 148 | + # else: |
| 149 | + # try: |
| 150 | + # vstr = str(var) |
| 151 | + # except UnicodeEncodeError: |
| 152 | + # vstr = var.encode(DEFAULT_ENCODING, |
| 153 | + # 'backslashreplace') |
| 154 | + # except: |
| 155 | + # vstr = "<object with id %d (str() failed)>" % id(var) |
| 156 | + # vstr = vstr.replace('\n', '\\n') |
| 157 | + # if len(vstr) < 50: |
| 158 | + # print(vstr) |
| 159 | + # else: |
| 160 | + # print(vstr[:25] + "<...>" + vstr[-25:]) |
155 | 161 |
|
156 | 162 | for scopeNum in sorted(varsByScope):
|
157 | 163 | # print("Pagebreak : ", str(scopeNum))
|
@@ -207,7 +213,67 @@ def pb_log(self, line, cell):
|
207 | 213 | else:
|
208 | 214 | study_logger.info(cell)
|
209 | 215 | return
|
| 216 | + @cell_magic |
| 217 | + def pb_transform(self,line,cell): |
| 218 | + msg = typing.cast(str,cell) |
| 219 | + cellList = json.loads(msg) |
| 220 | + if self.schema == None: |
| 221 | + return |
210 | 222 |
|
| 223 | + for cell in cellList: |
| 224 | + if cell.get('type') == 'pagebreak': |
| 225 | + pbnum = cell.get("pbNum") |
| 226 | + # print(pbnum) |
| 227 | + exportvars = self._pb.ast_transformer.getStoredData().exportedVariables.get(pbnum) |
| 228 | + # print(exportvars) |
| 229 | + base = ast.Module(body=[],type_ignores=[]) |
| 230 | + for var,index in zip(exportvars,range(len(exportvars))): |
| 231 | + exportName = pagebreaksip.transformName(var,pbnum,True) |
| 232 | + localName = pagebreaksip.transformName(var,pbnum,False) |
| 233 | + base.body.append(ast.Assign(targets=[ast.Name(id=exportName,ctx=ast.Store())],value=ast.Name(id=localName,ctx=ast.Load()),lineno=index,col_offset=0)) |
| 234 | + cell["newText"] = ast.unparse(base) |
| 235 | + if cell.get('type') == 'code': |
| 236 | + |
| 237 | + # cellsToScopes: dict[str, int] = self.schema.get("cellsToScopes", {}) |
| 238 | + # currentContext: int = cellsToScopes.get(str(cell.get('id')), -1) |
| 239 | + |
| 240 | + # if currentContext == -1: |
| 241 | + # print('couldnt find scope!') |
| 242 | + # break; |
| 243 | + |
| 244 | + # data = self._pb.ast_transformer.getStoredData() |
| 245 | + # data.currentContext = currentContext |
| 246 | + # self._pb.ast_transformer.setStoredData(data) |
| 247 | + self._pb.pre_run_cell(ExecutionInfo("", False, True, False, cell.get('id'))) |
| 248 | + text = cell.get("source") |
| 249 | + program_ast = self.shell.compile.ast_parse(self.shell.transform_cell(text)) |
| 250 | + transformed = self._pb.ast_transformer.visit(program_ast) |
| 251 | + newText = ast.unparse(transformed) |
| 252 | + cell["newText"] = newText |
| 253 | + |
| 254 | + print(json.dumps(cellList)) |
| 255 | + # program_ast = self.shell.compile.ast_parse(msg) |
| 256 | + # # program_ast = asttokens.ASTTokens(msg,parse=True) |
| 257 | + # transformed = self._pb.ast_transformer.visit(program_ast) |
| 258 | + # print(ast.dump(transformed)) |
| 259 | + # Assign(targets=[Name(id='pb_0_a', ctx=Store())], value=Constant(value=2)) |
| 260 | + # print(ast.unparse(transformed)) |
| 261 | + return |
| 262 | + @line_magic |
| 263 | + def pb_transform_export(self,line): |
| 264 | + msg = typing.cast(str,line) |
| 265 | + pbnum = int(msg) |
| 266 | + print(pbnum) |
| 267 | + exportvars = self._pb.ast_transformer.getStoredData().exportedVariables.get(pbnum) |
| 268 | + print(exportvars) |
| 269 | + base = ast.Module(body=[],type_ignores=[]) |
| 270 | + |
| 271 | + for var,index in zip(exportvars,range(len(exportvars))): |
| 272 | + exportName = pagebreaksip.transformName(var,pbnum,True) |
| 273 | + localName = pagebreaksip.transformName(var,pbnum,False) |
| 274 | + base.body.append(ast.Assign(targets=[ast.Name(id=exportName,ctx=ast.Store())],value=ast.Name(id=localName,ctx=ast.Load()),lineno=index,col_offset=0)) |
| 275 | + print(ast.unparse(base)) |
| 276 | + return |
211 | 277 | @cell_magic
|
212 | 278 | def pb_update(self, line, cell):
|
213 | 279 | "Magic that works both as %lcmagic and as %%lcmagic"
|
|
0 commit comments