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

  • SEARCH
  • Home
  • 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 6843037
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T00:10:30+00:00 2026-05-27T00:10:30+00:00

Please suggest a tool that could automate replacing like: Mutex staticMutex = Mutex(m_StaticMutex.Handle()); staticMutex.Wait();

  • 0

Please suggest a tool that could automate replacing like:

Mutex staticMutex = Mutex(m_StaticMutex.Handle());
staticMutex.Wait();

to

boost::unique_lock<boost::mutex> lock(m_StaticMutex);

As you see, the arguments must be taken into account. Is there a way simpler than regular expressions?

  • 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-27T00:10:31+00:00Added an answer on May 27, 2026 at 12:10 am

    If you can do this with a modest amount of manual work (even including “search and replace”) then this answer isn’t relevant.

    If the code varies too much (indentation, comments, different variable names) and there’s a lot of these, you might need a Program Transformation tool. Such tools tend to operate on program representations such as abstract syntax trees, and consequently are not bother by layout or whitespace or even numbers that are spelled differently because of radix, but actually have the same value.

    Our DMS Software Reengineering Toolkit is one of these, and has a C++ Front End.

    You’d need to give it a rewrite rule something like the following:

     domain Cpp; -- tell DMS to use the C++ front end for parsing and prettyprinting
    
     rule replace_mutex(i:IDENTIFIER):statements -> statements
          "Mutex \i = Mutex(m_StaticMutex.Handle());  
           \i.Wait();" =>
          "boost::unique_lock<boost::mutex> lock(m_StaticMutex);";
    

    The use of the metavariable \i in both places will ensure that the rule only fires if the name is exactly the same in both places.

    It isn’t clear to me precisely what you are trying to accomplish; it sort of looks like you want to replace each private mutex with one global one, but I’m not a boost expert. If you tried to do that, I’d expect your program to behave differently.

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

Sidebar

Related Questions

Could someone please suggest a tool to create a Domain Model diagram? Some details:
Can anyone please suggest me a tool (preferably freeware) to insert data into a
Could anyone please suggest how to test whether WCF with wsHttpBinding you built is
Please suggest me some good materials or books or links that provede the methods
Please suggest some good resources to start writing Java Web services.
Please suggest a good MVC framework for Winforms.
Please suggest some free tools which will help me to get Lines-of-Code metrics for
Please suggest some elegant way to convert arrays of arrays to collections of collections
Please suggest me the best authentication way to implement in the scenario mentioned below:
Please suggest me a method to save an XML file to the current installation

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.