Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
240 changes: 142 additions & 98 deletions documentation/source/environments/objects/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Environments will need to implement their own subclasses of:

.. toctree::
:maxdepth: 1
:hidden:


font
info
Expand All @@ -31,108 +31,152 @@ Environments will need to implement their own subclasses of:
guideline
image

Each of these require their own specific environment overrides, but the general structure follows this form::
Structure
=========

Each of these require their own specific environment overrides, but the general structure follows this form:

Import and declaration
----------------------

::

from fontParts.base import BaseSomething

class MySomething(BaseSomething):


# Initialization:
# This will be called when objects are initialized.
# The behavior, args and kwargs may be designed by the
# subclass to implement specific behaviors.

def _init(self, myObj):
self.myObj = myObj

# Comparison:
# The __eq__ method must be implemented by subclasses.
# It must return a boolean indicating if the lower level
# objects are the same object. This does not mean that two
# objects that have the same content should be considered
# equal. It means that the object must be the same. The
# corrilary __ne__ is optional to define.
#
# Note that the base implentation of fontParts provides
# __eq__ and __ne__ methods that test the naked objects
# for equality. Depending on environmental needs this can
# be overridden.

def __eq__(self, other):
return self.myObj == other.myObj

def __ne__(self, other):
return self.myObj != other.myObj

# Properties:
# Properties are get and set through standard method names.
# Within these methods, the subclass may do whatever is
# necessary to get/set the value from/to the environment.

def _get_something(self):
return self.myObj.getSomething()

def _set_something(self, value):
self.myObj.setSomething(value)

# Methods:
# Generally, the public methods call internal methods with
# the same name, but preceded with an underscore. Subclasses
# may implement the internal method. Any values passed to
# the internal methods will have been normalized and will
# be a standard type.

def _whatever(self, value):
self.myObj.doWhatever(value)

# Copying:
# Copying is handled in most cases by the base objects.
# If subclasses have a special class that should be used
# when creating a copy of an object, the class must be
# defined with the copyClass attribute. If anything special
# needs to be done during the copying process, the subclass
# can implement the copyData method. This method will be
# called automatically. The subclass must call the base class
# method with super.

copyClass = MyObjectWithoutUI

def copyData(self, source):
super(MySomething, self).copyData(source)
self.myObj.internalThing = source.internalThing

# Environment updating:
# If the environment requires the scripter to manually
# notify the environment that the object has been changed,
# the subclass must implement the changed method. Please
# try to avoid requiring this.

def changed(self):
myEnv.goUpdateYourself()

# Wrapped objects:
# It is very useful for scripters to have access to the
# lower level, wrapped object. Subclasses implement this
# with the naked method.

def naked(self):
return self.myObj

All methods that must be overridden are labeled with "Subclasses must override this method." in the method's documentation string. If a method may optionally be overridden, the documentation string is labeled with "Subclasses may override this method." All other methods, attributes and properties **must not** be overridden.

An example implementation that wraps the defcon library with fontParts is located in fontParts/objects/fontshell.
Initialization
--------------

Data Normalization
==================
This will be called when objects are initialized. The behavior, args and kwargs may be designed by the subclass to implement specific behaviors::

When possible, incoming and outgoing values are checked for type validity and are coerced to a common type for return. This is done with a set of functions located here:
def _init(self, myObj):
self.myObj = myObj

.. toctree::
:maxdepth: 1
Comparison
----------

The ``__eq__`` method must be implemented by subclasses. It must return a boolean indicating if the lower level objects are the same object. This does not mean that two objects that have the same content should be considered equal; it means that the object must be the same. The corrilary ``__ne__`` is optional to define. ::

def __eq__(self, other):
return self.myObj == other.myObj

def __ne__(self, other):
return self.myObj != other.myObj

.. note::

The base implentation of fontParts provides ``__eq__`` and ``__ne__`` methods that test the naked objects for equality. Depending on environmental needs these can be overridden.

Properties
----------

Properties in FontParts are accessed and modified using standardized getter and setter method names. To support subclassing of these accessors independently, FontParts uses a special class: :class:`~fontParts.base.dynamicProperty`.

A property built with :class:`~fontParts.base.dynamicProperty` typically looks like this::

something = dynamicProperty(...)

def _get_base_something(self):
value = self._get_something()
...
return value

def _set_base_something(self, value):
...
self._set_something(value)

def _get_something(self)
self.raiseNotImplementedError()

def _set_something(self, value):
self.raiseNotImplementedError()

The ``_get_something`` and ``set_something`` methods are the *environment-level
implementations*. Subclasses override these to define how the value is retrieved from or written to the actual object in the environment::

def _get_something(self):
...
return self.myObj.getSomething()

def _set_something(self, value):
...
self.myObj.setSomething(value)

Subclasses do *not* need to handle normalization or validation of data. That logic is
handled by the base class methods:

- ``_get_base_something`` calls ``_get_something``, validates and normalizes the return value, and provides it to the scripter.

- ``_set_base_something`` takes the value from the scripter, validates and normalizes it, then passes it to ``_set_something``.


See :ref:`data-normalization` below for more information about normalization in FontParts.

Methods
-------

Generally, the public methods call internal methods with the same name, but preceded with an underscore (``_``). Subclasses may implement the internal method. Any values passed to the internal methods will have been normalized and will be a standard type. ::

