Exemplo n.º 1
0
 private static ParseFileResult GetFieldDataResults(FieldDataResultsGenerator resultsGenerator, FieldVisitRecord record)
 {
     try
     {
         resultsGenerator.GenerateFieldDataResults(record);
         return(ParseFileResult.SuccessfullyParsedAndDataValid());
     }
     catch (Exception ex)
     {
         return(ParseFileResult.SuccessfullyParsedButDataInvalid(ex));
     }
 }
Exemplo n.º 2
0
        public ParseFileResult ParseFile(Stream fileStream, LocationInfo targetLocation,
                                         IFieldDataResultsAppender fieldDataResultsAppender, ILog logger)
        {
            var fieldVisit = ReadFile(fileStream);

            //Only save data if it matches the targetLocation.
            if (!targetLocation.LocationIdentifier.Equals(fieldVisit.LocationIdentifier))
            {
                return(ParseFileResult.CannotParse());
            }

            var resultsGenerator = new FieldDataResultsGenerator(fieldDataResultsAppender, targetLocation, logger);

            return(GetFieldDataResults(resultsGenerator, fieldVisit));
        }
Exemplo n.º 3
0
        public ParseFileResult ParseFile(Stream fileStream, IFieldDataResultsAppender fieldDataResultsAppender, ILog logger)
        {
            var fieldVisit = ReadFile(fileStream);

            try
            {
                var location = fieldDataResultsAppender.GetLocationByIdentifier(fieldVisit.LocationIdentifier);
                logger.Info($"Parsing field data for location {location.LocationIdentifier}");

                var resultsGenerator = new FieldDataResultsGenerator(fieldDataResultsAppender, location, logger);
                return(GetFieldDataResults(resultsGenerator, fieldVisit));
            }
            catch (Exception)
            {
                logger.Error($"Cannot parse file, location {fieldVisit.LocationIdentifier} not found");
                return(ParseFileResult.CannotParse());
            }
        }