Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
String url = getUrl();
try{
Connection con = getConnection(url, username, pwd);
}catch(ConnectionException e){
  cleanUpUrl(url);
  url = getUrl();
  con = getConnection(url, username, pwd);
}

I've to do something like above. if I don't get Connection with one URL then I'll be trying with another URL. Likewise there are 10URLs which I've to try one after the other.

How will I write the method recursively?

getUrl() has the logic to read the properties file and gives you random URL out of 10. cleanUpUrl(url) has something to do with the setting the expiry time of the URL, if the url is invalid, some property will be set etc etc.

EDIT: Sorry I think I missed something. Recursive because I've do make the method calls until (I get the connection) or (all the URLs are invalid and a different exception is thrown). Looping 10times might not help because the getUrl()'s random logic might pick the same URL more than once.

Does the following makes sense?

Connection con = null;
do{
 String url = getUrl();
 try{
  Connection con = getConnection(url, username, pwd);
 }catch(ConnectionException e){
  cleanUpUrl(url);
  continue;
 }catch(Exception e){
  return null;
 }
}while(con !=null);

getUrl() will throw exception when all urls are invalid.

share|improve this question
Why do you want to do this recursively? – Fredrik Mörk Aug 10 '10 at 12:19
One of the principles of recursion is you need a stop condition. You need to define how many tries you'll do. If you get the URLs randomly, you might get a StackOverflow before you check all 10 URLs. – Fernando Briano Aug 10 '10 at 12:36
@Fernando: Agree. Here the stop condition is - I get a connection or getUrl() throws Exception. – HanuAthena Aug 10 '10 at 12:39
But when it throws Exception, you do the same process (this is what I understand you want to do recursive), thus falling into an infinite loop. Right? – Fernando Briano Aug 10 '10 at 12:46

3 Answers

up vote 1 down vote accepted

What's the stop condition, a stack overflow?

Will it matter if you created a "while" loop?

share|improve this answer

Recursively? Why?

If you want to try 10 things in a row, use a for loop.

share|improve this answer
Recursive because I've do make the method calls until (I get the connection) or (all the URLs are invalid and a different exception is thrown). Looping 10times might not help because the getUrl()'s random logic might pick the same URL more than once. – HanuAthena Aug 10 '10 at 12:26
1  
@HanuAthena: Sorry, I don't get it. If getUrl() can pick the same URL more than once, why do you think this would be any different in a recursive approach? If you want to try something until a condition is fulfilled, use a while loop instead of a for loop. Still no need for recursion. – Tomalak Aug 10 '10 at 13:33
Also, if the 10 is not a hard-limit, why not loop till the url is non-null (on a side note, it is generally not a good idea to do this. It is better to have some sort of a configurable limit for the number of times you'd loop). – Gangadhar Aug 10 '10 at 13:34
1  
+1: Recursion is sometimes an elegant model to use, but not in the cases where plain old loops are suitable. "When all you have is a hammer, everything looks like a nail"? – Andrzej Doyle Aug 10 '10 at 13:41

I would put the "search for a proper url" in a method, loop though the code 10 times, and return the url you found suitable to break out of the loop. (Below the loop you could return null to indicate that none of the 10 urls was suitable.)

Something like

public String findGoodUrl() {
    for (int i = 0; i < 10; i++) {
        String url = getUrl();
        try{
            Connection con = getConnection(url, username, pwd);
            return url;
        } catch(ConnectionException e) {
            cleanUpUrl(url);
        }
    }
    return null;
}
share|improve this answer
You might want to put the return url; inside the try block. ;-) – Tomalak Aug 10 '10 at 12:25
Good point ;) ... – aioobe Aug 10 '10 at 12:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.