Reusable code / class Repositories - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:42:03Z http://stackoverflow.com/feeds/question/140224 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/140224/reusable-code-class-repositories 1 Reusable code / class Repositories slashmais 2008-09-26T15:28:31Z 2009-09-08T15:11:28Z <p>I've got several modules containing functions, classes and templates that I keep in a directory called (hah!) 'reuse'. I know the content reasonably well, so to find a particular class or bit of code doesn't take too long, but it is slowly growing in size and I need some sensible method to store them for easy search &amp; retrieval.</p> <p>How should I do this?</p> http://stackoverflow.com/questions/140224/reusable-code-class-repositories/140261#140261 3 Answer by David Schmitt for Reusable code / class Repositories David Schmitt 2008-09-26T15:33:26Z 2008-09-26T16:53:59Z <ul> <li><strong>Group</strong> the sources by <strong>area of use</strong> (network, security, text processing, etc); best in <strong>directories</strong> for easier browsing.</li> <li><strong>Tag</strong> functions by adding <strong>keywords</strong> into the source documentation. Use an appropriate comment markup system (like javadoc) and create some kind of indexable docs.</li> <li><strong>Search</strong> by using some kind of full text search (grep -r, google desktop) on your sources.</li> </ul> http://stackoverflow.com/questions/140224/reusable-code-class-repositories/140263#140263 0 Answer by Daok for Reusable code / class Repositories Daok 2008-09-26T15:33:39Z 2008-09-26T15:33:39Z <p>You can divise all you classes in directories.</p> <p>What language is for the question? Because .Net you could have a librairy like a DLL divised with namespace.</p> http://stackoverflow.com/questions/140224/reusable-code-class-repositories/140266#140266 0 Answer by skymt for Reusable code / class Repositories skymt 2008-09-26T15:34:07Z 2008-09-26T15:34:07Z <ol> <li>Group the functions/classes/templates into modules/directories by function. Pretend you'll be releasing them as open-source libraries; consider how you would want someone else's code to be organized. Eventually, it will be someone else's code: you, a year or two ago.</li> <li>Use a documentation system. Doxygen will generate a handy HTML code browser for you.</li> </ol> http://stackoverflow.com/questions/140224/reusable-code-class-repositories/140267#140267 1 Answer by vIceBerg for Reusable code / class Repositories vIceBerg 2008-09-26T15:34:26Z 2008-09-26T15:34:26Z <p>Hi!</p> <p>Usually, I group my files depending on the general purpose of the files.</p> <p>Ex: Reuse\Database Reuse\Graphics Reuse\Math Reuse\Etc...</p> <p>You can then sub-group your groups</p> <p>Reuse\Graphics\2D Reuse\Graphics\3D</p> <p>HTH</p> http://stackoverflow.com/questions/140224/reusable-code-class-repositories/140269#140269 -1 Answer by Sklivvz for Reusable code / class Repositories Sklivvz 2008-09-26T15:34:37Z 2008-09-26T15:34:37Z <p><strong>Post it on Stack Overflow! :)</strong></p> http://stackoverflow.com/questions/140224/reusable-code-class-repositories/140272#140272 1 Answer by Horst Gutmann for Reusable code / class Repositories Horst Gutmann 2008-09-26T15:34:48Z 2008-09-26T15:34:48Z <p>Depends on the system, but the moment the amount of reusable could reaches a certain threshold I tend to try to convert logical chunks of it into "real" libraries in the same sense like you would use from 3rd parties (with documentation etc.) and put them into the respective library path, so that they become truly reusable. </p> <p>If you don't mind giving them away under some OSS license, you could even go as far as putting them into the CPAN/PyPI/PEAR-equivalent of whatever environment you're working with. This adds even more reuseability.</p> <p>I guess the important part still is that you bundle your code into real libraries. Then the retrieval part should be much easier since mostly automatic.</p> http://stackoverflow.com/questions/140224/reusable-code-class-repositories/140297#140297 0 Answer by Daddy Warbox for Reusable code / class Repositories Daddy Warbox 2008-09-26T15:38:26Z 2008-09-26T15:38:26Z <p>Had a debate on this a while ago. Standard folderization of your code is good for readability and organization, but when you want to just grab things, the one other way is to use tagging somehow (like by adding tags to the file names or other meta data). Tags work good in the place of folders because you can dig up specific or general things quickly, whereas with folders you need to dig through trees to get specific stuff.</p> <p>Tags: O(n). Folders: O(n^2)</p> <p>Maybe. :P</p> http://stackoverflow.com/questions/140224/reusable-code-class-repositories/154220#154220 0 Answer by slashmais for Reusable code / class Repositories slashmais 2008-09-30T17:58:47Z 2008-09-30T17:58:47Z <p>A related question can be found here: <a href="http://stackoverflow.com/questions/90300/in-house-full-text-search-engine-for-source-code-and-sql-scripts">full text search for source code</a></p> http://stackoverflow.com/questions/140224/reusable-code-class-repositories/171136#171136 0 Answer by pookleblinky for Reusable code / class Repositories pookleblinky 2008-10-04T22:45:54Z 2008-10-04T22:45:54Z <p>Folderization according to language (subdivided into function), with tags, in a VCS'd directory, with Doxygen/Perldoc/*Pod/*-extracted documentation. You'll have an easily greppable archive of reusable modules/documentation instantly portable into your working ./ </p> http://stackoverflow.com/questions/140224/reusable-code-class-repositories/1394568#1394568 0 Answer by slashmais for Reusable code / class Repositories slashmais 2009-09-08T15:11:28Z 2009-09-08T15:11:28Z <p><a href="http://stackoverflow.com/questions/237946/how-do-i-index-and-make-available-reusable-code">This</a> question covers much the same ground &amp; I'll close this question in it's favor.</p>