/[projects]/dao/DaoAdresseService/src/dk/daoas/daoadresseservice/GeocodeHelper.java
ViewVC logotype

Diff of /dao/DaoAdresseService/src/dk/daoas/daoadresseservice/GeocodeHelper.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2307 by torben, Sun Feb 15 17:53:36 2015 UTC revision 2360 by torben, Tue Feb 24 11:19:40 2015 UTC
# Line 13  import com.google.code.geocoder.model.Ge Line 13  import com.google.code.geocoder.model.Ge
13  import com.google.code.geocoder.model.GeocoderStatus;  import com.google.code.geocoder.model.GeocoderStatus;
14  import com.google.gson.Gson;  import com.google.gson.Gson;
15    
16    import dk.daoas.daoadresseservice.admin.ServiceConfig;
17  import dk.daoas.daoadresseservice.beans.OSMAddress;  import dk.daoas.daoadresseservice.beans.OSMAddress;
18    import dk.daoas.daoadresseservice.util.HttpUtil;
19    import dk.thoerup.circuitbreaker.CircuitBreaker;
20    import dk.thoerup.circuitbreaker.CircuitBreakerManager;
21    import dk.thoerup.circuitbreaker.CircuitInvocation;
22    
23  public class GeocodeHelper {  public class GeocodeHelper {
24                            
           
           
25    
26    
27          public static void main(String[] args) throws IOException {          public static void main(String[] args) throws IOException {
28                    ServiceConfig conf = new ServiceConfig();
29                    
30                  int post = 8700;                  int post = 8700;
31                  String vej = "Enebarvej";                  String vej = "Enebarvej";
32                                    
33                  long start1 = System.currentTimeMillis();                  long start1 = System.currentTimeMillis();
34                  System.out.println( "Google:" +  GeocodeHelper.googleHelper(post, vej) );                                System.out.println( "Google:" +  GeocodeHelper.googleHelper(conf, post, vej) );        
35                  long stop1 = System.currentTimeMillis();                  long stop1 = System.currentTimeMillis();
36                                    
37                  long start2 = System.currentTimeMillis();                  long start2 = System.currentTimeMillis();
# Line 40  public class GeocodeHelper { Line 45  public class GeocodeHelper {
45          public static String openstreetmapHelper(int postnr, String vejnavn) {          public static String openstreetmapHelper(int postnr, String vejnavn) {
46                                    
47                  try {                  try {
48                                    
49                            OSMInvocation wrapper = new OSMInvocation( postnr, vejnavn );
50                            CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("osm");
51    
52                            return (String) breaker.invoke(wrapper);
53    
54                            
55                    } catch (Exception e) {
56                            System.out.println( "OSMError: " + e.getClass().getName() +" / "+ e.getMessage() );
57                    }                                                              
58                    return null;
59            }
60            
61            
62            
63            public static String googleHelper(ServiceConfig conf, int postnr, String vejnavn) {
64                    try {
65                            GoogleInvocation wrapper = new GoogleInvocation( conf, postnr, vejnavn );
66                            CircuitBreaker breaker = CircuitBreakerManager.getManager().getCircuitBreaker("google");
67    
68                            return (String) breaker.invoke(wrapper);
69                            
70                    } catch (Exception e) {
71                            System.out.println( "GoogleError: " + e.getClass().getName() +" / "+ e.getMessage() );
72                    }
73                    return null;    
74            }
75            
76    
77            public static class OSMInvocation implements CircuitInvocation {
78                    int postnr;
79                    String vejnavn;
80                    
81                    public OSMInvocation(int postnr, String vejnavn) {
82                            this.postnr= postnr;
83                            this.vejnavn = vejnavn;                
84                    }
85                    
86                    @Override
87                    public String proceed() throws Exception {
88                          String encVej = URLEncoder.encode(vejnavn, "UTF-8");                          String encVej = URLEncoder.encode(vejnavn, "UTF-8");
89                                                    
90                          String url = "http://nominatim.openstreetmap.org/search?country=DK&street=" + encVej + "&postalcode=" + postnr + "&format=json&addressdetails=1";                          String url = "http://nominatim.openstreetmap.org/search?country=DK&street=" + encVej + "&postalcode=" + postnr + "&format=json&addressdetails=1";
# Line 61  public class GeocodeHelper { Line 105  public class GeocodeHelper {
105                                  return adrList[0].address.road;                                  return adrList[0].address.road;
106                          }                          }
107    
108                                                    return null;
109                  } catch (Exception e) {                  }
                         System.out.println( "Error: " + e.getMessage() );  
                 }                                                                
                 return null;  
110          }          }
111                    
112                    
113                    public static class GoogleInvocation implements CircuitInvocation {
114          public static String googleHelper(int postnr, String vejnavn) {                  ServiceConfig conf;
115                  try {                  int postnr;
116                          //Todo: Load api key from context config                  String vejnavn;
117                          final Geocoder geocoder = new Geocoder();                  
118                    public GoogleInvocation(ServiceConfig conf, int postnr, String vejnavn) {
119                            this.conf = conf;
120                            this.postnr= postnr;
121                            this.vejnavn = vejnavn;
122                            
123                    }
124    
125                    @Override
126                    public String proceed() throws Exception {
127                            
128                            final Geocoder geocoder;
129                            if ( conf.googleApiKey != null ) {
130                                    geocoder = new Geocoder(conf.googleApiUser, conf.googleApiKey); //Throws InvalidKeyException
131                            } else {
132                                    geocoder = new Geocoder();
133                            }
134                            
135                                                    
136                          String search = vejnavn + ", " + postnr + ", Denmark";                          String search = vejnavn + ", " + postnr + ", Denmark";
137                          GeocoderRequest geocoderRequest = new GeocoderRequestBuilder().setAddress(search).setLanguage("en").getGeocoderRequest();                          GeocoderRequest geocoderRequest = new GeocoderRequestBuilder().setAddress(search).setLanguage("en").getGeocoderRequest();
138                          GeocodeResponse geocoderResponse = geocoder.geocode(geocoderRequest);                          GeocodeResponse geocoderResponse = geocoder.geocode(geocoderRequest);
139                                                            
140                                                    
141                          //System.out.println( "Status: >" + geocoderResponse.getStatus() + "<");                          //System.out.println( "Status: >" + geocoderResponse.getStatus() + "<");
142                          if (  geocoderResponse.getStatus() != GeocoderStatus.OK) {                          if (  geocoderResponse.getStatus() != GeocoderStatus.OK) {                              
143                                  return null;                                  
144                                    if (geocoderResponse.getStatus() == GeocoderStatus.ZERO_RESULTS) {
145                                            return null;
146                                    } else {
147                                            System.out.println("Google responded with " + geocoderResponse.getStatus() );
148                                            //Hvis det er alvorlige fejl skal vi afbryde med exception og trigger circuitbreakeren
149                                            throw new Exception("Google responded with " + geocoderResponse.getStatus() );
150                                    }
151                                    
152                          }                          }
153                                                    
154                          List<GeocoderResult> resList = geocoderResponse.getResults();                          List<GeocoderResult> resList = geocoderResponse.getResults();
# Line 100  public class GeocodeHelper { Line 166  public class GeocodeHelper {
166                                          return c.getLongName();                                          return c.getLongName();
167                                  }                                  }
168                          }                          }
169                                                    return null;
                 } catch (IOException e) {  
                         System.out.println( "GoogleError: " + e.getMessage() );  
170                  }                  }
                 return null;  
171                                    
172          }          }
173    

Legend:
Removed from v.2307  
changed lines
  Added in v.2360

  ViewVC Help
Powered by ViewVC 1.1.20