|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Announcements
Chapters
Services
Feature Zones
|
Note: This is an unedited contribution. If this article is inappropriate,
needs attention or copies someone else's work without reference then please
Report This Article
IntroductionThis article aims to present a framework for porting source code from one language or platform to another, using XML as the intermediate format in the conversion process. BackgroundThe concept of this article came to my mind last weekend or so while I was thinking about some programming and design related things. I don't know about you, the reader, but I have ported some amount of code from one language to another for work and personal projects. In most cases, I either ported the code due to design/usability issues (something lacking in source language/platform) or to support a larger target audience (who use a particular language or platform, usually due to convenience or their skillset). Porting code, depending on what you are porting it to, can be trivial or complex. But even in the trivial case, it can still be tedious and time consuming to do. And porting to more than one target language or platform will multiply that factor some more. This can be alleviated with some form of automation or tools that handle this. I don't know if there is any good solutions for this out there, but this article describes one possible solution. Due to the complexity of this solution, no code or real examples are presented. This article only describes a theoretical solution that is yet to be implemented. The framework for porting codeThe process of porting source code consists of two steps:
Therefore, the framework consists of three parts:
The XML schema, would be like a subset of XML, like SVG, XSL, etc., something to yet to be defined (and maybe even standardized). Ideally, to make the conversion effort simple and standardized for users/developers, the following are suggested when using this framework:
Ideally, if this framework did exist (with defined XML schema and pre-built parsers), I would like it to cover much of the general programming and scripting languages out there like C, C++, C#, Java, Javascript, Perl, PHP, Python, VBScript, Visual Basic, Visual Basic .NET, etc. Though I think of using this framework mostly to port between different languages, I believe it is also possible to extend the framework to support porting between platforms like Windows and Linux/Unix as well as porting from x86 to embedded platforms, etc. Disclaimer: No framework is perfect. I would not expect this framework to provide flawless conversion between languages or platforms, but it would at least simplify the porting of 50-75 percent of the code since most code is usually of the general programming construct type as mentioned earlier in the article. The parts that aren't well ported can then be custom ported as needed. Theoretical example of framework in actionAssume you have the following code snippet in VBScript: For i = 1 To 100
WScript.Echo "Code ran " & i & " times."
Next
Run the code through the source parser and you should get some XML like the following: <loop type="for">
<condition><var id="i"/><compare type="lessthan"/>100</condition>
<output>Code ran <var id="i"/> times.</output>
</loop>
Run the code through the target parser (for C++) and you should get something like the following: for(int i = 1; i < 100; i++)
{
cout << "Code ran " << i << " times." << endLine;
}
Disclaimer: This isn't a perfect example, code-wise, but is given just to illustrate the idea. The XML in the example probably is not the optimal schema, I just came up with it real quick. A real schema would take time to design and fine-tune. Intentions of the frameworkThe framework is intended to be a platform and language independent solution that only relied on XML and XSLT. The language/platform choice for source code parser and processing the XML with XSLT would be up to the user. ConclusionThat is all, any questions or comments? I would really love to work on such a framework along with the code parsers but I don't have the time for this right now. So I thought I would post my idea out for others to see and try. If someone does pick up work on such a framework, please inform me as I would like to assist with such a project. If such a framework is already in progress or exists, again, please inform me. I may delete this article, or this article might just provide another alternative implementation to such a framework. HistoryJuly 14th 2007 - Initial post of article.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||