Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 680269
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T01:21:12+00:00 2026-05-14T01:21:12+00:00

A library function parses a file and returns an object. If a parser encounters

  • 0

A library function parses a file and returns an object. If a parser encounters unknown data, missing values etc., it shouldn’t throw an exception and stop parsing (because this is not fatal), but there should be a way to pass information about these things to a caller (so that warnings can be displayed in the UI, for example). How can these warning be returned? I’m thinking of passing a callback function/object into the library, are there any other possible solutions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T01:21:13+00:00Added an answer on May 14, 2026 at 1:21 am

    I would have a collection of errors easily accessible on the parser, something like this:

    public class Parser
    {
       public bool HasErrors { 
         get { return ParseErrors != null && ParseErrors.Count > 0; } 
       }    
       public List<string> ParseErrors { get; set; }
       public object Parse(string fileName) {}
    }
    

    Or whatever error type you wanted of course, something with more detail maybe.

    Code calling your library would look something like this:

    var p = new Parser();
    var o = p.Parse("file.txt"); //Get object
    if(p.HasErrors) //Uh oh, abort, do something with p.ParseErrors
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I use eclipse to write RSS parser wrapper function and it returns expected values
I am using a library function called get_count_and_price which returns a 2-tuple (count,price). In
the following function parses a CSV file into a list of dictionaries, where each
I have an ActionScript 2.0 file that contains a small library. This library parses
I need to develop a library that opens a file and parses the stuff.
I need to call a library function that sometimes won't terminate within a given
Why is calling a standard library function inside a signal handler discouraged?
I have a failure in some inner library function in Octave. I want to
I need to make the standard library function tolower static instead of public' scope.
Does R6RS or Chez Scheme v7.9.4 have a library function to check if a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.