Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Technical Support
 Code Inspection and .cxx files

You must be registered to post a reply.
Click here to register.

Screensize:
UserName:
Password:
Format: BoldItalicizeUnderlineStrikethrough Align leftCenterAlign right Insert horizontal ruleUpload and insert imageInsert hyperlinkInsert email addressInsert codeInsert quoted textInsert listInsert Emoji
   
Message:

Forum code is on.
Html is off.

 
Check to subscribe to this topic.
   

T O P I C    R E V I E W
pocruadhlaoich Posted - Jul 05 2017 : 10:12:41 AM
Visual Assist = 2223
Visual Studio = 2015


Hi,
my solution contains .h and .cxx files. The new Code Inspection feature will display issues found in .h files but will not show anything in .cxx files. Is there something I need to do to enable this?
Thanks,
Patrick
30   L A T E S T    R E P L I E S    (Newest First)
pocruadhlaoich Posted - Sep 27 2017 : 09:30:24 AM
Fix confirmed, thank you!
sean Posted - Sep 26 2017 : 11:08:53 PM
case=110439 is fixed in build 2235.
holedigger Posted - Aug 18 2017 : 2:40:50 PM
The issue turned out to be caused by quoted paths in the Additional include directories. For example, "c:/foo";"c:/bar". Workaround is to remove the quotes, c:/foo;c:/bar. I've opened case=110439 for this.
feline Posted - Aug 17 2017 : 10:23:18 AM
Thank you for the logs, I have replied via email.
pocruadhlaoich Posted - Aug 17 2017 : 05:38:37 AM
Attachments sent.
pocruadhlaoich Posted - Aug 17 2017 : 05:34:00 AM
I have created the files. I opened a .cxx file with two intentional issues:
- a redundant void in a method
- a destructor which could be defaulted
Neither issue is detected. I then opened the corresponding .h file where the default destructor is noticed. Toggling back to the .cxx file the code inspection still does not work. I closed these two files, changed the slash direction in additional includes, then opened the .cxx file where code inspection now starts to work and both issues are detected. Where would you like me to send the log files please?
feline Posted - Aug 16 2017 : 12:03:03 PM
Can you please try the following steps, so we can try and see what Code Inspection is seeing in this situation.

First open your %TEMP% directory, and then delete all files and folders. This just makes it easier to find the log file, when it is generated.

With your solution include directories using \, so the problem is happening, please close all open code files. Now enable VA logging via:

VA Options -> Performance -> Enable logging

now open the .cxx file where Code Inspection is not working correctly. This will generate the file:

%TEMP%\VaCodeInspections.log

which will tell you the include directories, and other compiler flags that have been picked up and passed to Clang. Can you then close this code file, change the include directory to use /, so Code Inspection works correctly, and generate a new code inspection log file by opening the .cxx file again.

I am interested in how similar, or different, these files are.
pocruadhlaoich Posted - Aug 16 2017 : 11:25:52 AM
Hi,
I have updated to build 2231. Unfortunately I still have the problem the code inspection does not work in my .cxx files. As I mentioned in an earlier post:

What I noticed though is that in "C/C++ -> General -> Additional include directories", the rest of the path to resolve this file location is entered as
"..\..\..\..\libs"
If I change the slashes to
"../../../../libs"
then code inspection does finally work in my real solution.

I tried this again just now and after changing the direction of the slashes the code inspection then immediately starts working for the .cxx files in that project.
sean Posted - Aug 16 2017 : 01:41:57 AM
A change has been made for case=109844 in build 2231. Please let us know if build 2231 addresses the issues you were experiencing with Code Inspection.
feline Posted - Jul 25 2017 : 1:31:17 PM
Good news, we think we have found the problem, and have made a fix that should be included in the next version. None of us have been able to reproduce the problem here, so we are not certain this will fix the issue for you, but we are hopeful.
feline Posted - Jul 20 2017 : 11:45:14 AM
Not a problem, you have other and more important things to focus on. I have asked our developers if they have any ideas here:

case=109844
pocruadhlaoich Posted - Jul 20 2017 : 10:00:36 AM
Sorry for not replying sooner. I have been trying to create a simple solution to reproduce the problem but unfortunately have been unable to do so thus far. My large proprietary solution can easily show the problem but I cannot share this. I could let you see it via remote desktop if you wish? I can send you my VA and VS settings but that proabably won't mean much without a sample of the problem. I will be on holiday next week so if you have any updates or anything else I can try, I will do so when I return.
Thanks!
feline Posted - Jul 17 2017 : 3:43:44 PM
It seems odd that the type of slash would cause a problem like this, but you have a clear pattern. I have now set up a test solution here, using VS2015 and VA 2223, and I have set the "C/C++ -> General -> Additional include directories" to the two paths:

../../../../../libBack;..\..\..\..\..\libs

so I can check both types of slash in one project. I have also tried this with a .cpp and .cxx file including header files from both of these library directories. I am not seeing any problems with Code Inspection, the void parameter is being picked up instantly in all of my tests for me. So it's not quite as simple as the slash direction on its own.

Do you have a simple test solution that now shows this problem, that you might be able to send me, along with your IDE and VA settings?

If so, can you please export your VA and IDE settings and send them to me:

VA Options -> Performance -> Export Settings
IDE tools menu -> Import and Export Settings -> Export selected environment settings

along with the solution. Please submit the files via the form:

http://www.wholetomato.com/support/contact.asp

