/[projects]/dao/DaoAdresseVedligehold/src/main/java/dk/daoas/adressevedligehold/fileupload/AddressSourceBK.java
ViewVC logotype

Diff of /dao/DaoAdresseVedligehold/src/main/java/dk/daoas/adressevedligehold/fileupload/AddressSourceBK.java

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

revision 2857 by torben, Thu Jan 28 10:30:01 2016 UTC revision 2875 by torben, Thu Jan 28 17:54:20 2016 UTC
# Line 1  Line 1 
1  package dk.daoas.adressevedligehold;  package dk.daoas.adressevedligehold;
2    
 import java.io.BufferedReader;  
3  import java.io.IOException;  import java.io.IOException;
4  import java.io.InputStream;  import java.util.List;
 import java.io.InputStreamReader;  
 import java.nio.charset.Charset;  
5    
6  import org.apache.commons.fileupload.FileItem;  import org.apache.commons.fileupload.FileItem;
7    
8    import com.google.common.base.CharMatcher;
9    import com.google.common.base.Splitter;
10    
11  import dk.daoas.adressevedligehold.AddressSourceEntry.EntryType;  import dk.daoas.adressevedligehold.AddressSourceEntry.EntryType;
 import dk.daoas.adressevedligehold.util.DeduplicateHelper;  
12  import dk.daoas.adressevedligehold.util.SafeParsers;  import dk.daoas.adressevedligehold.util.SafeParsers;
13    
14  public class AddressSourceBK implements AddressSource {  public class AddressSourceBK extends AbstractAddressSource {
           
         DeduplicateHelper<String> dirigeringsCache = new DeduplicateHelper<String>();  
           
         FileItem file;  
15                    
16          InputStream is;          Splitter splitter = Splitter.on(';').trimResults( CharMatcher.is('"') );
         InputStreamReader isr;  
         BufferedReader br;  
           
         int lineCount = 0;  
17                                    
18          public AddressSourceBK(FileItem file) throws Exception {          public AddressSourceBK(FileItem file) throws Exception {
19                  this.file = file;                  super(file);
   
   
   
20          }          }
21    
         @Override  
         public String getFilename() {  
                 return file.getName();  
         }  
22                    
23          @Override          @Override
24          public void validate() throws IOException {          public void validate() throws IOException {
25                  try (                            super.validatNoHeaderLine(14, ';');
                                 InputStream is1 = file.getInputStream();  
                                 InputStreamReader isr1 = new InputStreamReader(is1, Charset.forName("ISO-8859-1") );  
                                 BufferedReader br1 = new BufferedReader(isr1)  
                         ) {  
                         String line = br1.readLine();  
                         String[] parts = line.split(";");  
                         int numFields = parts.length;  
                         if (numFields != 13) {  
                                 throw new IOException("Not enough fields in CSV file. Found " + numFields + ", expected 13");  
                         }  
                 }  
   
                   
                 is = file.getInputStream();  
                 isr = new InputStreamReader(is, Charset.forName("ISO-8859-1") );  
                 br = new BufferedReader(isr);  
26          }          }
27    
28          //TODO: Skal csv parsning klares med Apache Commons CSV ?          //TODO: Skal csv parsning klares med Apache Commons CSV ?
# Line 73  public class AddressSourceBK implements Line 41  public class AddressSourceBK implements
41                  AddressSourceEntry entry = new AddressSourceEntry( EntryType.TypeSingleAddress);                  AddressSourceEntry entry = new AddressSourceEntry( EntryType.TypeSingleAddress);
42                  entry.distributor = "BK";                  entry.distributor = "BK";
43                                    
44                  String[] parts = line.split(";");                  List<String> parts = splitter.splitToList(line);
45                                    
46                  if (parts.length != 13) {                  if (parts.size() != 14) {
47                          throw new IOException("Not enough fields in CSV file. Found " + parts.length + ", expected 13");                          throw new IOException("Not enough fields in CSV file. Found " + parts.size() + ", expected 14");
48                  }                  }
49                                    
50                  entry.postnr = Short.parseShort( parts[0]);                  entry.postnr = Short.parseShort( parts.get(0) );
51                  entry.vejnavn = parts[1].replace("\"", "");                  entry.vejnavn = parts.get( 1 );
52                  entry.husnr = Short.parseShort( parts[2] );                  entry.husnr = Short.parseShort( parts.get( 2 ) );
53                  entry.litra = parts[3].replace("\"", "");                  entry.litra = parts.get( 3 );
54                  entry.vejkode = SafeParsers.parseShort( parts[4] );                  entry.vejkode = SafeParsers.parseShort( parts.get( 4)  );
55                  entry.kommunekode = SafeParsers.parseShort( parts[5] );                  entry.kommunekode = SafeParsers.parseShort( parts.get( 5)  );
56                  entry.gadeid = Integer.parseInt( parts[6] );                  entry.gadeid = Integer.parseInt( parts.get( 6 ) );
57                                    
58                  String ugedage = parts[7].replace("\"", "");                  String ugedage = parts.get( 7 );
59                                    
60                  String laesnr = parts[8].replace("\"", "");                  String laesnr = parts.get( 8 );
61                                    
62                  //String distnr = parts[9].replace("\"", ""); //Bruges ikke                  //String distnr = parts.get( 9 ); //Bruges ikke
63                  String foede = parts[10].replace("\"", "");                  String foede = parts.get( 10 );
64                  String jobnr = parts[11].replace("\"", "");                  String jobnr = parts.get( 11 );
65                  String tklaes = parts[12].replace("\"", "");                  String tklaes = parts.get( 12 );
66                                    
67                  entry.rute = laesnr;                  entry.rute = laesnr;
68                  entry.koreliste = "/" + foede + "/" + tklaes + "/" + jobnr;                  entry.koreliste = "/" + foede + "/" + tklaes + "/" + jobnr;
# Line 130  public class AddressSourceBK implements Line 98  public class AddressSourceBK implements
98                  return "BK";                  return "BK";
99          }          }
100    
         @Override //AutoCloseable  
         public void close() throws Exception {  
                 System.out.println("Closing BK after lines " + lineCount);  
                 try {  
                         br.close();  
                         isr.close();  
                         is.close();  
   
                         file.delete();  
                           
                 } catch (Exception e) {  
                         System.out.println("Error on closing " + e.getMessage() );  
                 }  
                   
                   
         }  
   
101  }  }

Legend:
Removed from v.2857  
changed lines
  Added in v.2875

  ViewVC Help
Powered by ViewVC 1.1.20