def _whatever(self, value):
self.myObj.doWhatever(value)

Copying
-------

Copying is handled in most cases by the base objects. If subclasses have a special class that should be used when creating a copy of an object, the class must be defined with the `copyClass` attribute. If anything special needs to be done during the copying process, the subclass can implement the :meth:`~fontParts.base.BaseObject.copyData` method. This method will be called automatically. The subclass must call the base class method with super. ::

copyClass = MyObjectWithoutUI

def copyData(self, source):
super(MySomething, self).copyData(source)
self.myObj.internalThing = source.internalThing

Environment updating
--------------------

If the environment requires the scripter to manually notify the environment that the object has been changed, the subclass must implement the changed method. Please try to avoid requiring this. ::

def changed(self):
myEnv.goUpdateYourself()

Wrapped objects
---------------

It is very useful for scripters to have access to the lower level, wrapped object. Subclasses implement this with the naked method. ::

def naked(self):
return self.myObj

All methods that must be overridden are labeled with the following note in the method's documentation string:

.. important::

Subclasses must override this method.

If a method may optionally be overridden, the documentation string is labeled with:

.. note::

Subclasses may override this method.

All other methods, attributes and properties **must not** be overridden.

An example implementation that wraps the defcon library with fontParts is located in ``fontParts/objects/fontshell``.

.. _data-normalization:

Data Normalization
==================

objects/normalizers
When possible, incoming and outgoing values are checked for type validity and are coerced to a common type for return. This is done with a set of functions located in the :mod:`~fontParts.base.normalizers` module.

These are done in a central place rather than within the objects for consitency. There are many cases where a ``(x, y)`` tuple is defined and than rewriting all of the code to check if there are exactly two values, that each is an ``int`` or a ``float`` and so on before finally making sure that the value to be returned is a ``tuple`` not an instance of ``list``, ``OrderedDict`` or some native object we consolidate the code into a single function and call that.
In many cases, a ``(x, y)`` tuple needs to be validated. Instead of repeatedly writing
code to check that there are exactly two values, that each is an :class:`int` or
:class:`float`, and that the result is a :class:`tuple` (not a :class:`list`,
:class:`set`, or some other type), we use a single function to handle all these checks
in one place.

Environment Specific Methods, Attributes and Arguments
======================================================
Expand All @@ -144,7 +188,7 @@ FontParts is designed to be environment agnostic. Therefore, it is a 100% certai
def doSomething(self, skip=None, double=None):
# go

This *will* work. However, if FontParts adds a ``doSomething`` method in a later version that does something other than what or accepts different arguments than your method does, it's not going to work. Either the ``doSomething`` method will have to be changed in your implementation or you will not support the FontParts ``doSomething`` method. This is going to be lead to you being mad at FontParts, your scripters being mad at you or something else unpleasant.
This *will* work. However, if FontParts adds a ``doSomething`` method in a later version that does something different or accepts different arguments than your method does, it's not going to work. Either the ``doSomething`` method will have to be changed in your implementation or you will not support the FontParts ``doSomething`` method. This is going to be lead to you being mad at FontParts, your scripters being mad at you or something else unpleasant.

The solution to this problem is to prevent it from happening in the first place. To do this, environment specific methods, proprties and attributes must be prefixed with an environment specific tag followed by an ``_`` and then your method name. For example::

Expand All @@ -158,9 +202,9 @@ This applies to any method, attribute or property additions to the FontParts obj
Method Arguments
----------------

In some cases, you are likely to discover that your environment supports specific options in a method that are not supported by the environment agnostic API. For example, your environment may have an optional heuristic that can be used in the ``font.autoUnicodes`` method. However, the ``font.autoUnicodes`` method does not have a ``useHeuristics`` argument. Unfortunately, Python doesn't offer a way to handle this in a way that is both flexible for developers and friendly for scripters. The only two options for handling this are:
In some cases, you are likely to discover that your environment supports specific options in a method that are not supported by the environment agnostic API. For example, your environment may have an optional heuristic that can be used in the :meth:`~fontParts.base.BaseFont.autoUnicodes` method. However, this method does not have a `useHeuristics` argument. Unfortunately, Python doesn't offer a way to handle this in a way that is both flexible for developers and friendly for scripters. The only two options for handling this are:

#. Create an environment specific clone of the ``font.autoUnicodes`` method as ``myapp_autoUnicodes`` and add your ``useHeuristics`` argument there.
#. Contact the FontParts developers by opening a GitHub issue requesting support for your argument. If it is generic enough, we may add support for it.
#. Create an environment specific clone of the :meth:`~fontParts.base.BaseFont.autoUnicodes` method as ``myapp_autoUnicodes`` and add your `useHeuristics` argument there.
#. Contact the FontParts developers by opening a `GitHub <https://github.com/robotools/fontParts>`_ issue requesting support for your argument. If it is generic enough, we may add support for it.

We're experimenting with a third way to handle this. You can see it as the ``**environmentOptions`` argument in the :meth:`BaseFont.generate` method. This may or may not move to other methods. Please contact us if you are interested in this being applied to other methods.
We're experimenting with a third way to handle this. You can see it as the `**environmentOptions` argument in the :meth:`~fontParts.base.BaseFont.generate` method. This may or may not move to other methods. Please contact us if you are interested in this being applied to other methods.