« Return to Thread: REST URL Mapping - The changes done in pattern matching Algorithm

Re: REST URL Mapping - The changes done in pattern matching Algorithm

by damitha kumarage-2 :: Rate this Message:

Reply to Author | View in Thread

Thiago Rafael Becker wrote:

> Hi, all
>
> I was looking at the recursive functions and below are my findings.
>
> In the case of axis2_core_utils_internal_build_rest_map_recursively,
> which is a tail-recursive function, seems easy to convert it to a
> iterative function.
>
> In the case of axis2_core_utils_internal_infer_op_from_rest_map_recursively,
> which is not a tail-recursive function, seems harder to do. Also, it
> spans for about 250 lines, it's complicated to find how to convert it.
> Did you ever thought about switching from ansi c to iso99 c? You can
> do some things to reduce the line span of functions (static inline
> functions) that you can't do with ansi c. What do you think about it?
>  
How about portability if we adopt C99?
thanks
Damitha

--
__________________________________________________________________

Damitha Kumarage
http://people.apache.org/
__________________________________________________________________

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-c-dev-unsubscribe@...
For additional commands, e-mail: axis-c-dev-help@...

 « Return to Thread: REST URL Mapping - The changes done in pattern matching Algorithm