Improve dealing with Transcrypt's funky aliases

Transcrypt issue 414
This commit is contained in:
RunasSudo 2017-12-05 19:40:26 +10:30
parent 6100ac6368
commit 4f1f0cf042
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
6 changed files with 34 additions and 21 deletions

View File

@ -30,9 +30,6 @@ for f in eos.js_tests; do
# Transcrypt by default suppresses stack traces for some reason?? # Transcrypt by default suppresses stack traces for some reason??
perl -0777 -pi -e 's/__except0__.__cause__ = null;//g' eos/__javascript__/$f.js perl -0777 -pi -e 's/__except0__.__cause__ = null;//g' eos/__javascript__/$f.js
# Disable handling of special attributes
perl -0777 -pi -e 's/var __specialattrib__ = function \(attrib\) \{/var __specialattrib__ = function (attrib) { return false;/g' eos/__javascript__/$f.js
# Fix handling of properties, Transcrypt bug #407 # Fix handling of properties, Transcrypt bug #407
perl -077 -pi -e 's/var __get__ = function \(self, func, quotedFuncName\) \{/var __get__ = function (self, func, quotedFuncName) { if(typeof(func) != "function"){return func;}/g' eos/__javascript__/$f.js perl -077 -pi -e 's/var __get__ = function \(self, func, quotedFuncName\) \{/var __get__ = function (self, func, quotedFuncName) { if(typeof(func) != "function"){return func;}/g' eos/__javascript__/$f.js
perl -0777 -pi -e 's/property.call \((.*?), \g1.\g1.__impl__(.*?)\)/property.call ($1, $1.__impl__$2)/g' eos/__javascript__/$f.js perl -0777 -pi -e 's/property.call \((.*?), \g1.\g1.__impl__(.*?)\)/property.call ($1, $1.__impl__$2)/g' eos/__javascript__/$f.js

View File

@ -297,7 +297,17 @@ class DocumentObjectType(EosObjectType):
val = getattr(cls, attr) val = getattr(cls, attr)
if isinstance(val, Field): if isinstance(val, Field):
val._instance = (cls, name) val._instance = (cls, name)
fields[attr] = val
# Transcrypt does funky things with aliases, which are usually helpful, but not here
if not is_python and attr.startswith('py_'):
real_attr = attr[3:]
else:
real_attr = attr
val.real_name = real_attr # The JSON/Python name
val.internal_name = attr # The name that gets passed in as kwargs in Javascript
fields[real_attr] = val
delattr(cls, attr) delattr(cls, attr)
cls._fields = fields cls._fields = fields
@ -316,7 +326,9 @@ class DocumentObjectType(EosObjectType):
return property(field_getter, field_setter) return property(field_getter, field_setter)
for attr, val in fields.items(): for attr, val in fields.items():
setattr(cls, attr, make_property(attr, val)) setattr(cls, val.real_name, make_property(val.real_name, val))
#if val.real_name != val.internal_name:
# setattr(cls, val.internal_name, make_property(val.real_name, val))
else: else:
# Handled at instance level # Handled at instance level
pass pass
@ -348,24 +360,29 @@ class DocumentObject(EosObject, metaclass=DocumentObjectType):
if not value._inited: if not value._inited:
value.post_init() value.post_init()
return (field_getter, field_setter) return (field_getter, field_setter)
prop = make_property(attr, val) prop = make_property(val.real_name, val)
# TNYI: No support for property() # TNYI: No support for property()
Object.defineProperty(self, attr, { Object.defineProperty(self, val.real_name, {
'get': prop[0],
'set': prop[1]
})
if val.real_name != val.internal_name:
# Allow reference as e.g. both obj.py_name (from Python code) and obj.name (from JS templates)
Object.defineProperty(self, val.internal_name, {
'get': prop[0], 'get': prop[0],
'set': prop[1] 'set': prop[1]
}) })
if attr in kwargs: if val.internal_name in kwargs:
setattr(self, attr, kwargs[attr]) setattr(self, val.real_name, kwargs[val.internal_name])
else: else:
default = val.default default = val.default
if default is not None and callable(default): if default is not None and callable(default):
default = default() default = default()
setattr(self, attr, default) setattr(self, val.real_name, default)
# TNYI: Strange things happen with py_ attributes
def serialise(self, for_hash=False, should_protect=False): def serialise(self, for_hash=False, should_protect=False):
return {(attr[3:] if attr.startswith('py_') else attr): val.serialise(getattr(self, attr), for_hash, should_protect) for attr, val in self._fields.items() if ((val.is_hashed or not for_hash) and (not should_protect or not val.is_protected))} return {val.real_name: val.serialise(getattr(self, val.real_name), for_hash, should_protect) for attr, val in self._fields.items() if ((val.is_hashed or not for_hash) and (not should_protect or not val.is_protected))}
@classmethod @classmethod
def deserialise(cls, value): def deserialise(cls, value):
@ -374,9 +391,8 @@ class DocumentObject(EosObject, metaclass=DocumentObjectType):
attrs = {} attrs = {}
for attr, val in cls._fields.items(): for attr, val in cls._fields.items():
json_attr = attr[3:] if attr.startswith('py_') else attr if attr in value:
if json_attr in value: attrs[val.internal_name] = val.deserialise(value[val.real_name])
attrs[attr] = val.deserialise(value[json_attr])
return cls(**attrs) return cls(**attrs)
class TopLevelObject(DocumentObject): class TopLevelObject(DocumentObject):

