[root]/ALIV3
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 206 (100.0%) | 9833 (100.0%) | 47.7 |
oldcode | 28 (13.6%) | 5008 (50.9%) | 178.8 |
westram | 174 (84.5%) | 4669 (47.5%) | 26.8 |
meierh | 1 (0.5%) | 150 (1.5%) | 150.0 |
boehnel | 1 (0.5%) | 5 (0.1%) | 5.0 |
baderk | 1 (0.5%) | 1 (0.0%) | 1.0 |
artemov | 1 (0.5%) | 0 (0.0%) | 0.0 |
- removed dead ALIV3
0 lines of code changed in 30 files:
* wrap main for untested (but testable) units
- still untestable
* ptpan (wont change in this branch)
* GENOM (cyclic dependency with GENOM_IMPORT due to Location)
* fix missing lib dependencies
- DIST -> SL/NDS
- STAT -> SL/ITEMS
- AW_NAME -> libAWT (instead of libWINDOW)
4 lines of code changed in 3 files:
merge from dev [7751] [7752]
* updated many old-style typedefs (typedef struct/enum)
8 lines of code changed in 3 files:
merge from dev [7748] [7749] [7750]
* comments (C->C++ style)
* fixed umlauts in TREEGEN
45 lines of code changed in 1 file:
- merge from dev [7450] [7452] [7456] [7457] [7458] [7459] [7460] [7461] [7464] [7465] [7466] [7467] [7468] [7469] [7482]
* tweaked compiler options
- activated -Weffc++
* postfilter warnings where Scott Meyers' advices are too general.
- base classes should not always have virtual destructors, since that renders tiny classes useless and
- members should not always be initialized via initialization list, since that often violates the DRY principle
* fix gcc's inability to detect that Noncopyable implements a private copy-ctor and op=
* this slows down complete ARB recompilation by ~5%
- added -Wold-style-cast (inactive)
- removed -Wno-non-template-friend added in [7447]
* postcompile.pl
- added option --original to show unmodified compiler output
* declared op= for classes which had a copy-ctor
* moved op= macros to arbtools.h
* derived classes containing pointers from Noncopyable (use Noncopyable virtually) or
* made them copyable if needed (awt_mask_item, KnownDB, Code, AWT_registered_itemtype, GEN_gene, !PosGene, !PartialSequence, !PlugIn, Range, Convaln_exception)
* other related changes
- user mask destruction working now
49 lines of code changed in 13 files:
merged from dev [7320] [7418] [7419] [7420]
* !BasePosition
- uses int instead of size_t
- allow empty sequences (gap-only)
- allow to index just a part of a sequence
- use new class !CharPredicate to initialize custom gaps
* moved safeCharIndex() to dupstr.h
* unit tests
- collectIntFunResults (allowed range)
- slow test
4 lines of code changed in 4 files:
merges [7084] [7086] [7087] [7088] from refactor
* added CORE lib
- added arb_progress (unused yet)
- moved some code from ARBDB to CORE
* added tests to CORE lib
* generate_all_links.sh
- now tests link targets
- able to replace links (if link stays the same, but target changes)
* fixed perl interface
- link with libCORE
- DRYed LINUX.PL and DARWIN.PL
- added wrapper functionality (ARBDB->CORE). Functions starting with GBC_ are wrappers for code that moved into libCORE (which is NOT xsub'd)
6 lines of code changed in 1 file:
* fixed include wrappers (merges [7006] [7007])
- use gcc-style include-wrappers
- use same convention for local wrappers in TREEGEN as rest of ARB
1 lines of code changed in 1 file:
* compiler-messages (merges [6848] [6849] [6850] [6851] [6853] [6855] [6856] [6860] from refactor)
- errors get listed before warnings
- pipe all compilations through postcompile filter
- optionally filter warnings and/or stop at 1st error (controllable by POST_COMPILE in ARB Makefile)
- no warnings for ptpan (too many; version in trunk is outdated)
2 lines of code changed in 1 file:
- depends for [6816]
3 lines of code changed in 1 file:
* depends updated for [6812] + [6813]
6 lines of code changed in 1 file:
* merged from refactor [6796] [6804] [6806] [6808]
* added header for planned library ARB_CORE
* renamed inline.h into arb_str.h
* header for global general purpose defines/inlines (arb_defs.h)
- use ARRAY_ELEMS where applicable
* removed duplicate of ARB_strscmp (GBS_strscmp). No longer needed cause ARBDB is now C++
3 lines of code changed in 3 files:
* free()
- removed unneeded casts of argument
- removed unneeded if-clauses
2 lines of code changed in 1 file:
* GB_change_my_security
- removed constant result
- removed unused parameter 'passwd'
1 lines of code changed in 1 file:
- fixed includes
- added MBI-headers and wrappers
282 lines of code changed in 20 files:
- added library dependency declarations
4 lines of code changed in 1 file:
- fixed includes
- added MBI headers
- removed unused files
6 lines of code changed in 2 files:
Moved a lot of dead code to where it belongs: into the depths of SVN.
I didn't care much: If there was no obvious reason (e.g. some coment explaining why it's still there), it has been deleted
34 lines of code changed in 3 files:
* removed GB_strdup
* moved freeset, nulldup, etc to own header (dupstr.h)
* added freenull
- replacement for freeset(var,NULL)
- freeset is a template now and does no longer work with NULL/0
- replaced all occurrances
4 lines of code changed in 2 files:
* ARBDB
- compiles as C++ (no longer compiled as plain C)
- removed ARBDB2 + ARBDBS
- removed rotten C++-wrappers (ARBDBPP)
- generates special header for perl-interface to reduce dependencies (ad_p_prot.h)
* removed (ARBDB)
- gb_search_enum (merged with GB_TYPES)
* renamed (ARBDB)
- gbs_malloc_copy -> GB_memdup
- gb_search_types -> GB_SEARCH_TYPE + renamed enum-members
* tweaked perl interface
- code in ARBDB is now able to 'die' correctly (see GBP_croak_function)
- compiles as C++
- wrote generic functions for enum <-> string conversion (perl uses strings for enum values)
- added needed conversion functions
- removed handcoded xsubs (now all are generated by arb_proto_2_xsub - nevertheless, it's still possible to define xsubs manually)
- ARB::find and ARB::find_string (3rd parameter needs different values, only one file affected: PERL_SCRIPTS/GENOME/GI.pm - fixed)
- removed all functions using GBQUARK from perl interface
* perl interface generator (arb_proto_2_xsub)
- completely rewritten
- does automatic type conversion (expecting that the needed functions are defined in ARBDB/adperl.c)
* prototype generator
- compiles as C++
- switch -F accept's '!^' as beginning-of-name expression
* removed ARB_EDIT
- moved naligner interface code to EDIT4
11 lines of code changed in 2 files:
* reactivated original GB_close
* removed GB_exit (use GB_close)
* gb_delete_entry now takes and invalidates a GBDATA** (to avoid further undetected usage)
* gb_do_callback_list called with GB_MAIN_TYPE (instead of possibly already deleted gb_main)
* added some missing transactions
* moved declaration of GBDATA into arbdb_base.h (and include where needed)
* GB_MAIN_TYPE is no longer void
* AW_default is no longer void
* replaced the 3 differing ways to exit EDIT4 by ED4_exit()
* added AW_root::unlink_awars_from_DB() and call in arb_ntree, arb_dist, arb_edit4, arb_pars and arb_phylo
* rewrote arb_2_ascii, arb_2_bin, arb_perf_test, arb_read_tree (single exit point, error handling)
* unlinked AWARs now return "" not "?????"
* AW_awar::read_string works only with awars of type AW_STRING. Added assertion + fixed one wrong usage.
* inlined AW_awar::get()
* added AW_awar::remove_all_callbacks() and AW_awar::remove_all_target_vars()
4 lines of code changed in 1 file:
* changed ulong->ULONG and uint->UINT (ulong/uint are missing under OSX)
17 lines of code changed in 5 files:
* removed useless macros:
- GB_STRDUP (easily taken for GB_strdup)
- GB_MEMCPY + GB_MEMSET + GB_FREE
- GB_DELETE (replaced by freeset(xx,NULL))
* added macros:
- freeset (= free + assign)
- freedup (= free + assign strdup'ed)
- reassign (= free + assign + clear source var)
- nulldup (=strdup accepting NULL; replacement for GB_strdup in C++ code)
* use these macros where applicable
1 lines of code changed in 1 file:
- made depends for [5708]
6 lines of code changed in 1 file:
- depends updated
3 lines of code changed in 1 file:
- char array indices
- ambiguous elses
16 lines of code changed in 1 file:
- fixed signed chars used as array index
8 lines of code changed in 2 files:
- depends updated
4 lines of code changed in 1 file:
- use GB_random / GB_frandom instead of rand
- removed calls to srand() - done by GB_[f]random
8 lines of code changed in 1 file:
- use GB_CASE parameter
- changed GBS_string_[s]cmp
2 lines of code changed in 1 file:
- replaced calls to GB_find with new find-functions
6 lines of code changed in 1 file:
- changed names of linker commands
1 lines of code changed in 1 file:
- depends updated
2 lines of code changed in 1 file:
64bit conversion fix (int -> long).
1 lines of code changed in 1 file:
"int -> long" to get 64bit work
5 lines of code changed in 1 file:
- removed unused default-param 'info' from put_sequence_string()
1 lines of code changed in 1 file:
- removed code creating unused 'mark' entries
7 lines of code changed in 1 file:
- fixed changed BI_helix access
4 lines of code changed in 1 file:
- proper clean (avoid errors if already cleaned)
1 lines of code changed in 1 file:
- fixed warnings
3 lines of code changed in 1 file:
(21 more)