You are viewing the Articles published in

AS3 HashMap Update

I have updated the HashMap API to provide additional functionality which comes in handy when working with managed key / value pairs.

Additionally, I have also modified the HashMap class from an “is-a” to a “has-a” relationship as the previous version was a derivation of Dictionary, thus exposing the map and consequently causing a security breach in the API. This has been fixed as of this update as the map is now private rather than the object itself.

The original IMap interface I created was modeled loosely after operations which are typical of the Java Map interface. However I have identified additional operations which are useful when working with key / value pairs. These new operations have been implemented in the latest HashMap class and comprise all of the new methods.

Below is a list of the additional methods which have been implemented in the HashMap update:

  1. getValues: Retrieves all of the values assigned to each key in the specified map
  2. reset: Resets all key assignments in the HashMap instance to null
  3. resetAllExcept: Resets all key / values defined in the HashMap to null with the exception of the
    specified key
  4. clearAllExcept: Clears all key / values defined in the HashMap to null with the exception of the specified key

You can view the latest HashMap API source for the IMap interface and HashMap implementation. Each method is accompanied by a detailed example.

AS3 BinaryConversion Utility

There are certain utility classes one would expect to have been included as part of the Flash Player API or the Flex framework, however they do not always exist.

For instance, I have been working with binary data and needed an API which would convert Decimal Numbers to their Binary equivalents, however after spending some time searching the packages on livedocs I realized that nothing had been provided. So I decided to roll my own.

The BinaryConversion utility is an all static class which will convert decimal numbers to their 4, 8, 16 or 32-bit binary equivalents, respectively. For the most part you may never need to use this API unless you need to convert decimal numbers to specific binary equivalents, however it is very useful if you need a quick Decimal to Binary conversion utility which also provides bit range validation.

You can view the BinaryConversion example as well as the source code.

BinaryConversion is protected under the MIT license.

Flex 3 ResourceInspector

Adobe Flex 3 introduces the ability to implement runtime localization via compiled resource modules. This opens up numerous possibilities for creating localized applications with Adobe Flex.

Flex Developers now have the ability to compile resources into resource modules rather than compiling the resources into the application directly. Resource modules can be preloaded for the appropriate locale when the application starts as well as loaded at runtime in order to allow switching of locales. Additionally, resources can be compiled for multiple locales into a single application or resource module.

Resources now must be accessed through the new ResourceManager (which is very similar to my original Flex 2 ResourceManager), which handles managing multiple resources for all locales.

Bindings which reference resources via the new ResourceManager automatically update if the locale changes so as to notify the components when the locale changes, allowing them to update themselves appropriately. You can also use images, sounds and so forth as resources.

Developers can programatically create resources at runtime and use them just as one would with resources which were compiled from properties files, thus allowing the ability to create resources at runtime from downloaded XML documents, service results, etc.

The ability to inspect ResourceBundles at runtime has been something which I have been specifically waiting for. This too is also available via the read-only content property on a ResourceBundle. This property can be used to retrieve the key / value pairs defined in a .properties file.

To help facilitate inspecting the contents of a ResourceBundle I have created a ResouceInspector API which provides a detailed view into a ResourceBundle. The ResouceInspector is an all static class which provides a very robust API for performing detailed inspection of the contents of a ResourceBundle.

ResouceInspector is protected under the MIT license. Check it out here.

AIR Cairngorm / Cairngen update

I have updated the AIR Cairngorm framework to support itemClasses so as to allow developers to specify an itemClass on a SQLService instance.

The SQLStatement class in Adobe AIR defines a public property “itemClass” (typically a VO), which, if specified will be used as the data type for each row returned by a SQLStatement execution result.

Developers utilizing the AIR Cairngorm framework can now set a specific itemClass as an additional argument for each SQLService. execute(); invocation.

The updated source, example and air-cairngen projects can be downloaded here.

AIR Cairngorm (AIR extensions for Cairngorm)

I have developed an open source ActionScript 3 project called “AIR Cairngorm” which is intended to provide a framework for working with the new Adobe AIR services while utilizing the Cairngorm-micro architecture.

When I say AIR Services, I am referring to the SQLite and FileSystem APIs, which are available in Adobe AIR.

AIR Cairngorm provides a framework which developers can employee to build typical Cairngorm applications that utilize these services.

The following is a brief description of the AIR Cairngorm API:

AIRServiceLocator: The AIRServiceLocator is a sub class of Cairngorm ServiceLocator, therefore it inherits the same API as ServiceLocator, and adds an additional API for working with local databases.
view source

SQLService: The SQLService is essentially a wrapper class for the SQLStatement and SQLConnection classes. The SQLService class allows developers to create an mxml implementation just as one would with typical HTTPServices, WebService and so forth in a Cairngorm ServiceLocator.
view source

ISQLResponder: ISQLResponder provides a consistent API from which asynchronous SQLStatement execution results and faults can be handled. ISQLResponder is very similar to IResponder in that it defines both a result and fault handler with a slightly different signature which is specific to a SQLStatement result / fault, (i.e strongly typed parameters).
view source

ISQLStatementResource
: ISQLStatementResource is a marker interfaces which is intended to improve code readability by indicating that a class which implements this interface is to provide access to external SQL statements defined in a .properties file.
view source

SQLStatementHelper: SQLStatementHelper is an all static utility class which provides a mechanism for substituting tokens specified in a statement with arbitrary values.
view source

I am also releasing an update to Cairngen (though only a dot release) which supports the AIR Cairngorm API. Cairngen will now provide targets for generating business delegates which utilize the AIR Cairngorm services.

I suspect Adobe will release an updated version of Cairngorm which supports integration with AIR applications. AIR Cairngorm provides an interim solution which developers can use under the terms specified in the License.

I plan to update AIR Cairngorm to support the AIR File system API within the next week or so.

Below I have provided downloads for the source, binary, AIR Cairngen and usage example:
source
example
air-cairngen
air-cairngorm

Adobe AIR SQL interfaces

I have been working with the new SQL API for Adobe AIR which is available as of Flex 3 beta.

The new SQL capabilities provide numerous possibilities when developing online / offline desktop applications in Adobe AIR which require data to be persisted locally when not connected.

The SQLConnection and SQLStatement classes provide everything you need for working with a SQLite database. The SQLEvent and SQLResult classes provide an API into asynchronous statement executions from which query result and faults can be handled.

After initially working with the new classes I began to recognize the need for some interfaces which could assist in managing query results. With that being said I have created some straight forward interfaces which you can utilize to handle SQLConnection and SQLStatement results in order to handle SQLResults and SQLEvents uniformly.

The ISQLConnectionResponder interface defines a contract for classes that must provide an API which handles SQLEvent objects dispatched via a SQLConnection instance. The ISQLStatementResponder defines the contract for classes which must handle successfull SQLEvents dispatched via a SQLStatement instance. These interfaces are targeted at wrapper APIs for the SQLConnection and SQLStatement classes, therefore as a best practice they should be implemented in a has-a relationship design.

I am also in the process of developing an AIR specific ServiceLocator which integrates into the Adobe Cairngorm framework which will allow AIR application to utilizing the SQLite API to be built with Adobe Cairngorm. This will provide a temporary solution while we await a Cairngorm update which addresses this. As always I will publish the AIRServiceLocator as open source once completed.