Search in sources :

Example 1 with ExcelSheetReader

use of net.geoprism.data.etl.excel.ExcelSheetReader in project geoprism-registry by terraframe.

the class ExcelImporter method getWorkTotal.

private Long getWorkTotal(File file) throws Exception {
    try (FileInputStream istream = new FileInputStream(file)) {
        CountSheetHandler handler = new CountSheetHandler();
        ExcelDataFormatter formatter = new ExcelDataFormatter();
        ExcelSheetReader reader = new ExcelSheetReader(handler, formatter);
        reader.process(istream);
        // Header row doesn't count as
        return (long) (handler.getRowNum() - 1);
    // work
    }
}
Also used : ExcelDataFormatter(net.geoprism.data.etl.excel.ExcelDataFormatter) CountSheetHandler(net.geoprism.data.etl.excel.CountSheetHandler) ExcelSheetReader(net.geoprism.data.etl.excel.ExcelSheetReader) FileInputStream(java.io.FileInputStream)

Example 2 with ExcelSheetReader

use of net.geoprism.data.etl.excel.ExcelSheetReader in project geoprism-registry by terraframe.

the class ExcelService method getExcelConfiguration.

public JSONObject getExcelConfiguration(String type, Date startDate, Date endDate, String fileName, InputStream fileStream, ImportStrategy strategy, Boolean copyBlank) {
    // Save the file to the file system
    try {
        ServerGeoObjectType geoObjectType = ServerGeoObjectType.get(type);
        VaultFile vf = VaultFile.createAndApply(fileName, fileStream);
        try (InputStream is = vf.openNewStream()) {
            SimpleDateFormat format = new SimpleDateFormat(GeoObjectImportConfiguration.DATE_FORMAT);
            format.setTimeZone(GeoRegistryUtil.SYSTEM_TIMEZONE);
            ExcelFieldContentsHandler handler = new ExcelFieldContentsHandler();
            ExcelDataFormatter formatter = new ExcelDataFormatter();
            ExcelSheetReader reader = new ExcelSheetReader(handler, formatter);
            reader.process(is);
            JSONObject object = new JSONObject();
            object.put(GeoObjectImportConfiguration.TYPE, this.getType(geoObjectType));
            object.put(GeoObjectImportConfiguration.SHEET, handler.getSheets().getJSONObject(0));
            object.put(ImportConfiguration.VAULT_FILE_ID, vf.getOid());
            object.put(ImportConfiguration.FILE_NAME, fileName);
            object.put(GeoObjectImportConfiguration.HAS_POSTAL_CODE, PostalCodeFactory.isAvailable(geoObjectType));
            object.put(ImportConfiguration.IMPORT_STRATEGY, strategy.name());
            object.put(ImportConfiguration.FORMAT_TYPE, FormatImporterType.EXCEL.name());
            object.put(ImportConfiguration.OBJECT_TYPE, ObjectImporterFactory.ObjectImportType.GEO_OBJECT.name());
            object.put(ImportConfiguration.COPY_BLANK, copyBlank);
            if (startDate != null) {
                object.put(GeoObjectImportConfiguration.START_DATE, format.format(startDate));
            }
            if (endDate != null) {
                object.put(GeoObjectImportConfiguration.END_DATE, format.format(endDate));
            }
            return object;
        }
    } catch (InvalidFormatException e) {
        InvalidExcelFileException ex = new InvalidExcelFileException(e);
        ex.setFileName(fileName);
        throw ex;
    } catch (RunwayException | SmartException e) {
        throw e;
    } catch (Exception e) {
        throw new ProgrammingErrorException(e);
    }
}
Also used : SmartException(com.runwaysdk.business.SmartException) ServerGeoObjectType(net.geoprism.registry.model.ServerGeoObjectType) InputStream(java.io.InputStream) InvalidExcelFileException(net.geoprism.data.etl.excel.InvalidExcelFileException) ExcelSheetReader(net.geoprism.data.etl.excel.ExcelSheetReader) ExcelFieldContentsHandler(net.geoprism.registry.excel.ExcelFieldContentsHandler) InvalidFormatException(org.apache.poi.openxml4j.exceptions.InvalidFormatException) RunwayException(com.runwaysdk.RunwayException) SmartException(com.runwaysdk.business.SmartException) ProgrammingErrorException(com.runwaysdk.dataaccess.ProgrammingErrorException) RunwayException(com.runwaysdk.RunwayException) InvalidFormatException(org.apache.poi.openxml4j.exceptions.InvalidFormatException) InvalidExcelFileException(net.geoprism.data.etl.excel.InvalidExcelFileException) ProgrammingErrorException(com.runwaysdk.dataaccess.ProgrammingErrorException) ExcelDataFormatter(net.geoprism.data.etl.excel.ExcelDataFormatter) JSONObject(org.json.JSONObject) VaultFile(com.runwaysdk.system.VaultFile) SimpleDateFormat(java.text.SimpleDateFormat)

