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 223047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T19:11:03+00:00 2026-05-11T19:11:03+00:00

If I generate a parser using FSYacc will it be thread safe? The only

  • 0

If I generate a parser using FSYacc will it be thread safe?

The only reason I ask is because the functions

Parsing.rhs_start_pos and Parsing.symbol_end_pos

don’t appear to have any state passed into them, which would lead me to assume that they are getting the current NonTerminal/Symbols from a shared location, is this correct?

After reflecting the code I see that they are getting the postion from a static property

internal static IParseState parse_information
{
    get
    {
        return parse_information;
    }
    set
    {
        parse_information = value;
    }
}

Is this correct? If so what can I do about it?

Edit: I also see a static method called set_parse_state

public static void set_parse_state(IParseState x)
{
    parse_information = x;
}

But that still wont solve my problem…

  • 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-11T19:11:04+00:00Added an answer on May 11, 2026 at 7:11 pm

    I really don’t like to answer my own question, however since this could save someone else a world of grief someday I will.

    It turns out that the functions provided in the parsing module are NOT thread safe.
    What you can do however is access the parseState “variable”, which is of type IParseState, in your nonterminal action.

    For example (rough but work with me):
    If you have a NonTerminal like

    %token<string> NAME
    %%
    Person:
           NAME NAME { $1 (* action *) }
    

    The code that gets generated is:

    (fun (parseState : Microsoft.FSharp.Text.Parsing.IParseState) ->
          let _1 = (let data = parseState.GetInput(1) in 
                               (Microsoft.FSharp.Core.Operators.unbox data : string)
                    ) in
          Microsoft.FSharp.Core.Operators.box((_1) : 'Person)
    );
    

    So you can interact with that parseState object in the same fashion.

    %token<string> NAME
    %%
    Person:
           NAME NAME { parseState.DoStuff(); }
    

    The rhs_start_pos method basically does this:

    let startPos,endPos = parseState.InputRange(n)
    

    and the symbol_end_pos does this:

    let startSymb,endSymb = parseState.ResultRange
    

    I hope this helps

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 175k
  • Answers 175k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer It's because the output from printf() is buffered. You could… May 12, 2026 at 3:08 pm
  • Editorial Team
    Editorial Team added an answer If you install your own handler for SIGTSTP, you can… May 12, 2026 at 3:08 pm
  • Editorial Team
    Editorial Team added an answer I'm not sure how old your source is or what… May 12, 2026 at 3:08 pm

Related Questions

I'm designing a system which is receiving data from a number of partners in
So, I'm working on translating my C++ app into multiple languages. What I'm currently
I want to parse SQL code using C#. Specifically, is there any freely available
I am attempting to build a .PLY parser to load 3d models stored as

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.