including this thread ID or URL in the description, so we can match it up.
pocruadhlaoich Posted - Jul 17 2017 : 11:50:42 AM
I believe I have found something of interest. I placed the exact same file in both solutions. When adding the file to the test solution the #include file location was invalid, so I force made it the absolute file path ie
#include "C:/.../blah.h"
This allowed code inspection to work in the test solution.
In my real solution, that same file uses relative addressing ie
#include "path/to/blah.h"
What I noticed though is that in "C/C++ -> General -> Additional include directories", the rest of the path to resolve this file location is entered as
"..\..\..\..\libs"
If I change the slashes to
"../../../../libs"
then code inspection does finally work in my real solution. I would guess then that the slash direction must need to be normalised somewhere in code inspection?
feline Posted - Jul 13 2017 : 12:17:50 PM
Are you able to test the exact same .cxx file in both your main solution and the small test solution? It almost sounds like there is something about the syntax in the file that is tripping up Code Inspection.

If you have already tested the exact same file, does the file contain any pre-processor commands? I am mainly interested in #if or #ifdef statements, something that we can expect to be treated differently in the two solutions.
pocruadhlaoich Posted - Jul 13 2017 : 06:19:17 AM
I commented out all #includes in both the .cxx file and the .h file in my main solution, then enabled them line by line. At all times
void SomeClass::simpleCxxTestWithVoid2(void) {}
failed to be detected.
feline Posted - Jul 11 2017 : 2:41:19 PM
That is interesting, thank you for the update. At least now we can be sure that the problem isn't the .cxx extension, or the code its self. Now we just need to try to figure out where the problem is coming from.

Can you please try commenting out all of the #include statements in this .cxx file in your main solution, and see if this has any effect?
pocruadhlaoich Posted - Jul 11 2017 : 12:50:44 PM
I added a low level file from my code to the sample solution. Using the same code as in post 7, in the sample solution all code inspection issues are detected. In my own solution, in the .cxx file
void SomeClass::simpleCxxTestWithVoid2(void) {}
fails to be detected.
feline Posted - Jul 11 2017 : 12:13:51 PM
Can you try copying one of the .cxx files from your main solution, where Code Inspection is not picking up issues, and add it to your test solution? I am wondering if Code Inspection now works correctly, or if it is still missing things. It could be something about the files themselves, one of the include files, or the solution settings. Hopefully this will help to narrow this down.
pocruadhlaoich Posted - Jul 11 2017 : 10:51:16 AM
I created a sample Visual Studio console solution containing .h, .cpp and .cxx files and was able to view code inspection issues in all three file types. Is there some sort of logging or debugging I can use to find out what is happening then with my solution?
feline Posted - Jul 10 2017 : 4:22:50 PM
If you have the time, can you please try creating a new project, and see if you see the same problem with Code Inspection and .cxx files there? So far I cannot reproduce this effect, so I am wondering if the file extension is really a factor, or if instead something else in your solution might be involved.
pocruadhlaoich Posted - Jul 10 2017 : 2:01:51 PM
We treat .cxx files as .cpp files. Someone many years ago decided to rename them. It is a typical C++ source file saved with the .cxx extension.
feline Posted - Jul 10 2017 : 1:50:16 PM
Classes saved or declared in .cxx files?

Are you using .cxx files as .cpp files, files for implementations, or as header files? In VA's registry settings we are expecting .cxx files to be equivalent to .cpp files. So I am wondering if treating .cxx files as header files could be a clue here?
pocruadhlaoich Posted - Jul 10 2017 : 1:47:31 PM
Hi, yes the #include is correctly present. We have a large solution, it seems that all VA features work everywhere except for code inspection in classes saved in .cxx files. If I get a chance I will do some testing here but this scenario has been the case ever since code inspection was first announced.
feline Posted - Jul 10 2017 : 1:43:01 PM
Have you added the #include for the header file where the class declaration lives to your .cxx file?

Both lines are being detected for me, in both the .h and the .cxx file.
pocruadhlaoich Posted - Jul 10 2017 : 12:16:58 PM
If I add the redundant void to the .h file, VA code inspection immediately detects it. In the .cxx file, it also finds it! However, if the method is a member of a class then it is not detected. Please see examples below.

.h

void simpleCxxTestWithVoid1(void) {} //detected

class SomeClass
{
...
void simpleCxxTestWithVoid2(void); //detected
void simpleCxxTestWithVoid3(void) {} //detected
};

//

.cxx

void simpleCxxTestWithVoid4(void) {} //detected
void SomeClass::simpleCxxTestWithVoid2(void) {} //not detected
feline Posted - Jul 10 2017 : 11:10:01 AM
I had forgotten that .cxx is a standard and supported file extension for C++ in VA, sorry about that.

I have added the following simple test function to a .cxx file, using VS2015 and VA 2223:
void simpleCxxTestWithVoid(void)
{

}

and VA code inspection is picking up the redundant void parameter perfectly happily for me. Are you seeing any results at all in the Code Inspection Results window, when you open it?

What happens if you add this simple test case to your .cxx file?
pocruadhlaoich Posted - Jul 10 2017 : 07:52:16 AM
In the .cxx files, the VA navigation bar, VA colouring and VA outline are all working as expected. This has always been the case without needing to make any of the tweaks as documented in your link. However, VA code inspection still does not get shown in the .cxx files while it does get shown in the .h files.
feline Posted - Jul 07 2017 : 11:19:22 AM
Are you seeing any sign that VA is active in these files? Are the VA context and navigation fields showing at the top of the editor window? What about VA colouring, and VA Outline?
pocruadhlaoich Posted - Jul 07 2017 : 08:33:50 AM
Hi,
I followed the steps in the link as above but I still don't see any code inspection suggestions in my .cxx files. It is a large solution but even if I open a small file there is nothing to see when I intentionally write code which should be detected for improvement. Is there anything else I should do?
Thanks,
Patrick

© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000