Skip to content

Commit f6576e2

Browse files
authored
Transform NB and who_pb study change (#5)
* update pandas and numpy dependencies, change python req * update dependencies * ignore virtualenv * update runner python * transform pb nb to regular nb * remove value from who_pb
1 parent 82308ef commit f6576e2

File tree

7 files changed

+362
-43
lines changed

7 files changed

+362
-43
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
from pagebreaksip.pagebreaks_ip import load_ipython_extension, unload_ipython_extension
2-
__all__ = ["load_ipython_extension","unload_ipython_extension"]
1+
from pagebreaksip.pagebreaks_ip import (load_ipython_extension, transformName,
2+
unload_ipython_extension)
3+
4+
__all__ = ["load_ipython_extension","unload_ipython_extension","transformName"]
5+
from pagebreaksip import pagebreak_magic, pagebreaks_ip

backend/pagebreaksip/src/pagebreaksip/pagebreak_magic.py

+101-35
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
from __future__ import print_function
22

3+
import ast
34
import json
45
import re
56
import sys
67
import typing
78
from typing import Any, Dict, List, Set, Tuple, Type
89

910
import jsondiff as jd
11+
import pagebreaksip
12+
from IPython.core.interactiveshell import ExecutionInfo
1013
from IPython.core.magic import (Magics, cell_magic, line_cell_magic,
1114
line_magic, magics_class)
1215
from IPython.core.magics.namespace import NamespaceMagics
@@ -22,11 +25,12 @@
2225
@magics_class
2326
class pagebreak_magics(Magics):
2427

25-
def __init__(self, shell):
28+
def __init__(self, shell, pb):
2629
super(pagebreak_magics, self).__init__(shell)
2730
self.shell: TerminalInteractiveShell = shell
2831
self.schema = None
2932
self.currentJSON = None
33+
self._pb = pb
3034

3135
@line_magic
3236
def print_schema(self, line):
@@ -114,44 +118,46 @@ def get_type(vv):
114118
exportedwidth = len(exportedLabel) + colsep
115119
scopewidth = len(scopeLabel) + colsep
116120
# 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+
)
119125
# and the table itself
120126
kb = 1024
121127
Mb = 1048576 # kb**2
122128
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:])
155161

156162
for scopeNum in sorted(varsByScope):
157163
# print("Pagebreak : ", str(scopeNum))
@@ -207,7 +213,67 @@ def pb_log(self, line, cell):
207213
else:
208214
study_logger.info(cell)
209215
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
210222

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
211277
@cell_magic
212278
def pb_update(self, line, cell):
213279
"Magic that works both as %lcmagic and as %%lcmagic"

backend/pagebreaksip/src/pagebreaksip/pagebreaks_ip.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ def load_ipython_extension(ip: TerminalInteractiveShell):
777777
ip.run_line_magic("lsmagic", "")
778778
existing_pb_magic = ip.find_magic("%pb_update", "line")
779779
if existing_pb_magic is None:
780-
_pb_magics = pagebreak_magics(ip)
780+
_pb_magics = pagebreak_magics(ip,_pb)
781781
ip.register_magics(_pb_magics)
782782
_pb.set_magics(_pb_magics)
783783
else:

schema/plugin.json

+8
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,13 @@
3333
"command": "toolbar-button:run-pagebreak"
3434
}
3535
]
36+
},
37+
"jupyter.lab.menus": {
38+
"context":[
39+
{
40+
"command": "docmanager:convert-pagebreak",
41+
"selector": "[data-type=\"document-title\"]",
42+
"rank": 29
43+
}]
3644
}
3745
}

0 commit comments

Comments
 (0)