Archive for the ‘Flex’ Category
In part one, I introduced some of the things that I believe convolute the Flex third party framework space – primarily the influence of MVC. The history around this pattern, particularly in the Java world, has allowed frameworks to gain mindshare that do little but help enforce the pattern. This post is about bringing the focus back to features that make life easier on developers by allowing them to build the things that users care about faster and/or easier. That’s really what third party frameworks should aim to do.
So, moving forward by pretending that no one will disagree with that assertion, here is the overview of what would be in my perfect Flex application development framework:
- Separation of Concerns (SoC):
In Flex development, there is a need for something outside of the core framework to help developers adhere to a separation in the application code. In reality it is not the most difficult or interesting part of the problem, but would likely be a part of any complete third-party framework. I personally prefer the Swiz dependency injection approach for this. Also, there are likely a number of interesting things one could add on top of a dependency injection foundation, as we have seen with the SpringFramework in Java.
Looking at the Swiz implementation, one can also conclude that the underlying platform needs to grow so that this can be supported in a more native way and increase the possibility that greater leverage can be gained from introducing dependency injection to Flex applications.
- Client Side Data Management (think client side Hibernate):
RIA introduced (or re-introduced) the notion of client side data / state. In traditional page based applications, the developer never had to consider this possibility, as all state is kept and tracked on the server. With advanced RIA features, state is often changed on the client, but not immediately sent back to the server. This introduces a number of challenges in managing data state between the client and the server. Thus, there is a need for infrastructure to support data synchronization between the client and server.
Both LiveCycle Data Service (LCDS) and Clear Toolkit include features that help the developer with this to a certain extent, but they rely on the specific server implementations. In my perfect imaginary world, this would all be done client-side agnostic of what server is providing the data so that one could use it regardless of what technology is providing the data.
This may even be coming in the next version of Flash Builder:
“Of course, data-centric applications are about more than just binding operations to components. Flash Builder lets you enable client side data management for your services, allowing on-demand fetching of data for easy and efficient scrolling through large collections of data; change tracking, allowing users to undo actions, and automating the common CRUD (create, read, update, & delete) functions that usually need to be hand-coded. The results are applications that deliver users a richer experience than is possible with ordinary HTML front ends.”
- Security:
In any enterprise application, there are security considerations at multiple levels. There are a number of methods and strategies for dealing with authentication, but not many Flex tools for addressing authorization. In the simplest form, one can break out authorization into the following categories: service/method level, data level, and filtering what each user can view on the screen. Securing services and data pretty much have to be handled on the server, but something is necessary to control what the user sees on the client.
There are not many libraries I know of for implementing this common requirement. My current preference is my Chimp component for doing this declaratively through Flex metadata. Many just deal with this manually in each component, others monkey patch to add filtering logic on UIComponent or within View States. Ideally, features for dealing with this challenge would make it into any complete third-party framework.
- Global Event Bus:
In Mate, basically every event is handled through the Mate event bus. Having a global event bus can invaluable in implementing a number of RIA features. Yet, handling every single event this way seems a bit odd to me. I think Flex events can be broken into four categories:
Component Events: These are events that are only omitted and handled inside the component. Think of a component that has children and they need to communicate between one another.
Local Events: These events are omitted by components that can be handled by within the context that the component is used.
Global & Data Change Events: Events that any arbitrary part of the system may want to be notified of when they happen, such as the user profile has changed.
So, in my mind, the bus is a necessary part of the perfect Flex framework, but shouldn’t be used for handling all events in the system.
Those are my top requirements for the perfect third-party Flex framework. I am sure there are a number of others that it would make sense to add to the list.
In working through this post, I concluded that there is too much focus put into third-party frameworks with Flex. The items I outlined are missing gaps that need to be met with third-party frameworks, or hopefully by the underlying platform someday, but they are not the most challenging things one will encounter when building enterprise Flex applications.
The biggest challenge for Flex applications of any scale is the quality Flash Player virtual machine. The Flash Player has to get faster, better at dealing with memory consumption, and garbage collection. Flex is a good platform for building rich Internet applications, but like any emerging technology it will have to mature to continue to gain adoptions and keep the current developers.
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
|
I just finished up a post on HTML 5 and Flash for InfoQ.com. The news post just covers the conversation happening in the community(s) (not my opinion). I am glad browser standards are finally evolving, and think all developers will benefit from the advancements. Being a Flex developer, I have obviously embraced the idea that third-party plug-ins are not a bad thing when trying to build real applications. It is too early on a Sunday morning to get to far into this debate, but I wanted to throw out a couple of points:
- Since the language around browser standards is very feel good, with terms like “open web,” I think it is often lost how much big companies, such as Google and Mozilla, stand to gain if developers validate their assertions around browser standards. In all reality, the open web vendors are no different than the vendors providing “third party runtimes,” they want / need people to use their platforms.
- The “open web” never existed. Let’s take a look at a quote from Ian Hickson, HTML 5 specification co-editor and Google employee:
“It would be a terrible step backward if humanity’s major development platform [the Web] was controlled by a single vendor the way that previous platforms such as Windows have been.”
Not only does the language seem a bit dramatic to me, but I think there is little risk of this happening (outside of the standards). Historically browser standards have been the main catalyst in bringing us down to the lowest common denominator in web development. We have all worked on projects where the management decided to just build the application to work in IE because the browser standards are unreliably implemented across browsers.
The reality is that the RIA space is currently experiencing wonderful competition across vendors (Flash, Silverlight, JavaFX) with applications being built and deployed on a number of different platforms. Frankly, none of the current platform advancements that are making developers lives easier have come from standards based implementations.
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
|
Filed Under ( Flex, RIA) by jonr on June-21-2009
Here at Gorilla Logic, we are pretty excited about Adobe’s announcement that LiveCycle Data Services 3 beta is now available. The next version of LCDS includes advanced modeling features that look poised to bring true model driven development to Flex developers. Since Gorilla Logic started with the mission of build a model driven engine (the GXE), we are understandably excited that Adobe is bringing model driven development to the Flex development world in LCDS.
If you are interested in learning more about the release, check out my InfoQ.com news post: http://www.infoq.com/news/2009/06/model-driven-dev-with-flex.
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
|
In the past, I have reviewed a number of the popular frameworks commonly used with Adobe Flex (Flight, Clear Toolkit, Cairngorm, PureMVC, Mate, and Swiz). At Gorilla Logic, we love to debate the merits of each of these frameworks and the MVC pattern in general. As an enterprise software development shop, we love architectural things and enjoy being as geeky as possible. Yet, we continue to be a bit confused with the industry’s over infatuation with MVC and frameworks that exist simply to enforce this pattern (or similar patterns). So, I started down the path of contemplating what would make up the perfect Flex framework…
Over the last decade, most web frameworks in enterprise development seem to just focus on the architectural piece of the puzzle, which actually provides the least value to those tasked with building real applications. Look at the vast majority of Java frameworks that do not even attempt to provide a built-in set of components. Also, in the Flex ecosystem, virtually all the major third party Flex frameworks seem to exist with the primary purpose of enforcing / enabling the MVC pattern, with the notable exception of the Clear Toolkit, which provides an interesting set of enterprise features.
Flex brought on a revolution because it exists first and foremost to make developers highly productive in building cool applications. Thus, Flex is a complete platform, and is often the only framework needed for building real applications. It provides the pieces for building within the MVC architecture and a full set of components that meet many of the requirements found in enterprise applications. When looking at any portion of application development, engineers should only be bringing in tools that specifically satisfy the stakeholder’s functional and non-functional requirements, or address risks specifically outlined for the project. With the strength of the Flex platform, one should not start with the assumption that they need to add in third party frameworks.
That said, Flex does have weaknesses and can be improved upon or extended in interesting and useful ways. Also, it can be helpful to have infrastructure that supports developers in properly separating concerns within the application code. Frankly, if the costs of adopting a third party framework to get this infrastructure is low, then there is no reason to fight against bringing in an outside solution. Let’s look at a few of the Flex frameworks to see how they measure up in this respect:
Cairngorm: The cost of adoption and long-term ownership is too high, with the high volume of code required for implementing even the most trivial feature, for one to seriously consider this as an option. The leverage just is not here.
Mate: Mate addresses separation of concerns by providing developers a global event bus for handling events. This approach fits well with the real way Flex applications are built. Although, I tend to believe that not all events are global and likely do not all need to be externalized, but this is certainly an important piece of the puzzle. With a reasonable technical approach to managing events, the overall cost of adopting Mate is low.
Swiz: Swiz is similar to Mate in that it has a limited surface area for developers to learn. Its primary mechanism for separating things out is the use of dependency injection. It is fairly elegant in its syntax and easy to use.
While two of the three outlined above are low cost to adopt, they are also limited in the number of problems they solve for a Flex developer. That’s really what this post is about – working through where the leverage is/should/could/would be in the Perfect Flex Framework. In part two, I make an initial attempt at providing my requirements for the perfect third-party framework.
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
|
A while back I started to put together a list of cases where it might be better to avoid using Flex and/or AIR, but never posted it. I ended up concluding that most of the issues can be addressed if Flex is a fit otherwise. I have never been an engineer that believes that any one technology is a fit for all cases. The other side of that coin is that I don’t believe that any platform is perfect, and you have to accept the pitfalls of whatever you choose.
Anyhow, I decided I should dust it off and put it out there. If, for no other purpose, than to have a good reason to post the facetious list I wrote up to go with it.
Here is the list of potential issues:
- The iPhone:
If you are building an application that must be available on every platform, including ones that have not been created or released yet, then targeting the Flash platform is not ideal. That said, the notion of the platform that is portable across all types of devices and form factors comes up frequently, but in most cases it is entirely unrealistic and undesirable to build real applications with this approach. A better approach is to build applications tailored to each specific device (or at least each genre), such as a native iPhone application with features tailored to a mobile device.
So, in this case the iPhone is symbolic of platforms that do not support Flash and have no published roadmap for supporting 3rd party runtimes. If you are building an application that truly has the requirement of being the same application on the desktop and every mobile device (which certainly exist), then using Flash is a no go. In many of these cases, standard browser technologies are the default option (HTML, CSS, and JavaScript). RIA features can be added by using frameworks like GWT.
- Search:
In 2008, Adobe announced their collaboration with Google and Yahoo to make Flash content searchable. The ability for major search engines to craw a SWF file is a nice step forward. Yet, if you have consumer-facing content that must be searchable, then it may be best to avoid RIA features in general (not just Flex). The search paradigm is heavily dependant on the page-based model. It is a major challenge to build rich applications that can be entered from any direction and properly reconstitute their state.
- Low Bandwidth Clients:
If you are building a system that potentially services a large volume of low bandwidth users, then Flex can present some challenges. The compiled applications are typically quite sizeable. Flex does allow for breaking up the applications with runtime-shared-libraries (RSL’s). With that approach, the Flex SDK still has to be downloaded (just not over-and-over). So, trying to using Flex in this case is a bit of a stretch.
AIR can actually present some real opportunities with offline clients. For example, Parleys.com has reported that low-bandwidth clients love their application because it can download videos overnight for viewing offline.
- Content Centric Applications:
There is a class of content centric applications that fit the hyperlink paradigm and should never be made into RIAs, such as Wikipedia and Craigslist. Certainly, there are a number of applications that combine heavy content along with the need for a number of advanced RIA features. In those cases, Flex / Flash has presented real challenges because of its limited ability to deal with large bodies of text. Many of these limitations are being addressed with the next version of Flex and the recent release of Flash Player 10.
- Local Device Access:
Adobe AIR makes a compelling case for building desktop applications with web technologies, but if you are building an application that requires local device access then it is worth considering more traditional desktop platforms that offer a greater level of access to machine resources. The community has responded to this concern with the Merapi project, but for those looking for major vendor support this is still a valid concern.
Now, the facetious list that highlights a number of reasons one might settle on not using the Flex / Flash platform:
- You prefer not to have a full featured easily extensible set of components.
- You like spending time debugging your Ajax applications in all the different browsers and versions.
- You are a Java developer and too afraid to shell out $250 for an IDE.
- You believe that you can do anything you ever wanted to do in Perl.
- You like working in a 10 year old standard (HTML 4).
- You like the term Open Web, and believe it actually exists.
- You hate quality applications, your clients, and yourself.
Let me know if you have any additions for either list!
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
|
In addition, to my Top 10 Changes in Flex 4 article, my colleague Justin Shacklette and I published an article on DZone titled, What’s New in Flex 4? The article gives those new to Flex a tour of the most important changes that are coming with Flex 4, including a review of the Spark component architecture.
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
|
Filed Under ( AIR, Flex, RIA) by jonr on May-31-2009
The Flex 4 beta is out … confusing name changes and all. InfoQ published my Top 10 Changes in Flex 4 article outlining the changes in the Flex 4 framework / platform. Below is the top 10 categories. Check out the full article for details.
- Integration with Adobe Catalyst
- Spark Component Architecture
- MXML 2009
- Improvements to View States
- FXG Support
- Skinning Enhancements
- Updated Layout Model
- Flash Builder 4
- Compiler Performance
- New Text Capabilities
Click here for the article.
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
|
This week, I posted an interview with Bruce Eckel on InfoQ.com. Bruce is a legend in the Java community, who has moved on to working with Python and Flex. When I first learned Java his book Thinking In Java was a huge help. In the interview, he shares on a broad number of topics, including discussing his latest book, First Steps in Flex.
Check out the interview here: http://www.infoq.com/news/2009/05/bruce-eckel
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
|
In our latest episode of drunk’n madness, we interview Adam Flater. He is the founder of the Merapi project, which provides a bridge between AIR and Java on the client. Check it out at: http://www.drunkonsoftware.com/2009/05/01/episode-12-adam-flater/.
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
|
Filed Under ( AIR, Flex, RIA) by jonr on May-1-2009
It appears that Flex Builder Linux is no longer being developed by Adobe. I just finished the following post on InfoQ raising the issue: http://www.infoq.com/news/2009/05/flex-builder-linux-dead.
When you consider all of the steps Adobe has taken to court Java developers, who tend to care about open source, this seems like a really strange choice. Why not just dedicate one or two resources to the project to keep up the perception that it is being worked on? I doubt there would ever be much direct revenue for Adobe from Flex Builder Linux, but it does seem important in there overall strategy to court forward thinking developers. I wonder if this is a direct result of the current economic situation, which is likely forcing Adobe (and most other software vendors) to put all there resource in areas with direct revenue.
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
|
|
|