I have to develop the module to work in windows OS. The three modules - Encoder Decoder and Validator are individually functioning fine. But they have to glued using Scripting language.
Steps involved:-
1)Select the Encoder Algorithm.
2)Load the map database of Encoder and Decoder.
3)Call the encoder function with location as input. The output of the encoder is Location Reference.
4)Call the decoder function with this Location Reference as input. The output of the decoder is again a location in file called decoded.xml
5)Compare the input of encoder with output of decoder and validate the result.
6)Repeat this process continuously for different Locations.
Pseudo Code:-
Void setEncoderVersion();
encoder.init(graph_name1);
decoder.init(graph_name2) ;
repeat this for n locations
{
LocRef = encoder.doEncode(Loc1) ;
Loc2 = decoder.doDecode(LocRef) ;
Result = compare(Loc1, Loc2);
}
1) Is Perl best suited for this task?
Hope i have now provided all the information. Looking forward to your valuable suggestions.
Rgds,
Ashutosh
2005-11-30 Retitled by planetscape, as per Monastery guidelines
Original title: 'Newbie'
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.