Example 3 with ExcelSheetReader

use of net.geoprism.data.etl.excel.ExcelSheetReader in project geoprism-registry by terraframe.

the class ExcelImporter method process.

@Request
private void process(ImportStage stage, File file) throws InvocationTargetException, IOException {
    try {
        /*
       * Check permissions
       */
        ImportConfiguration config = this.getObjectImporter().getConfiguration();
        config.enforceCreatePermissions();
        // TODO Determine permissions for
        this.progressListener.setWorkTotal(this.getWorkTotal(file));
        if (this.config.isExternalImport() && this.config.getExternalSystem() instanceof RevealExternalSystem && this.config instanceof GeoObjectImportConfiguration) {
            this.excelHandler = new RevealExcelContentHandler(this.objectImporter, stage, this.getStartIndex(), ((GeoObjectImportConfiguration) this.config).getRevealGeometryColumn());
        } else {
            this.excelHandler = new ExcelContentHandler(this.objectImporter, stage, this.getStartIndex());
        }
        ExcelDataFormatter formatter = new ExcelDataFormatter();
        ExcelSheetReader reader = new ExcelSheetReader(excelHandler, formatter);
        reader.process(new FileInputStream(file));
    } catch (Exception e) {
        throw new ProgrammingErrorException(e);
    }
}
Also used : GeoObjectImportConfiguration(net.geoprism.registry.io.GeoObjectImportConfiguration) ExcelDataFormatter(net.geoprism.data.etl.excel.ExcelDataFormatter) RevealExternalSystem(net.geoprism.registry.graph.RevealExternalSystem) ExcelSheetReader(net.geoprism.data.etl.excel.ExcelSheetReader) GeoObjectImportConfiguration(net.geoprism.registry.io.GeoObjectImportConfiguration) FileInputStream(java.io.FileInputStream) ProgrammingErrorException(com.runwaysdk.dataaccess.ProgrammingErrorException) ImportFileFormatException(net.geoprism.registry.etl.ImportFileFormatException) IOException(java.io.IOException) InvocationTargetException(java.lang.reflect.InvocationTargetException) LatLonException(net.geoprism.registry.io.LatLonException) ProgrammingErrorException(com.runwaysdk.dataaccess.ProgrammingErrorException) Request(com.runwaysdk.session.Request)

Example 4 with ExcelSheetReader

use of net.geoprism.data.etl.excel.ExcelSheetReader in project geoprism-registry by terraframe.

the class ExcelService method getBusinessTypeConfiguration.

