1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
|
2011-12-20 (1.98) Lucas M. Schnorr <schnorr@gmail.com>
* New release. Second RC before 2.0.
2011-12-18 Lucas M. Schnorr <schnorr@gmail.com>
* General/NSColor+Additions.m: bug fix, correctly parsing RGB
colors from trace using a NSScanner. The fix considers that a RGB
color in the trace file is defined as three values from 0 to 1
that defines the red, green and blue components. This is defined
in the Paje trace file format description.
* FileReader/PajeFileReader.m: bug fix, was casting NSData to a
NSMutableData, causing an exception when running with the Cocoa's
NSFileHandle implementation. In Linux, the used method to read
from the file returned a NSMutableData, hiding the bug.
* fixing several compilation warnings
2011-12-17 Lucas M. Schnorr <schnorr@gmail.com>
* many: Fix several compilation warnings detected by gcc, clang
and gcc by Apple.
2011-06-01 Lucas M. Schnorr <schnorr@gmail.com>
* General/PSortedArray.[mh]: performance optimization in array
insertion by using a smarter algorithm; if the object is to be
inserted in an empty array or in the last position of the array,
just add it to the end; otherwise, do a binary insertion. This
change benefits only the reading of un-ordered trace files.
2011-03-15 Lucas M. Schnorr <schnorr@gmail.com>
* General/PajeType.[mh]: color dictionaries must not have keys
with white spaces in the beginning. If values for states start
with white spaces, we trimm them out before registering the
colors.
2011-02-21 Lucas M. Schnorr <schnorr@gmail.com>
* General/PajeType.[mh], General/HierarchyBrowser.m,
General/PajeEntityInspector.m, PajeSimulator/PajeSimul+Events.m
PajeSimulator/PajeSimul.m, ReductionFilter/BusyNode.m,
ReductionFilter/ReduceEntityType.[mh]: types have an ident (its
unique identification, usually the alias) and a
description (usually its name). Old attributes (name,
uniqueAlias) are removed to reflect this new layout. The -name
method is removed, objects should call description on type to get
its name.
2011-02-16 Lucas M. Schnorr <schnorr@gmail.com>
* General/PajeType.[mh], PajeSimulator/PajeSimul+Events.m
PajeSimulator/PajeSimul.m: bugfix, multiple types with same name
are correctly managed by the simulator. Types were used as keys in
the userEntities dictionary, but their hashes were the name, and
not the unique identifier of the type (an optional alias). This
commit addresses this issue by creating a new attribute to the
PajeType that corresponds to the alias defined in the trace or the
name (if alias not present). PajeTypes' hash is based on this new
attribute.
2010-12-15 Lucas M. Schnorr <schnorr@gmail.com>
* Paje/Paje.gorm/*: bugfix, changing the selected filter on popup
updates the current filter of the "Filter" window
2010-11-24 Lucas M. Schnorr <schnorr@gmail.com>
* FileReader/PajeFileReader.[hm]: method to obtain the porcentage
of the trace file that has already been read.
2010-07-13 Lucas M. Schnorr <schnorr@gmail.com>
* FileReader/PajeFileReader.[hm], General/Protocols.h: let the
user specify the chunk size used during the reading of a trace
file.
2010-07-01 Lucas M. Schnorr <schnorr@gmail.com>
* General/PajeFilter.[hm], StorageController/AnchorFilter.m:
fixing the return type for the protocol method
containerTypeForType (it was PajeEntityType, but it always return
PajeContainerType).
* Removed some compilation warnings
2010-03-10 Lucas M. Schnorr <schnorr@gmail.com>
* PajeSimulator/SimulContainer.[mh]: maxValueForEntityType and
minValueForEntityType were returning NSNumber* instead of
double (as defined by the PajeFilter protocol).
2010-02-23 Benhur Stein <benhur@inf.ufsm.br>
* Documentation/lang-paje/typeevent.tex,
PajeSimulator/PajeSimul+Events.m, PajeSimulator/PajeSimul.m: some
code cleanup; change the way aliases work: now, if an alias is
defined, all references must be to the alias, they cannot be to
the name anymore. This allows for different entities to have the
same name when in a different container.
2009-12-23 Lucas M. Schnorr <schnorr@gmail.com>
* Tracers/JRastro/libRastro/*: using autotools (automake, ...) to
create a configuration environment for libRastro
2009-10-09 Lucas M. Schnorr <schnorr@gmail.com>
* PajeSimulator/UserLink.[mh]: new method "key" for UserLink class
so other objects are allowed to obtain the key used for the link
and specified in the tracefile
2009-09-23 Lucas M. Schnorr <schnorr@gmail.com>
* PajeSimulator/PajeSimul+Events.m,PajeSimul.m,SimulContainer.[h|m]:
changes to make containers keep extra fields when specified in
PajeCreateContainer events in the trace file. The SimulContainer
class now has an attribute extraFields and two new methods to
intercept queries about fields (fieldNames and valueOfFieldnamed:)
2009-05-17 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimul/SimulContainer.m: create (and use) auxiliary class to
keep container state in chunks
* PajeSimulator/PajeSimul: remove userNumberToContainer variable
2009-05-17 Benhur Stein <benhur@inf.ufsm.br>
* Tracers/JRastro/libRastro/many: cleanup for 64-bit compiling
2008-05-17 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/DrawView+Drawing.m,HirarchyRuler.m: small changes
to make it compile and work on windows
2008-04-19 Benhur Stein <benhur@inf.ufsm.br>
* AggregatingFilter/AggregatingChunkArray.m General/EntityChunk.h
General/EntityChunk.m PajeEventDecoder/PajeEventDecoder.h
PajeEventDecoder/PajeEventDecoder.m PajeSimulator/SimulChunk.h
PajeSimulator/SimulChunk.m: chunk code cleanup
2008-03-07 Benhur Stein <benhur@inf.ufsm.br>
* General/: correct some #includes
2008-02-21 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/DrawView.m: register a default size for aggregation
2008-02-21 Benhur Stein <benhur@inf.ufsm.br>
* Paje/PajeController.m General/NSDate+Additions.m: move locale
setting to a more global place
2008-02-21 Benhur Stein <benhur@inf.ufsm.br>
* all GNUmakefile: clean some compiling/linking issues (patches by
Yavor Doganov and Vincent Danjean)
2007-11-11 Benhur Stein <benhur@inf.ufsm.br>
* correct some coloring issues
2007-11-06 Benhur Stein <benhur@inf.ufsm.br>
* better display of fields
2007-11-06 Benhur Stein <benhur@inf.ufsm.br>
* FieldFilter/FieldFilter.m, ImbricationFilter/InsetLimit.m: add
missing method enumeratorOfCompleteEntitiesTyped:...
2007-11-06 Benhur Stein <benhur@inf.ufsm.br>
* remove a log message
2007-11-05 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/HierarchyRuler.m: correct typo/missing line break
2007-11-03 Benhur Stein <benhur@inf.ufsm.br>
* better drawing code for variables
2007-11-03 Benhur Stein <benhur@inf.ufsm.br>
* Clean some compilation warnings; simplify compilation on MacOSX and
Linux; change installations instructions in README
2007-07-19 Benhur Stein <benhur@inf.ufsm.br>
* */*.nib: add missing files
2007-07-19 Benhur Stein <benhur@inf.ufsm.br>
* General/GNUmakefile: define installation domain; General framework
needs to be installed separately, before compiling Paje
* README: change installation howto
2007-07-19 Benhur Stein <benhur@inf.ufsm.br>
* */GNUmakefile: make General into a framework
2007-07-19 Benhur Stein <benhur@inf.ufsm.br>
* AggregatingFilter/AggregatingChunk.m: use -latestTime instead of
[lastEntity time]
* General/PajeEntityInspector.m: change box size calculations so that it
looks better on Mac
* Paje/PajeTraceController.m: change default order of filters
* SpaceTimeViewer/DrawView+Drawing.m: change way of highlighting entities
* SpaceTimeViewer/DrawView.h: add aux variables for new highlighting
* SpaceTimeViewer/DrawView.m: call new highlighting
* SpaceTimeViewer/HierarchyRuler.m: change drawing of ruler to a way
that is compatible with MacOSX
* SpaceTimeViewer/STLayoutEditor.[hm]: add steppers for editing numbers
* SpaceTimeViewer/Shape.m: correct some shapes
2007-07-19 Benhur Stein <benhur@inf.ufsm.br>
* General/Association.m, General/CStringCallBacks.m,
General/NSArray+Additions.m, General/NSDate+Additions.h,
General/PajeFilter.m, General/PajeType.m, General/Protocols.h,
General/UniqueString.m, OrderFilter/Order.m, Paje/PajeController.m,
SpaceTimeViewer/DrawView+Finding.m: change some small incompatibilities
with MacOSX (include files, type declarations)
2007-07-19 Benhur Stein <benhur@inf.ufsm.br>
* ReductionFilter/ReduceEntity.m, SpaceTimeViewer/STEntityTypeLayout.m,
SpaceTimeViewer/STLayoutEditor.m, StatViewer/StatArray.m: rename
subclassResponsibility to _subclassResponsibility (does not exist in Mac)
2007-07-19 Benhur Stein <benhur@inf.ufsm.br>
* ContainerFilter/ContainerSelector.nib, OrderFilter/Order.nib,
EntityTypeFilter/EntityTypeSelector.nib, Paje/Paje.nib,
FieldFilter/FieldFilter.nib, ReductionFilter/ReductionFilter.nib,
General/HierarchyBrowser.nib, SpaceTimeViewer/STEntityTypeLayout.nib,
General/PajeEntityInspector.nib, SpaceTimeViewer/SpaceTime.nib,
General/SourceTextViewer.nib, StatViewer/StatViewer.nib,
ImbricationFilter/InsetLimit.nib: new interface files for MacOSX
* ContainerFilter/GNUmakefile, EntityTypeFilter/GNUmakefile,
FieldFilter/GNUmakefile, General/GNUmakefile,
ImbricationFilter/GNUmakefile, OrderFilter/GNUmakefile,
Paje/GNUmakefile, ReductionFilter/GNUmakefile,
SpaceTimeViewer/GNUmakefile, StatViewer/GNUmakefile: declare nib files
as resources
2007-07-19 Benhur Stein <benhur@inf.ufsm.br>
* General/Macros.h: declare debug log macros missing in MacOSX
2007-07-18 Benhur Stein <benhur@inf.ufsm.br>
* FileReader/PajeFileReader.m: remove file compression support
when on MacOSX (GNUstep extension)
2007-07-18 Benhur Stein <benhur@inf.ufsm.br>
* EntityTypeFilter/EntityTypeSelector.m: make ColoredSwitchButtonCell
appear on MacOSX; add missing enumerator method
2007-07-18 Benhur Stein <benhur@inf.ufsm.br>
* AggregatingFilter/AggregateValue.[hm]: avoid inter-bundle
dependency (derive from PajeEntity instead of UserValue)
2007-07-18 Benhur Stein <benhur@inf.ufsm.br>
* AggregatingFilter/AggregateEvent.h, StatViewer/PieCell.m:
correct method name (subValueAtIndex:)
2007-07-18 Benhur Stein <benhur@inf.ufsm.br>
* General/PajeEvent.m: fix 'for' limit (bug report from Lucas Schnorr)
2007-03-11 Benhur Stein <benhur@inf.ufsm.br>
* Change makefiles to be compatible with gnustep-make v2
2007-02-27 (1.97) Vincent Danjean <Vincent.Danjean@ens-lyon.org>
* New release. First RC before 2.0 ;-)
2007-02-16 Benhur Stein <benhur@inf.ufsm.br>
* put version info
2007-02-16 Benhur Stein <benhur@inf.ufsm.br>
* change chunk sizes.
* version 1.97 (first pre 2.0)
2007-02-16 Benhur Stein <benhur@inf.ufsm.br>
* AggregatingFilter/AggregatingFilter.m: correct wrong enumerator use
2007-02-16 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTime/DrawView+Drawing.m: better drawing of incomplete links
and min/max values
2007-02-16 Benhur Stein <benhur@inf.ufsm.br>
* AggregatingFilter/AggregatingChunk.m: remove debug messages
2007-02-16 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTime/DrawView.m: test for nil window when drawing;
correct trackingRect setting.
2007-02-15 Benhur Stein <benhur@inf.ufsm.br>
* General/EntityChunk.h: added missing method declarations
* PajeSimulator/PajeSimul.h: ditto
* PajeSimulator/SimulChunk.h: ditto
* SpaceTimeViewer/STController: abort initialisation if interface
cannot be loaded
2007-02-15 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/STController: better initialisation code for when
more than one interface file is loaded
2007-02-15 Benhur Stein <benhur@inf.ufsm.br>
* ReductionFilter/BusyArray: add new enumerator
* ReductionFilter/BusyNode: add new enumerator
* ReductionFilter/ReduceEntity: add min/maxValue methods
* ReductionFilter/ReduceEntityType: call new notification limitsChanged
instead of dataChanged
2007-02-15 Benhur Stein <benhur@inf.ufsm.br>
* AggregatingFilter/AggregatingChunk: new class
* AggregatingFilter/AggregatingChunkArray: move aggregator to
AggregatingChunk class; major refactoring, removing most subclasses
* AggregatingFilter/AggregatingFilter.m: clear cache when
hierarchyChanged
* AggregatingFilter/EntityAggregator: implement OneLinkAggregator,
auxiliary class for LinkAggregator (aggregates one src-dest pair);
retain temporary times;
* AggregatingFilter/GNUmakefile: compile new file
2007-02-15 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimulator/SimulContainer: remove missing chunk notif;
PajeSimulator/UserLink: better comparision of matching links,
should work when re-simulating
2007-02-15 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimulator/SimulChunk: cope with changes in EntityChunk;
remove aggregation subclasses;
test for indexOfLastObject... returning NSNotFound
2007-02-14 Benhur Stein <benhur@inf.ufsm.br>
* General/ChunkArray: use exception instead of notif for missing chk;
add new enumerators
* General/EntityChunk.[hm]: use new enumerators; store entities here,
not in subclasses.
* General/PSortedArray: new enumerators
* General/NSArray+Additions.m: allow range out of array
2007-02-14 Benhur Stein <benhur@inf.ufsm.br>
* FileReader: add support for reading gzipped files
add control of when a chunk can end
* PajeEventDecoder: ditto
* PajeSimulator: ditto
2007-02-14 Benhur Stein <benhur@inf.ufsm.br>
* add timeLimitsChanged notification for better control of when to
recalculate layouts
2007-02-14 Benhur Stein <benhur@inf.ufsm.br>
* Paje/PajeTraceController.m; PajeSimulator/PajeSimul.m:
call missingChunk directly instead of thru a notification
2007-02-14 Benhur Stein <benhur@inf.ufsm.br>
* Paje/Paje*Controller.[hm]: cleaned finalisation code
2007-02-14 Benhur Stein <benhur@inf.ufsm.br>
* Paje/Paje.gorm: small changes in interface file
2006-11-02 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/DrawView.m: corrected trackingRect handling
* SpaceTimeViewer/SpaceTime.gorm: corrected autosizing
2006-10-30 Benhur Stein <benhur@inf.ufsm.br>
* EntityTypeFilter/EntityTypeSelector.m: indentation;
removed unused code
* General/ChunkArray.m,EntityChunk.m,PajeEvent.[hm],PajeType.[hm]:
removed debug or unused code
* SpaceTimeViewer/Shape.m: remove unused code
* PajeEventDecoder/PajeEventDecoder.[hm]: removed unused code
* PajeSimulator/PajeSimul.[hm],SimulChunk.m,UserLink.m,UserState.m:
removed unused code
* AggregatingFilter/AggregatingChunkArray.m: removed unused code
* StorageController/Encapsulate.m: removed unused code
* StorageController/*Aggreg*[hm]: removed files moved to
AggregatingFilter/
2006-10-29 Benhur Stein <benhur@inf.ufsm.br>
* */*: rewrote file reading and simulation for better speed.
(events are kept pointing into original string from file;
events cannot be retained anymore;
fields are made into objects only when needed, by the simulator).
new AggregatingFilter, with some code from StorageController;
completed missing entity types (values); still needing some
refactoring.
made distinction between -value and -doubleValue for all entity types.
2006-10-29 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeDiagram/*: major overhaul in drawing code, mainly to
substitute PS functions by NSBezierPath.
variables now have a vertical scale; all variables use the same
scale in a container.
2006-06-24 Benhur Stein <benhur@inf.ufsm.br>
* StorageController/AggregateEvent.m: get startTime and endTime of
entity to aggregate separetely (for when it is already an aggregation)
* StorageController/AggregatingChunkArray.[hm]: new initialisation
method that returns a subclass depending on entityType;
new AggregatingEventChunkArray subclass;
in aggregateEntitiesUntilTime:, try to aggregate entities at end, when
there is an interval without entities just before time.
* StorageController/Encapsulate.m: use new initialisation method;
support for aggregating events as well as states
* StorageController/EventAggregator.[hm]: new method aggregateBefore:;
take into account possibility of aggregated events have different
start and end times (when already aggregated).
2006-06-22 Benhur Stein <benhur@inf.ufsm.br>
* StorageController/AggregatingChunkArray.[hm]: refactored to define
private subclasses for each entity type
* StorageController/Encapsulate.m: use new interface to AggChArr.
2006-06-20 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimulator/UserEvent.[hm]: -setEvent: new method
* PajeSimulator/UserLink.[hm]: remove direct access to event ivar
* StorageController/EventAggregator.[hm]: changed maxDuration to
aggregationDuration; added a new initialization method; refactored
some methods; changed to agglomerate events added in increasing
date; added copyWithZone: method
* StorageController/StateAggregator.[hm]: some refactoring;
changed aggregation to work with states being added in increasing
endTime order; added copyWithZone: method
* StorageController/AggregateState.m: get entities in reverse order
* StorageController/AggregatingChunkArray.[hm]: new class
* StorageController/GNUmakefile: include new class
* General/ChunkArray.[hm]: new method for enumeration of only completed
entities, necessary for state aggregation; chunks are now ordered
by startTime; send notification when accessing an empty chunk (chunks
are no longer removed, they are emptied)
* StorageController/Encapsulate.[hm]: Most functionality removed -- no
longer enumerates entities, enumeration is now done directly by
containers. New code for controlling aggregation of states.
This will eventually go into a new filter.
* EntityChunk.[hm]: chunks can be emptied. A chunk keeps its state.
Three new methods to change state (-freeze, -activate, -empty).
The class keeps a list in LRU order of all chunks, to be emptied by
controller. New enumerators for accessing data in forward or reverse
order (forward enums needed by agglomerators). Some methods from
SimulChunk migrated to here.
* General/EntityDescriptor.h: add missing newline at end of file.
* EntityTypeFilter/EntityTypeSelector.m: change method decl
* General/FilteredEnumerator.m: -nextObject rewriten
* General/MultiEnumerator.[hm]: new initializer
* General/PSortedArray.[hm]: new auxiliary methods (lastObject,
indexOfFirstObjectAfterValue:, indexOfLastObjectBeforeValue:)
* General/PajeContainer.[hm]: declare new enumeration methods
* Paje/PajeController.[hm]: new method -bundleWithName: for loading/
keeping track of loaded bundles
* Paje/PajeTraceController.[hm]: new way of loading/connecting bundles,
following a config structure (still fixed, should be read from
a config file); remove code for checkpointing, now all info needed
for resimulation is kept by containers, indexed by "chunkNumber";
reading of each chunk is started by calling startChunk:, components
must know how to restart a chunk;
new support for conversion of time into chunkNumber.
* many files: removed encode/decodeCheckPointWithCoder: method
* PajeEventDecoder.[hm]: keep info for each chunk;
implement -startChunk: and endOfChunk; some cleaning on -init.
* PajeFileReader.[hm]: same thing; change class name to FileReader
* PajeSimulator/PajeSimul.[hm]: same thing;
* PajeSimulator/PajeSimul+Events.m: some optimizations for when
simulation is being replayed
* General/Protocols.h: add -startChunk: and -endOfChunk methods
* PajeSimulator/SimulChunk.[hm]: some methods refactored into super;
implement simulation of each entity event here (from SimulContainer);
better error for illegal events (in wrong entity type).
Each chunk now keeps the entities that finish in its lifetime
(those are freed when the chunk is emptied) and entities that
exist during its lifetime but finish after it (those are never
freed and are used for resimulating). AggregateStateChunk: new
subclass to help with aggregation of states (should not be here).
still needs some refactoring and better implementation of 'variable'
entities.
* SimulContainer.[hm]: methods for reverse/forward enumeration of
entities; moved most of entity simulation into SimulChunk.
* General/PajeFilter.[hm]: declare new methods -startChunk:,
-endOfChunk,
-enumeratorOfCompleteEntitiesTyped:inContainer:fromTime:toTime:
minDuration:
2006-03-13 (1.4.0) Vincent Danjean <Vincent.Danjean@ens-lyon.org>
* New release. All new features seem to work.
2006-03-08 Benhur Stein <benhur@inf.ufsm.br>
* General/NSMatrix+Additions.m: remove uses of performSelector:
returning BOOL (GCC4 incompatibility)
2006-03-08 Benhur Stein <benhur@inf.ufsm.br>
* FieldFilter/FieldFilter.m, EntityTypeFilter/EntityTypeSelector.m,
ContainerFilter/ContainerSelector.m: change filtering method for GCC4
2006-03-08 Benhur Stein <benhur@inf.ufsm.br>
* General/EntityChunk.[hm]: change signature of filtering method
(isEntity:laterThan: becames filterEntity:laterThan:)
* PajeSimulator/SimulChunk.m: use it
* General/FilteredEnumerator.m: use new signature on performed method
2006-03-08 Benhur Stein <benhur@inf.ufsm.br>
* General/HierarchyBrowser.m, General/PajeType.m: remove some more
GCC4 warnings
2006-03-08 Benhur Stein <benhur@inf.ufsm.br>
* ContainerFilter/ContainerSelector.h,
EntityTypeFilter/EntityTypeSelector.h, NSDate+Additions.m,
General/PajeContainer.m, General/PajeEvent.m, General/PajeFilter.h,
General/PajeFilter.m, General/PajeType.h,
PajeSimulator/SimulContainer.m, SpaceTimeViewer/DrawView.h:
remove some warnings when compiling on gcc4
2006-02-10 Benhur Stein <benhur@inf.ufsm.br>
* GNUmakefile: change installation dir to GNUSTEP_LOCAL_ROOT;
installation in GNUSTEP_USER_ROOT is buggy on GNUstep
2006-01-31 Benhur Stein <benhur@inf.ufsm.br>
* Tracers: new directory
* Tracers/JRastro: new directory, placeholder for JRastro, a tracer
for java programs.
2006-01-30 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimulator/SimulChunk.m: implement missing methods in EventChunk
2006-01-29 Benhur Stein <benhur@inf.ufsm.br>
* General/Association.m: retain decoded object
* General/ChunkArray.m: correct removing of chunks
* General/EntityChunk: implement NSCopying protocol; do not retain
entityType and container
* General/PSortedArray.[hm]: implement NSCopying protocol
* General/PajeEntity.m: do not encode entityType and container;
new method setEntityType:
* General/PajeEntityInspector.m: release filter on dealloc
* OrderFilter/Order.m: remove compilation warning
* OrderFilter/OrderKey.[hm]: remove compilation warning
* PajeSimulator/EventNames.h: remove compilation warning
* PajeSimulator/PajeSimul+Events.m: commented some warnings on entity
redefinition
* PajeSimulator/PajeSimul.[hm]: remove encoding of start/endTime
* PajeSimulator/SimulContainer.[hm]: cleanup and remove some methods;
more changes to operate with chunks; redone writing of checkpoints,
they are much smaller now
* StatViewer/StatViewer.m: remove one memory leak (there are more)
* StorageController/Encapsulate.m: make it work with chunks and
chunkarrays
2006-01-25 Benhur Stein <benhur@inf.ufsm.br>
* General/Protocols.h: add endOfChunk method to PajeSimulator protocol
* Paje/PajeTraceController.m: call endOfChunk on simulator
* PajeSimulator/PajeSimul.[hm]: new method endOfChunk
* General/EntityChunk.[hm]: enumeratorOfAllEntities new method
* General/PSortedArray.[hm]: removeAllObjects new method; implement
NSCopying protocol
* PajeSimulator/SimulContainer.[hm]: chunkOfType: new method; change
simulation to put new entities in chunks instead of sending to
encapsulator; endOfChunk new method;
* PajeSimulator/SimulChunk: new class
* PajeSimulator/GNUmakefile: add SimulChunk
(altered from branch by Edmar Pessoa Arajo Neto)
* General/TimeList.[hm]: removed class
2006-01-25 Benhur Stein <benhur@inf.ufsm.br>
* General/PSortedArray.[hm]: -reverseEnumerator* new methods;
removed specific enumerator, use range enumerator in array instead.
2006-01-24 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimulator/SimulContainer.[hm], PajeSimul+Events.m: move
simulation of newEvent events to container, like other events.
2006-01-24 Benhur Stein <benhur@inf.ufsm.br>
* General/ChunkArray.[hm]: new files
(from branch by Edmar Pessoa Arajo Neto)
* General/PSortedArray.[hm]: -removeObjectsInRange: new method
* General/GNUmakefile: include new files
2006-01-24 Benhur Stein <benhur@inf.ufsm.br>
* General/EntityChunk.[hm]: new files
(from branch by Edmar Pessoa Arajo Neto)
2006-01-24 Benhur Stein <benhur@inf.ufsm.br>
* General/NSArray+Additions.[hm]: new files, implement range enumeration
of objects in an array (from branch by Edmar Pessoa Arajo Neto)
2006-01-08 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/DrawView+Drawing.m SpaceTimeViewer/DrawView+Mouse.m
SpaceTimeViewer/DrawView.h SpaceTimeViewer/DrawView.m
SpaceTimeViewer/STController.m: cleanup in time selection code
2006-01-07 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/DrawView+Drawing.m, SpaceTimeViewer/DrawView.m: code
cleanup & use NSBezierPath to draw states
2006-01-06 Benhur Stein <benhur@inf.ufsm.br>
* ReductionFilter/BusyArray.h, ReductionFilter/BusyArray.m,
ReductionFilter/ReduceEntityType.m: code cleanup & better reverse
enumeration
2006-01-06 Benhur Stein <benhur@inf.ufsm.br>
* ReductionFilter/ReduceEntityType.m,
SpaceTimeViewer/DrawView+Drawing.m,
SpaceTimeViewer/DrawView+Finding.m, StatViewer/StatViewer.m,
StorageController/Encapsulate.m: reverse object enumeration, so that
they are in the right drawing order
2006-01-06 Benhur Stein <benhur@inf.ufsm.br>
* ContainerFilter/ContainerSelector.m,
EntityTypeFilter/EntityTypeSelector.m, General/Association.m,
General/HierarchyBrowser.m, General/PSortedArray.m,
General/PajeEntityInspector.m, General/Protocols.h,
OrderFilter/Order.m, Paje/PajeController.m, PajeSimulator/PajeSimul.m,
SpaceTimeViewer/STLayoutEditor.m, SpaceTimeViewer/Shape.m: remove
compiler warnings
2005-12-26 Benhur Stein <benhur@inf.ufsm.br>
* StatViewer/StatViewer.[hm]: correctly declare cell; remove .h
inclusion
2005-12-26 Benhur Stein <benhur@inf.ufsm.br>
* General/CondensedEntitiesArray.[hm]: added totalDuration variable
and access methods
* StorageController/AggregateState.m: -exclusiveDuration: add method
* General/NSString+Additions.[hm]: added string drawing methods from
PieCell
* PajeSimulator/SimulContainer.m: added a FIXME comment to stopWithEvent
* StatViewer/GNUmakefile: removed StatValue class
* StatViewer/StatValue.[hm]: removed files
* StatViewer/PieCell.[hm]: major change in pie drawing code
* StatViewer/StatArray.[hm]: mostly rewritten
* StatViewer/StatViewer.gorm: modified interface
* StatViewer/StatViewer.[hm]: reflect interface changes
2005-12-26 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimulator/PajeSimul.m: -inputEntity: check for unknown event
2005-10-14 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimulator/UserState.m: encode/decode new variables
2005-10-02 Benhur Stein <benhur@inf.ufsm.br>
* PajeEventDecoder/PajeEventDecoder.m: forgotten on previous commit
2005-10-02 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/DrawView+Drawing.m: optimize drawing code for
variables
2005-10-02 Benhur Stein <benhur@inf.ufsm.br>
* StorageController/Encapsulate.m: remove field names discovery
* General/PajeType.[hm]: add knownEventTypes variable and
-isKnownEventType: method
* PajeSimulator/User{Event,State}.m: use new method to speed up
field name discovery
2005-10-02 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/DrawView+Drawing.m: new drawing code for events with
support for aggregates.
2005-10-01 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/DrawView+Drawing.m: new drawing code for states with
support for aggregates.
2005-10-01 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/DrawView+Drawing.m: new drawing code for variables
2005-10-01 Benhur Stein <benhur@inf.ufsm.br>
* StatViewer/StatViewer.m: forgot on previous commit
2005-10-01 Benhur Stein <benhur@inf.ufsm.br>
* StatViewer/PieCell.m: autosize pie; draw arc around "other" value.
2005-10-01 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/STEntityTypeLayout.[hm],
SpaceTimeViewer/STLayoutEditor.{h,m,gorm}: keep user drawName choice;
add choice for drawing pseudo-3D lines for variables
2005-10-01 Benhur Stein <benhur@inf.ufsm.br>
* General/PajeEntityInspector.m: add inspection of new data and
aggregate events and states
2005-09-30 Benhur Stein <benhur@inf.ufsm.br>
* General/Filter.[hm]: add new query methods to support aggregates
- (BOOL)isAggregateEntity:(id<PajeEntity>)entity;
- (unsigned)subCountForEntity:(id<PajeEntity>)entity;
- (NSColor *)subColorAtIndex:(unsigned)index
forEntity:(id<PajeEntity>)entity;
- (NSString *)subNameAtIndex:(unsigned)index
forEntity:(id<PajeEntity>)entity;
- (double)subDurationAtIndex:(unsigned)index
forEntity:(id<PajeEntity>)entity;
- (unsigned)subCountAtIndex:(unsigned)index
forEntity:(id<PajeEntity>)entity;
* General/PajeEntity.[hm]: add similar methods for entity
* General/Protocols.h: likewise
* StorageController/AnchorFilter.m: likewise
* StorageController/Aggregate{Event,State}.[hm],
StorageController/{Event,State}Aggregator.[hm]: new classes
* StorageController/Encapsulate.m: use aggregator classes when
minDuration is big enough
* StorageController/GNUmakefile: add new classes
2005-09-30 Benhur Stein <benhur@inf.ufsm.br>
* StorageController/Encapsulate.m: forgotten change to minDuration
2005-09-30 Benhur Stein <benhur@inf.ufsm.br>
* General/PajeFilter.[hm]: change entity enumeration method to include
minDuration hint
(enumeratorOfEntitiesTyped:inContainer:fromTime:toTime:minDuration:)
* EntityTypeFilter/EntityTypeSelector.[hm],
FieldFilter/FieldFilter.[hm], ImbricationFilter/InsetLimit.[hm],
ReductionFilter/BusyNode.[hm], StatViewer/StatViewer.m: reflect change
* SpaceTimeViewer/DrawView+{Drawing,Finding}.m: reflect change
* SpaceTimeViewer/DrawView.h: add smallEntityWidth field to keep
the width smaller than which entities should be aggregated;
add SMALL_ENTITY_DURATION to convert width to time duration
* SpaceTimeViewer/DrawView.m: read "SmallEntityWidth" from defaults
2005-09-30 Benhur Stein <benhur@inf.ufsm.br>
* StorageController/AnchorFilter.[hm]: new class (from Encapsulate)
* StorageController/Encapsulate.[hm]: split in AnchorFilter subclass
* StorageController/GNUmakefile: add AnchorFilter
2005-09-30 Benhur Stein <benhur@inf.ufsm.br>
* General/Association.[hm]: new class
* General/CondensedEntitiesArray.[hm]: new class
* General/GNUmakefile: include new classes
* PajeSimulator/UserState.[hm]: add innerStates and
condensedEntitiesCount variables;
add addInnerState: method;
add accessor methods condensedEntities,
condensedEntitiesCount, subCount, subColorAtIndex:,
subDurationAtIndex:
* PajeSimulator/SimulContainer.m: add inner states to states
2005-09-29 Benhur Stein <benhur@inf.ufsm.br>
* General/PajeEntity.[hm]: change duration type to double, add
exclusiveDuration method
* General/PajeEntityInspector.m: reflect type change; show
exclusiveDuration if not 0
* General/PajeFilter.[hm]: durationForEntity: is double now
* General/Protocols.h: duration is double too
* PajeSimulator/UserState.[hm]: add inclusiveDuration variable and
exclusiveDuration method
2005-09-29 Benhur Stein <benhur@inf.ufsm.br>
* General/PajeType.m: change default entity color to white
2005-09-14 Benhur Stein <benhur@inf.ufsm.br>
* General/PajeEntity.h: declare -duration method
* General/PajeEntityInspector.h: new fields for executing script
* General/PajeEntityInspector.m: further changes in layout of boxes;
window size changes dynamically with content; add souurce/destination
fields if existent in entity -> can remove from specific inspectors
* General/PajeEntityInspector.gorm: add script box
* PajeSimulator/User{Event,Link,State}.[hm]: remove Inspector
* ReductionFilter/BusyState.m: remove Inspector call
* ReductionFilter/GNUmakefile: remove ReduceEntityInspector
* ReductionFilter/ReduceEntityInspector.{h,m,gorm}: removed
2005-08-28 Benhur Stein <benhur@inf.ufsm.br>
* General/PajeEntityInspector.{m,h,gorm}: size text fields according
to contents size
* General/DataScanner.m: allow \n in strings
2005-01-23 (1.3.3) Vincent Danjean <Vincent.Danjean@ens-lyon.org>
* New official release
- statviewer available
- trace files read by chuncks
2005-07-03 Benhur Stein <benhur@inf.ufsm.br>
* PajeEventDecoder/PajeEventDecoder.m: use Assign macro
2005-06-29 Benhur Stein <benhur@inf.ufsm.br>
* FileReader/PajeFileReader.h: changed file read chunk size to 1MB
* PajeSimulator/PajeSimul.[hm]: use NSMapTable instead of NSDictionary
as simulation dispatch table
* SpaceTimeViewer/STEntityTypeLayout.[hm]: set height for variables in
container, instead of variable types
* SpaceTimeViewer/STEntityTypeLayoutController.[hm,gorm]: refactoring,
separation of layout editor classes
* SpaceTimeViewer/STLayoutEditor.[hm]: new files
* SpaceTimeViewer/GNUmakefile: add new files
* SpaceTimeViewer/HierarchyRuler.m: remove names of variables from
ruler
2005-06-26 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/STController.m: workaround for GNUstep bug #13382
2005-06-25 Benhur Stein <benhur@inf.ufsm.br>
* ContainerFilter/ContainerSelector.m,
EntityTypeFilter/EntityTypeSelector.m, FieldFilter/FieldFilter.m,
ImbricationFilter/InsetLimit.m, ReductionFilter/BusyNode.m (-dealloc): remove items of NSPopUp
* General/PajeEntity.[hm]: entityType and container are not retained;
document it
* General/PajeType.[hm]: same, for source and destContainerType
* OrderFilter/Order.m (-dealloc): release hierarchyBrowser
* PajeEventDecoder/PajeEventDecoder.m: make sure values in
eventBeingDefined are properly released
* PajeSimulator/PajeSimul.[hm]: remove unused variable "name"; release
NSInvocations
* PajeSimulator/UserLink.[hm]: source and destContainer are not
retained
* SpaceTimeViewer/DrawView+Drawing.m,
SpaceTimeViewer/DrawView+Finding.m,
SpaceTimeViewer/HierarchyRuler.m: remove unused variables
* SpaceTimeViewer/DrawView.m [-removeFromSuperview]: remove tracking
rectangle
* SpaceTimeViewer/STController.m (dealloc): release layoutController
* SpaceTimeViewer/STEntityTypeLayout.m: changed default height for
variables to 60 points (was 6)
* StatViewer/StatViewer.[hm]: removed "filter"variable (use self);
remove items from popups
2005-06-11 Benhur Stein <benhur@inf.ufsm.br>
* StatViewer/StatViewer.m: do not retain filter; implement -dealloc
* SpaceTimeViewer/STController.m: implement -windowWillClose, to inform controller that it should remove this component.
* SpaceTimeViewer/DrawView.m: do not retain filter
* PajeSimulator/PajeSimul.[hm]: remove "simulators" class variable
* Paje/PajeTraceController.[hm]: new method -removeComponent:
* Paje/PajeController.[hm]: new method -closeTraceController:
* General/PajeFilter.m: retain outputComponent
* General/HierarchyBrowser.m: do not retain filter
2005-06-11 Benhur Stein <benhur@inf.ufsm.br>
* Paje/PajeTraceController.[hm]: put checkpoints in a better place;
remove them when dealloc'ed
2005-06-06 Benhur Stein <benhur@inf.ufsm.br>
* Documentation/lang-paje/typeevent.tex: document new "RelationKey"
field that entities can have to identify related entities.
* PajeSimulator/PajeSimul.h: add relatedEntities dictionary
* PajeSimulator/PajeSimul.m: -outputEntity:, -addRelatedEntity:toKey:,
-relatedEntitiesToEntity: new methods
* StorageController/Encapsulate.m: removed -relatedEntitiesToEntity:
method (taken over by simulator)
2005-06-06 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimulator/PajeSimul.m (-rootInstance): implemented to return
rootContainer
* SpaceTimeViewer/DrawView+Mouse.m: remove unused notification
* SpaceTimeViewer/DrawView.[hm]: removed -rootInstance method; changed
calls to ask filter
* SpaceTimeViewer/STController.m: remove obsolete fileSelected
notification
* StorageController/Encapsulate.[hm]: removed local startTime, endTime
and rootInstance variables; changed uses to ask previous component
(simulator); also removed unused entityTypeToClass variable.
removed obsolete PajeFilenameNotification.
2005-05-22 Benhur Stein <benhur@inf.ufsm.br>
* ContainerFilter/ContainerSelector.m: code reformating
* EntityTypeFilter/EntityTypeSelector.m: code reformating, remove
call to colorChanged.. when droping color, it will come
automatically from previous filters.
* General/PajeEntity.m: moved inspect method to Encapsulator's
-inspectEntity:
* General/PajeEntityInspector.h: declared outlets and new/changed
methods
* General/PajeEntityInspector.m: changed window layout a bit,
corrected some memory leaks, changed way of starting inspection --
now the filter is known and integration is better (mainly for
changing colors)
* General/PajeEntityInspector.gorm: layout changes
* Paje/PajeController.m: enabled alpha channel in color panel, now
entities can be semi-transparent.
* ReductionFilter/ReduceEntityInspector.{h,m,gorm}: layout changes
* SpaceTimeViewer/DrawView.m: change selection background color when a
color is dropped inside the time selection.
* StatViewer/StatViewer.m: redraw when colors change
* StorageController/Encapsulate.m: send colorChanged... notification
to other filters when colors are changed, get code for inspection
from PajeEntity.
* General/Protocols.h, General/PajeFilter.[hm]: removed "PajeInspecting" protocol
2005-05-21 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimulator/PajeSimul+Events.m, StatViewer/StatViewer.m: remove
unneeded hack
2005-05-21 Benhur Stein <benhur@inf.ufsm.br>
* General/SourceCodeReference.m: unify references
2005-05-21 Benhur Stein <benhur@inf.ufsm.br>
* StorageController/Encapsulate.m, General/PajeFilter.[hm]:
new -entitySelectionChanged notification and -isSelectedEntity:
query
* SpaceTimeViewer/DrawView+Drawing.m: use new query to highlight
selected entities
* FieldFilter/FieldFilter.gorm,
FieldFilter/FieldFilterDescriptor.[hm], FieldFilter/FieldFilter.[hm]:
Add action to perform when applying filter (filter in, filter out or
highlight)
* General/NSString+Additions.m: fix a bug in line numbering
* General/SourceTextViewer.gorm, General/SourceTextController.[mh]:
correct buggy gorm file, show selected line number.
2005-05-21 Benhur Stein <benhur@inf.ufsm.br>
* ReductionFilter/BusyArray.[hm], ReductionFilter/BusyDate.m,
ReductionFilter/ReduceEntity.m: fix memory leak
2005-05-07 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimulator/SimulContainer.m [-start/endUserLink...]: code cleanup
2005-05-07 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimulator/SimulContainer.m
[-enumeratorOfEntitiesTyped:fromTime:toTime:]: new method
* StorageController/Encapsulate.m
[-enumeratorOfEntitiesTyped:inContainer:fromTime:toTime:]: call
new method in container
2005-04-30 Benhur Stein <benhur@inf.ufsm.br>
* General/NSColor+Additions.m (-contrastingWhiteOrBlackColor):
use less contrasting colors
* Paje/PajeController.m (-loadAllBundles): load StatViewer bundle
* Paje/PajeTraceController.m (-createComponentGraph): inatantiate and
connect statViewer to component graph; some small changes to remove
compiler warnings
* PajeEventDecoder/PajeEventDecoder.m: commented some unused code
* StatViewer/PieCell.h StatViewer/PieCell.m StatViewer/StatArray.h
StatViewer/StatArray.m StatViewer/StatValue.h StatViewer/StatValue.m
StatViewer/StatViewer.gorm StatViewer/StatViewer.h
StatViewer/StatViewer.m: new files
2005-04-30 Benhur Stein <benhur@inf.ufsm.br>
* GNUmakefile, */GNUmakefile: removed definition of GNUSTEP_MAKEFILES
2005-04-23 Benhur Stein <benhur@inf.ufsm.br>
* General/NSUserDefaults+Colors.[hm],
General/NSUserDefaults+Additions.[hm] General/PajeEvent.m,
General/PajeType.m PajeEventDecoder/PajeEventDecoder.m,
ReductionFilter/ReduceEntityType.m SpaceTimeViewer/DrawView.m,
SpaceTimeViewer/STEntityTypeLayout.m: changed NSUserDefaults+Colors
to NSUserDefaults+Additions.
* General/NSColor+Additions.[hm]: new files
2005-04-22 Benhur Stein <benhur@inf.ufsm.br>
* General/DataScanner.m: set numeric locale to C instead of en_US
(suggestion from castet.matthieu@free.fr)
2005-04-18 Benhur Stein <benhur@inf.ufsm.br>
* many: removed compiler warnings
2005-04-18 Benhur Stein <benhur@inf.ufsm.br>
* General/PajeEntityInspector.m, General/PajeType.h,
General/PajeType.m, General/SourceTextController.h,
General/SourceTextController.m, General/UniqueString.m:
removed some compiler warnings
2005-04-16 Benhur Stein <benhur@inf.ufsm.br>
* FileReader/PajeFileReader.h, FileReader/PajeFileReader.m,
General/PSortedArray.m, General/PajeEntity.m, Paje/PajeCheckPoint.m,
Paje/PajeTraceController.m, PajeEventDecoder/PajeEventDecoder.m,
PajeSimulator/PajeSimul.m, PajeSimulator/SimulContainer.m,
PajeSimulator/SimulContainer.m, PajeSimulator/UserEvent.m,
PajeSimulator/UserState.m, SpaceTimeViewer/DrawView.m,
SpaceTimeViewer/HierarchyRuler.m, StorageController/Encapsulate.m:
First implementation of trace reading by chunks.
2005-04-16 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/DrawView+Drawing.m: corrected bug in which drawing
names on events made them bigger each time
* SpaceTimeViewer/HierarchyRuler.m: corrected sizes of boxes (again)
2005-04-16 Benhur Stein <benhur@inf.ufsm.br>
* ContainerFilter/ContainerSelector.m,
EntityTypeFilter/EntityTypeSelector.m, General/HierarchyBrowser.m,
General/MultiEnumerator.m, General/PajeType.m, General/TimeList.m,
Paje/PajeController.m, ReductionFilter/BusyNode.m,
PajeSimulator/PajeSimul+Events.m: small code reorganization;
changed NSLog's into NSDebugLog's or NSWarnLog's
2005-01-23 (1.3.2) Vincent Danjean <Vincent.Danjean@ens-lyon.org>
* New official release
2005-03-26 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/STEntityTypeLayoutController.[hm],
STEntityTypeLayout.gorm: changed names of instance variables to
better reflect their use. Corrected a bug that was preventing the
edition of layout data in some cases (an invisible view over
the others). Should create separate editor classes for each
drawing type for this to be easily changed.
2005-03-16 Benhur Stein <benhur@inf.ufsm.br>
* Traces: added directory
* Traces/JavaTest.trace: small trace example added
2005-03-06 Benhur Stein <benhur@inf.ufsm.br>
* EntityTypeFilter/EntityTypeSelector.m, ImbricationFilter/InsetLimit.m,
OrderFilter/Order.m, ReductionFilter/BusyNode.m,
Paje/PajeController.[hm], Paje/PajeTraceController.m: implemented
support for saving/loading filter configuration. Configuration is
saved/loaded for file /tmp/pajeconfig. Missing FieldFilter, the
possibility of naming configurations, a configuration editor (loading
and unloading of filters, more than one filter of the same type, etc.
* General/PajeFilter.[hm]: added helper methods -entityTypeWithName:
and -containerWithName:type:
* General/HierarchyBrowser.m: some better support for when updating
last column (still does not work in all cases)
* ImbricationFilter/InsetLimit.[hm]: added a cache for increased
performance (not measured)
2005-02-21 Benhur Stein <benhur@inf.ufsm.br>
* General/PajeFilter.h: add some documentation.
2005-02-17 Benhur Stein <benhur@inf.ufsm.br>
* General/DataScanner.m: hack to read numbers from trace file in
a locale independent way (solves bug #303193).
2005-02-17 Benhur Stein <benhur@inf.ufsm.br>
* Allow files with any extension to be selected in the open file
panel.
2005-02-17 Benhur Stein <benhur@inf.ufsm.br>
* Make sure Shapes&Sizes tool is informed when trace hierarchy
changes (adds an instance variable to STController, must
do a "make clean" before doing "make").
* fixes bug #301194
2005-02-17 Benhur Stein <benhur@inf.ufsm.br>
* General/NSUserDefaults+Colors.[hm]: add -doubleForKey:
and -setDouble:forKey: methods (should change file name as
it doesn't only deal with colors.
* SpaceTimeViewer/DrawView.m: save and restore time scale in defaults
database
2005-01-23 (1.3.1) Vincent Danjean <Vincent.Danjean@ens-lyon.org>
* Add Makfiles to compile the documentation
* Remove undefined references in lang-paje
* New official release
- bump to 1.3 as there are few features (filters)
2005-01-23 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/HierarchyRuler.m: change rect size calculations
to be on pair with recent GNUstep bugfixes
2005-01-23 Benhur Stein <benhur@inf.ufsm.br>
* General/UniqueString.m: comment out some debug messages
2005-01-20 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/DrawView.[hm]: workaround a probable bug in GNUstep
([NSScrollView tile] is changing the frame size)
2005-01-20 Benhur Stein <benhur@inf.ufsm.br>
* Documentation/lang-paje/{typeevent.tex,lang-paje.tex}:
comment the inclusion of some files, to make the documentation
compile.
2005-01-09 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/STEntityTypeLayout.[hm]: declare and implement
accessors for minValue and maxValue (for storing limits of graph)
* SpaceTimeViewer/STEntityTypeLayout.gorm: added a new Form for
max & min values of variables;
* SpaceTimeViewer/STEntityTypeLayoutController.[mh]: make use of new
variables and Form (they are not saved in defaults);
* SpaceTimeViewer/DrawView+Drawing.m: use min and maxValue from
descriptor, if valid.
2005-01-05 Benhur Stein <benhur@inf.ufsm.br>
* GNUmakefile, Paje/PajeController.m, Paje/PajeTraceController.m:
compile and load FieldFilter
2005-01-05 Benhur Stein <benhur@inf.ufsm.br>
* FieldFilter, FieldFilter/FieldFilterDescriptor.h,
FieldFilter/FieldFilter.h, FieldFilter/FieldFilterDescriptor.m,
FieldFilter/FieldFilter.m, FieldFilter/GNUmakefile,
FieldFilter/FieldFilter.gorm: new files, first implementation of
filter that selects entities based on values of some of its fields.
2005-01-05 Benhur Stein <benhur@inf.ufsm.br>
* General/PajeEntity.m: added -duration method (returns elapsed time
of entity); added "StartTime", "EndTime" and "Duration" named fields
* General/PajeType.h: added new instance variable "fieldNames" to
hold all known names of fields of entities of a type.
* General/PajeType.m: initialize new variable; implemented
new methods -addFieldNames: and -fieldNames to populate and get
names of fields.
* ReductionFilter/ReduceEntityType.m: also initialize new variable
(this class does not use initialization code from superclass)
* StorageController/Encapsulate.m: implement -fieldNamesForEntityType:
so that a filter can have access to names of fields;
add a temporary solution to garantee that an entity type has
access to all names (make it see all entities - ugly)
* ReductionFilter/ReduceEntity.m: likewise, even uglier!
2005-01-05 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/DrawView+Drawing.m: changed way of drawing values
(now there can be times without values, and they will not be drawn)
(necessary for new field value filter (to be commited)).
2005-01-05 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTimeViewer/STEntityTypeLayoutController.m: made highlighting
of selected buttons in "Shapes&Sizes" work again
2005-01-05 Benhur Stein <benhur@inf.ufsm.br>
* General/PajeEntityInspector.m: removed debug message
2005-01-05 Benhur Stein <benhur@inf.ufsm.br>
* General/ColoredSwitchButtonCell.m: added -compare: method (some
recent change in GNUstep made ordering of these cells wrong)
2005-01-05 Benhur Stein <benhur@inf.ufsm.br>
* Paje/Paje_main.m, Paje/PajeInfo.plist: Changed Copyright notice
2005-01-04 (1.2.2) Vincent Danjean <Vincent.Danjean@ens-lyon.org>
* Version NEED to be set in changelog so that release can be
easily generated
2005-01-04 (1.2.1) Vincent Danjean <Vincent.Danjean@ens-lyon.org>
* Bump to version 1.2.1 to make a release on objectweb
2004-12-21 Benhur Stein <benhur@inf.ufsm.br>
* Paje/PajeController.m: fixed typo in filter name
corrects bug #301134 (reported by Gregory)
2004-12-14 (1.2.0) Vincent Danjean <Vincent.Danjean@ens-lyon.org>
* Bump to version 1.2 to make the first release on objectweb
2004-10-18 Benhur Stein <benhur@inf.ufsm.br>
* **/*.{h,m,tex}: add copyright notice
2004-10-17 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTime.bproj/DrawView+Drawing.m,ST*.{h,m,gorm}:
add support for writing names on events and states
2004-10-12 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimul/PajeSimul+Events.m
SpaceTime.bproj/DrawView+Drawing.m
SpaceTime.bproj/STController.m
SpaceTime.bproj/STEntityTypeLayout.m
Encapsulate.bproj/Encapsulate.m
General.bproj/PajeType.h
General.bproj/PajeType.m
General.bproj/PajeFilter.h
General.bproj/PajeFilter.m,
PajeEventDecoder/PajeEventDecoder.m
Documentation/lang-paje/typeevent.tex: add support for 'color' type
in event fields; 'Color' field in 'PajeDefineValue';
'Shape' and 'Height' fields in 'PajeDefine<entity>Type';
'Width' field in 'PajeDefineEventType'
2004-10-07 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTime.bproj: correct limitation of maximum visible size
2004-10-07 Benhur Stein <benhur@inf.ufsm.br>
* General.bproj/NSDate+Additions.h: correct typo in previous commit
2004-10-07 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTime.bproj/STEntityTypeLayoutController.m: change order
of types in popup, remove unused field for links in gui, remove
unused code
* STEntityTypeLayout.gorm: highlights matrix was not scrolling
and highlighting of events
2004-10-07 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTime.bproj/{Shape.m,STEntityTypeLayout.m}: correct drawing
and highlighting of events
2004-10-07 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTime.bproj/DrawView+Positioning.m (rectForEntity:),
SpaceTime.bproj/DrawView.[hm]: sanitize relation between STController
and DrawView; create and use [DrawView timeToX:] method.
2004-10-07 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTime.bproj/DrawView+Finding.m (rectForEntity:),
SpaceTime.bproj/DrawView+Drawing.m
(drawValuesWithDescriptor:inContainer:fromEnumerator:drawFunction:):
change drawing of values, to include 2-pixel top and bottom
margins
2004-10-07 Benhur Stein <benhur@inf.ufsm.br>
* General.bproj/NSDate+Additions.[hm]: change NSDate description
to be only the secondsSinceReferenceDate
2004-09-30 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTime.bproj/STEntityDescriptor.[hm],
SpaceTime.bproj/EntityTypeInspector.{h,m,gorm}:
remove unused classes obsoleted by previous changes (layout)
2004-09-30 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTime.bproj/DrawView+Drawing.m
SpaceTime.bproj/DrawView+Finding.m
SpaceTime.bproj/DrawView+Mouse.m
SpaceTime.bproj/DrawView+Positioning.m
SpaceTime.bproj/DrawView.h SpaceTime.bproj/DrawView.m
SpaceTime.bproj/GNUmakefile SpaceTime.bproj/HierarchyRuler.h
SpaceTime.bproj/HierarchyRuler.m
SpaceTime.bproj/STController.h SpaceTime.bproj/STController.m
SpaceTime.bproj/STEntityDescriptor.h
SpaceTime.bproj/STEntityDescriptor.m
SpaceTime.bproj/SpaceTime.gorm/data.classes
SpaceTime.bproj/SpaceTime.gorm/distant.tiff
SpaceTime.bproj/SpaceTime.gorm/near.tiff
SpaceTime.bproj/SpaceTime.gorm/objects.gorm
SpaceTime.bproj/SpaceTime.gorm/toselection.tiff:
make use of new layout classes
2004-09-30 Benhur Stein <benhur@inf.ufsm.br>
* SpaceTime.bproj/{STEntityTypeLayout.{h,m,gorm},
STEntityTypeLayoutController.[hm],
Shape.[hm]}: new classes and GUI for layout
2004-09-30 Benhur Stein <benhur@inf.ufsm.br>
* PajeSimul/PajeSimul+Events.m:
containerOfNumber:type:inEvent: check for wrong type
2004-09-30 Benhur Stein <benhur@inf.ufsm.br>
* TODO: refresh list of things to do
2004-08-19 Benhur Stein <benhur@inf.ufsm.br>
* */*.gorm: resaved in old format, compatible with gui 0.9.3
2004-07-26 Benhur Stein <benhur@inf.ufsm.br>
* many: remove PajeContainerType from PajeFilter.h and change
all places to reflect this
2004-07-26 Benhur Stein <benhur@inf.ufsm.br>
* General.bproj/PajeFilter.[hm]: remove notifications
2004-07-26 Benhur Stein <benhur@inf.ufsm.br>
* paje: restarting CVS, near version 1.2
2002-05-10 Benhur Stein <benhur@inf.ufsm.br>
* paje: initial version.
|