How best to deal with gigantic source code files in Visual Studio - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T05:36:50Z http://stackoverflow.com/feeds/question/207902 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/207902/how-best-to-deal-with-gigantic-source-code-files-in-visual-studio 3 How best to deal with gigantic source code files in Visual Studio alexis.kennedy 2008-10-16T09:19:17Z 2009-03-22T18:38:36Z <p>I'm working on a project which makes substantial use of code generation. Some of the files it generates contain >0.25 million lines of code. VS (2K5) doesn't cope too badly, but R# (4.01) throws an out of memory exception every two minutes or so.</p> <p><strong>Splitting them out into partial classes/separate files isn't an option in the immediate term, though it may be later.</strong></p> <p>Are there any clever IDE tricks to dealing with this?</p> <p>EDIT: so people are immediately saying (very sensibly) 'don't have a file that big' and suggesting ways to break it out into smaller files.</p> <p>That's fine, but I'm on a time-boxed task taking a look around and deciding what to optimise. My problem is very specifically 'how to view an insanely big file in an IDE without pain', not 'how to refactor the project'. For purposes of the question please imagine the file is read-only. :)</p> http://stackoverflow.com/questions/207902/how-best-to-deal-with-gigantic-source-code-files-in-visual-studio/207914#207914 0 Answer by 1800 INFORMATION for How best to deal with gigantic source code files in Visual Studio 1800 INFORMATION 2008-10-16T09:25:43Z 2008-10-16T09:25:43Z <p>Can't you break up the files and use the preprocessor to bring them back together when you compile?</p> http://stackoverflow.com/questions/207902/how-best-to-deal-with-gigantic-source-code-files-in-visual-studio/207917#207917 2 Answer by balexandre for How best to deal with gigantic source code files in Visual Studio balexandre 2008-10-16T09:26:21Z 2008-10-16T09:26:21Z <p>WOW!</p> <p>250 000 lines of code?</p> <p>you should think not in a machine point of view, but in a human been point of view. Let's say that you want to pass that code to someone else, can you see the time to see what the code does?</p> <p>Design Patterns were made to deal with this ind stuff, try to start small, refactoring it, then go deeper and start applying more D.P. </p> <p>you will have less and less lines of code, and Yes, one of the best tricks is to separate into several files according to it's propose.</p> http://stackoverflow.com/questions/207902/how-best-to-deal-with-gigantic-source-code-files-in-visual-studio/207928#207928 2 Answer by Mendelt for How best to deal with gigantic source code files in Visual Studio Mendelt 2008-10-16T09:29:01Z 2008-10-16T09:29:01Z <p>Assuming you're not hand-editing your generated code. (=BAD IDEA!!)</p> <p>You could put the generated files in a separate solution that you compile from the command line and then reference those dll's from the project you're working in.</p> http://stackoverflow.com/questions/207902/how-best-to-deal-with-gigantic-source-code-files-in-visual-studio/207940#207940 0 Answer by moogs for How best to deal with gigantic source code files in Visual Studio moogs 2008-10-16T09:34:26Z 2008-10-16T09:34:26Z <p>It must be possible somehow to group large chunks of those files in separate libraries. You'd then separate them into several projects. Tried this? What the is the current structure of your source code/ project?</p> http://stackoverflow.com/questions/207902/how-best-to-deal-with-gigantic-source-code-files-in-visual-studio/208002#208002 4 Answer by eugensk00 for How best to deal with gigantic source code files in Visual Studio eugensk00 2008-10-16T10:02:41Z 2008-10-16T12:03:35Z <p>I would at least change huge files extention to something like <em>.cpp_gen</em> or <em>.cpp_huge</em> to remove syntax highlighting, outlining etc. and then reassign build tool back to <em>C/C++ compiler tool</em> for them.</p> http://stackoverflow.com/questions/207902/how-best-to-deal-with-gigantic-source-code-files-in-visual-studio/208281#208281 1 Answer by Rick for How best to deal with gigantic source code files in Visual Studio Rick 2008-10-16T12:10:30Z 2008-10-16T12:10:30Z <p>Is the problem when you open the file for editing in Visual Studio? I've noticed that VS editor can be quite slow and inefficient on large files. Also, you could try turning off certain options, e.g. word-wrapping kills my machine for some reason.</p> <p>Otherwise you could use something else like Textpad with syntax highlighting installed to edit the problematic large source file... not as nice, for sure.</p> http://stackoverflow.com/questions/207902/how-best-to-deal-with-gigantic-source-code-files-in-visual-studio/208983#208983 1 Answer by Mark Bessey for How best to deal with gigantic source code files in Visual Studio Mark Bessey 2008-10-16T15:15:15Z 2008-10-16T15:15:15Z <p>Seems like this R# tool (is that Resharper?) is the problem. Can you disable it? Otherwise, changing the file type for the generated code might make sense - presumably, you aren't going to be doing major editing on those files, so losing syntax coloring and other features specific to source files wouldn't be an issue. </p> http://stackoverflow.com/questions/207902/how-best-to-deal-with-gigantic-source-code-files-in-visual-studio/209053#209053 1 Answer by discomurray for How best to deal with gigantic source code files in Visual Studio discomurray 2008-10-16T15:32:41Z 2008-10-16T15:32:41Z <p>Don't use visual studio. There is too much going on in VS.</p> <p>Since the file is read only, you wont be using any IDE features (Intellisense, Refactoring tools, formatting). </p> <p>You will probably get better performance using a simpler application, such as notepad++ for simply viewing the file. Notepad++ will do standard language highlighting if you like color.</p>