public JSONObject getBusinessTypeConfiguration(String type, Date date, String fileName, InputStream fileStream, ImportStrategy strategy, Boolean copyBlank) {
    // Save the file to the file system
    try {
        BusinessType businessType = BusinessType.getByCode(type);
        VaultFile vf = VaultFile.createAndApply(fileName, fileStream);
        try (InputStream is = vf.openNewStream()) {
            SimpleDateFormat format = new SimpleDateFormat(GeoObjectImportConfiguration.DATE_FORMAT);
            format.setTimeZone(GeoRegistryUtil.SYSTEM_TIMEZONE);
            ExcelFieldContentsHandler handler = new ExcelFieldContentsHandler();
            ExcelDataFormatter formatter = new ExcelDataFormatter();
            ExcelSheetReader reader = new ExcelSheetReader(handler, formatter);
            reader.process(is);
            JSONObject object = new JSONObject();
            object.put(BusinessObjectImportConfiguration.TYPE, this.getType(businessType));
            object.put(BusinessObjectImportConfiguration.SHEET, handler.getSheets().getJSONObject(0));
            object.put(BusinessObjectImportConfiguration.VAULT_FILE_ID, vf.getOid());
            object.put(BusinessObjectImportConfiguration.FILE_NAME, fileName);
            object.put(BusinessObjectImportConfiguration.IMPORT_STRATEGY, strategy.name());
            object.put(BusinessObjectImportConfiguration.FORMAT_TYPE, FormatImporterType.EXCEL.name());
            object.put(BusinessObjectImportConfiguration.OBJECT_TYPE, ObjectImporterFactory.ObjectImportType.BUSINESS_OBJECT.name());
            object.put(BusinessObjectImportConfiguration.COPY_BLANK, copyBlank);
            if (date != null) {
                object.put(BusinessObjectImportConfiguration.DATE, format.format(date));
            }
            return object;
        }
    } catch (InvalidFormatException e) {
        InvalidExcelFileException ex = new InvalidExcelFileException(e);
        ex.setFileName(fileName);
        throw ex;
    } catch (RunwayException | SmartException e) {
        throw e;
    } catch (Exception e) {
        throw new ProgrammingErrorException(e);
    }
}
Also used : SmartException(com.runwaysdk.business.SmartException) InputStream(java.io.InputStream) InvalidExcelFileException(net.geoprism.data.etl.excel.InvalidExcelFileException) BusinessType(net.geoprism.registry.BusinessType) ExcelSheetReader(net.geoprism.data.etl.excel.ExcelSheetReader) ExcelFieldContentsHandler(net.geoprism.registry.excel.ExcelFieldContentsHandler) InvalidFormatException(org.apache.poi.openxml4j.exceptions.InvalidFormatException) RunwayException(com.runwaysdk.RunwayException) SmartException(com.runwaysdk.business.SmartException) ProgrammingErrorException(com.runwaysdk.dataaccess.ProgrammingErrorException) RunwayException(com.runwaysdk.RunwayException) InvalidFormatException(org.apache.poi.openxml4j.exceptions.InvalidFormatException) InvalidExcelFileException(net.geoprism.data.etl.excel.InvalidExcelFileException) ProgrammingErrorException(com.runwaysdk.dataaccess.ProgrammingErrorException) ExcelDataFormatter(net.geoprism.data.etl.excel.ExcelDataFormatter) JSONObject(org.json.JSONObject) VaultFile(com.runwaysdk.system.VaultFile) SimpleDateFormat(java.text.SimpleDateFormat)

Aggregations

ExcelDataFormatter (net.geoprism.data.etl.excel.ExcelDataFormatter)4 ExcelSheetReader (net.geoprism.data.etl.excel.ExcelSheetReader)4 ProgrammingErrorException (com.runwaysdk.dataaccess.ProgrammingErrorException)3 RunwayException (com.runwaysdk.RunwayException)2 SmartException (com.runwaysdk.business.SmartException)2 VaultFile (com.runwaysdk.system.VaultFile)2 FileInputStream (java.io.FileInputStream)2 InputStream (java.io.InputStream)2 SimpleDateFormat (java.text.SimpleDateFormat)2 InvalidExcelFileException (net.geoprism.data.etl.excel.InvalidExcelFileException)2 ExcelFieldContentsHandler (net.geoprism.registry.excel.ExcelFieldContentsHandler)2 InvalidFormatException (org.apache.poi.openxml4j.exceptions.InvalidFormatException)2 JSONObject (org.json.JSONObject)2 Request (com.runwaysdk.session.Request)1 IOException (java.io.IOException)1 InvocationTargetException (java.lang.reflect.InvocationTargetException)1 CountSheetHandler (net.geoprism.data.etl.excel.CountSheetHandler)1 BusinessType (net.geoprism.registry.BusinessType)1 ImportFileFormatException (net.geoprism.registry.etl.ImportFileFormatException)1 RevealExternalSystem (net.geoprism.registry.graph.RevealExternalSystem)1