View File

@ -73,7 +73,7 @@ class ObjectTestCase(EosTestCase):
def setUpClass(cls): def setUpClass(cls):
class Person(TopLevelObject): class Person(TopLevelObject):
name = StringField() name = StringField()
address = StringField(default=None) address = StringField(default='Default address')
def say_hi(self): def say_hi(self):
return 'Hello! My name is ' + self.name return 'Hello! My name is ' + self.name
@ -81,10 +81,10 @@ class ObjectTestCase(EosTestCase):
def test_basic(self): def test_basic(self):
person1 = self.Person(name='John', address='Address 1') person1 = self.Person(name='John', address='Address 1')
person2 = self.Person(name='James', address='Address 2') person2 = self.Person(name='James')
self.assertEqual(person1.address, 'Address 1') self.assertEqual(person1.address, 'Address 1')
self.assertEqual(person2.address, 'Address 2') self.assertEqual(person2.address, 'Default address')
self.assertEqual(person1.say_hi(), 'Hello! My name is John') self.assertEqual(person1.say_hi(), 'Hello! My name is John')
self.assertEqual(person2.say_hi(), 'Hello! My name is James') self.assertEqual(person2.say_hi(), 'Hello! My name is James')

View File

@ -16,7 +16,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
#} #}
<h1>{{ election.py_name }}</h1> <h1>{{ election.name }}</h1>
<p><small><b>{{ election.kind|title }} fingerprint:</b> <span class="hash">{{ eosjs.eos.core.hashing.__all__.SHA256().update_obj(election).hash_as_b64() }}</span></small></p> <p><small><b>{{ election.kind|title }} fingerprint:</b> <span class="hash">{{ eosjs.eos.core.hashing.__all__.SHA256().update_obj(election).hash_as_b64() }}</span></small></p>

View File

@ -23,7 +23,7 @@
<div class="ui success message"> <div class="ui success message">
<div class="header">Smart ballot tracker</div> <div class="header">Smart ballot tracker</div>
<p>This smart ballot tracker confirms that {{ voter.py_name }} cast a vote in the election {{ election.py_name }} at {{ vote.cast_at }}.</p> <p>This smart ballot tracker confirms that {{ voter.name }} cast a vote in the election {{ election.py_name }} at {{ vote.cast_at }}.</p>
<p>Ballot fingerprint: <span class="hash">{{ eosjs.eos.core.hashing.__all__.SHA256().update_obj(vote.ballot).hash_as_b64() }}</span></p> <p>Ballot fingerprint: <span class="hash">{{ eosjs.eos.core.hashing.__all__.SHA256().update_obj(vote.ballot).hash_as_b64() }}</span></p>
</div> </div>

View File

@ -19,7 +19,7 @@
#} #}
{% block content %} {% block content %}
<p>Welcome to the {{ election.py_name }} voting booth.</p> <p>Welcome to the {{ election.name }} voting booth.</p>
<p>Follow the on-screen directions to prepare and cast your ballot in this {{ election.kind }}. The bar above will show your progress. Please note that your ballot will <b>not be cast until</b> you complete the final ‘Cast ballot’ stage and receive a <b>‘smart ballot tracker’</b>.</p> <p>Follow the on-screen directions to prepare and cast your ballot in this {{ election.kind }}. The bar above will show your progress. Please note that your ballot will <b>not be cast until</b> you complete the final ‘Cast ballot’ stage and receive a <b>‘smart ballot tracker’</b>.</p>
<p>If at any point you wish to return to a previous screen, click the ‘Back’ button below.</p> <p>If at any point you wish to return to a previous screen, click the ‘Back’ button below.</p>
<p>If you wish, you may disconnect your internet connection now while preparing your ballot, however you must re-connect your internet connection before logging in to cast your ballot.</p> <p>If you wish, you may disconnect your internet connection now while preparing your ballot, however you must re-connect your internet connection before logging in to cast your ballot.</p>