aboutsummaryrefslogtreecommitdiff
path: root/Lib/fontTools/ttLib/tables/DefaultTable.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/fontTools/ttLib/tables/DefaultTable.py')
-rw-r--r--Lib/fontTools/ttLib/tables/DefaultTable.py47
1 files changed, 47 insertions, 0 deletions
diff --git a/Lib/fontTools/ttLib/tables/DefaultTable.py b/Lib/fontTools/ttLib/tables/DefaultTable.py
new file mode 100644
index 00000000..3a6886c4
--- /dev/null
+++ b/Lib/fontTools/ttLib/tables/DefaultTable.py
@@ -0,0 +1,47 @@
+from __future__ import print_function, division, absolute_import
+from fontTools.misc.py23 import *
+from fontTools.ttLib import getClassTag
+
+class DefaultTable(object):
+
+ dependencies = []
+
+ def __init__(self, tag=None):
+ if tag is None:
+ tag = getClassTag(self.__class__)
+ self.tableTag = Tag(tag)
+
+ def decompile(self, data, ttFont):
+ self.data = data
+
+ def compile(self, ttFont):
+ return self.data
+
+ def toXML(self, writer, ttFont, progress=None):
+ if hasattr(self, "ERROR"):
+ writer.comment("An error occurred during the decompilation of this table")
+ writer.newline()
+ writer.comment(self.ERROR)
+ writer.newline()
+ writer.begintag("hexdata")
+ writer.newline()
+ writer.dumphex(self.compile(ttFont))
+ writer.endtag("hexdata")
+ writer.newline()
+
+ def fromXML(self, name, attrs, content, ttFont):
+ from fontTools.misc.textTools import readHex
+ from fontTools import ttLib
+ if name != "hexdata":
+ raise ttLib.TTLibError("can't handle '%s' element" % name)
+ self.decompile(readHex(content), ttFont)
+
+ def __repr__(self):
+ return "<'%s' table at %x>" % (self.tableTag, id(self))
+
+ def __ne__(self, other):
+ return not self.__eq__(other)
+ def __eq__(self, other):
+ if type(self) != type(other):
+ return NotImplemented
+ return self.__dict__ == other.__dict__