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
|
/*
Project: AdunCore
Copyright (C) 2007 Michael Johnston & Jordi Villa-Freixa
Author: Michael Johnston
This application is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This application is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU General Public
License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
*/
#include "AdunKernel/AdunSimulationData.h"
@implementation AdSimulationData
- (void) _loadStateData: (NSData*) data;
{
NSDebugLLog(@"AdSimulationData", @"Load Energies...");
stateData = [NSKeyedUnarchiver unarchiveObjectWithData: data];
[stateData retain];
NSDebugLLog(@"AdSimulationData", @"Finished");
if(stateData == nil || [[stateData dataMatrices] count] == 0)
NSWarnLog(@"Simulation %@ (%@) contains no energy data",
[self name],
[self identification]);
else
//All systems have the same number of energy checkpoints
numberEnergyCheckpoints = [[[stateData dataMatrices]
objectAtIndex: 0] numberOfRows];
}
- (void) _loadSystemCollection
{
NSKeyedUnarchiver* unarchiver;
NSData* data;
data = [dataStorage systemData];
unarchiver = [NSKeyedUnarchiver alloc];
[unarchiver initForReadingWithData: data];
systemCollection = [unarchiver decodeObjectForKey: @"SystemCollection"];
[systemCollection retain];
[unarchiver finishDecoding];
[unarchiver release];
}
- (void) _loadFrames
{
NSKeyedUnarchiver* unarchiver;
NSData* data;
data = [dataStorage frameData];
if(data != nil && [data length] > 0)
{
unarchiver = [NSKeyedUnarchiver alloc];
[unarchiver initForReadingWithData: data];
frames = [unarchiver decodeObjectForKey: @"root"];
[frames retain];
[unarchiver finishDecoding];
[unarchiver release];
}
else
NSWarnLog(@"No frame data present");
}
/**************
Creation
***************/
- (id) init
{
return [self initWithName: nil];
}
- (id) initWithName: (NSString*) aName
{
if((self = [super init]))
{
stateData = nil;
systemCollection = nil;
frames = nil;
numberEnergyCheckpoints = 0;
if(aName != nil)
[self setValue: aName forMetadataKey: @"Name"];
}
return self;
}
- (void) dealloc
{
[frames release];
[dataStorage release];
[stateData release];
[systemCollection release];
[super dealloc];
}
- (void) loadData
{
NSData *energyData;
NSError* error;
//check we have access to a data store
if(dataStorage == nil)
[NSException raise: NSInternalInconsistencyException
format: @"No data storage has been set."];
//check the data store is accesible
if(![dataStorage isAccessible])
{
NSWarnLog(@"Simulation data is not accesible raising exception");
error = [dataStorage accessError];
[NSException raise: NSInternalInconsistencyException
format: [[error userInfo]
objectForKey: NSLocalizedDescriptionKey]];
}
//Get rid of anything we loaded previously
if(stateData != nil)
{
[stateData release];
[systemCollection release];
[frames release];
stateData = nil;
systemCollection = nil;
}
//Call update on the data store in case anything
//has been written to it since it was initialised
[dataStorage update];
energyData = [dataStorage energyData];
NSDebugLLog(@"AdSimulationData",
@"There are %d trajectory frames available",
[dataStorage numberTrajectoryCheckpoints]);
NSDebugLLog(@"AdSimulationData",
@"Read in %lf KB of energy data",
((double)[energyData length])/1024);
[self _loadStateData: energyData];
NSDebugLLog(@"AdSimulationData", @"Unarchiving system manager");
[self _loadSystemCollection];
NSDebugLLog(@"AdSimulationData", @"Unarchiving frame data");
[self _loadFrames];
NSDebugLLog(@"AdSimulationData", @"Complete");
NSDebugLLog(@"AdSimulationData", @"Initialised AdSimulationData");
}
- (BOOL) checkDataStorageIdentification
{
return checkDataStorageIdentification;
}
- (void) setCheckDataStorageIdentification: (BOOL) value
{
checkDataStorageIdentification = value;
}
- (id) dataStorage
{
return [[dataStorage retain] autorelease];
}
- (void) setDataStorage: (id) object
{
NSString* dataId;
if(dataStorage != object)
{
[dataStorage release];
dataStorage = [object retain];
}
//Check if the data in the store corresponds
//to the simulation data for this object
//by checking its id
if(checkDataStorageIdentification)
if((dataId = [dataStorage identification]) != nil)
if(dataId != identification)
{
NSWarnLog(@"Supplied data storage is not related to this object");
return;
}
}
- (AdDataSet*) energies
{
return [[stateData retain] autorelease];
}
- (AdSystemCollection*) systemCollection
{
return [[systemCollection retain] autorelease];
}
- (unsigned int) numberTrajectoryCheckpoints
{
return [dataStorage numberTrajectoryCheckpoints];
}
- (unsigned int) numberTopologyCheckpoints
{
return [dataStorage numberTopologyCheckpoints];
}
- (id) dataSourceForSystem: (id) system inTopologyCheckpoint: (unsigned int) number
{
NSData* archive;
NSKeyedUnarchiver* unarchiver;
NSString* name;
id dataSource;
if(number >= [self numberTopologyCheckpoints])
[NSException raise: NSInvalidArgumentException
format: @"Requested checkpoint (%d) is greater than the number of available checkpoints (%d)",
number, [self numberTopologyCheckpoints]];
name = [system systemName];
archive = [dataStorage topologyCheckpoint: number];
unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData: archive];
dataSource = [unarchiver decodeObjectForKey: name];
[[dataSource retain] autorelease];
[unarchiver finishDecoding];
[unarchiver release];
return dataSource;
}
- (id) mementoForSystem: (id) system inTrajectoryCheckpoint: (unsigned int) number
{
NSData* archive;
NSKeyedUnarchiver* unarchiver;
NSString* name;
id memento;
if(number >= [self numberTrajectoryCheckpoints])
[NSException raise: NSInvalidArgumentException
format: @"Requested checkpoint (%d) is greater than the number of available checkpoints (%d)",
number, [self numberTrajectoryCheckpoints]];
name = [system systemName];
archive = [dataStorage trajectoryCheckpoint: number];
unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData: archive];
memento = [unarchiver decodeObjectForKey: name];
[[memento retain] autorelease];
[unarchiver finishDecoding];
[unarchiver release];
return memento;
}
- (NSString*) description
{
NSMutableString *string = [NSMutableString string];
NSEnumerator* systemEnum;
id system, energies;
[string appendFormat: @"Name: %@ - ", [self name]];
if(systemCollection == nil)
{
[string appendString: @"No data loaded\n"];
return string;
}
[string appendFormat: @"%d System(s):\n\n",
[[systemCollection allSystems] count]];
systemEnum = [[systemCollection allSystems] objectEnumerator];
while((system = [systemEnum nextObject]))
{
[string appendFormat: @"%@\n", [system systemName]];
[string appendFormat: @"\t%d Trajectory Frames\n",
[self numberTrajectoryCheckpoints]];
[string appendFormat: @"\t%d Topology Frames\n",
[self numberTopologyCheckpoints]];
energies = [stateData dataMatrixWithName: [system systemName]];
if(energies != nil)
{
[string appendFormat: @"\t%d Energy Frames\n\n",
[energies numberOfRows]];
}
else
[string appendString: @"\tNo available energies\n"];
}
return string;
}
/**
Frame related methods - Wont work with pre 0.71 stores
where the frame data wasn't encoded.
*/
- (unsigned int) numberOfFrames
{
if(frames == nil)
return 0;
else
return [frames numberOfRows];
}
/**
The first frame is 0.
Checkpoints are also numbered from 0.
*/
- (unsigned int) _frameForCheckpoint: (unsigned int) number inColumn: (NSString*) aString
{
int i;
unsigned int counter = -1; //Accounting for checkpoint offset
NSMutableArray* array = [NSMutableArray new];
[frames addColumnWithHeader: aString toArray: array];
for(i=0; i<(int)[array count]; i++)
{
counter += [[array objectAtIndex: i] boolValue];
if(counter == number)
break;
}
[array release];
return i;
}
- (unsigned int) frameForTrajectoryCheckpoint: (unsigned int) number
{
if(number >= [self numberTrajectoryCheckpoints])
[NSException raise: NSInvalidArgumentException
format:
@"Requested checkpoint index (%d) is greater than the number of available checkpoints (%d)",
number, [self numberTrajectoryCheckpoints]];
return [self _frameForCheckpoint: number inColumn: @"Trajectory"];
}
- (unsigned int) frameForEnergyCheckpoint: (unsigned int) number
{
if(number >= numberEnergyCheckpoints)
[NSException raise: NSInvalidArgumentException
format:
@"Requested checkpoint index (%d) is greater than the number of available checkpoints (%d)",
number, numberEnergyCheckpoints];
return [self _frameForCheckpoint: number inColumn: @"Energy"];
}
- (unsigned int) frameForTopologyCheckpoint: (unsigned int) number
{
if(number >= [self numberTopologyCheckpoints])
[NSException raise: NSInvalidArgumentException
format:
@"Requested checkpoint index (%d) is greater than the number of available checkpoints (%d)",
number, [self numberTopologyCheckpoints]];
return [self _frameForCheckpoint: number inColumn: @"Topology"];
}
- (NSArray*) dataRecordedInFrame: (unsigned int) number
{
NSMutableArray* array = [NSMutableArray array];
if(number >= [frames numberOfRows])
[NSException raise: NSInvalidArgumentException
format:
@"Requested frame index (%d) is greater than the number of available frames (%d)",
number, [self numberOfFrames]];
if([[frames elementAtRow: number ofColumnWithHeader: @"Trajectory"] boolValue])
[array addObject: @"Trajectory"];
if([[frames elementAtRow: number ofColumnWithHeader: @"Topology"] boolValue])
[array addObject: @"Topology"];
if([[frames elementAtRow: number ofColumnWithHeader: @"Energy"] boolValue])
[array addObject: @"Energy"];
return [[array copy] autorelease];
}
- (id) lastRecordedDataSourceForSystem: (id) system inRange: (NSRange) range
{
BOOL value;
int end, i;
id dataSource;
end = NSMaxRange(range);
if(end > (int)[frames numberOfRows])
[NSException raise: NSInvalidArgumentException
format: @"Specfied range (%d,%d) falls outside the available frames %d",
range.location, range.length, [frames numberOfRows]];
NSDebugLLog(@"AdSimulationData",
@"Searching range %d-%d for data source",
range.location, end);
dataSource = nil;
for(i = ([self numberTopologyCheckpoints] - 1); i>=0; i++ )
{
value = [self frameForTopologyCheckpoint: i];
if(NSLocationInRange(value, range))
{
NSDebugLLog(@"AdSimulationData",
@"Topology checkpoint %d is in the specfied range", i);
//This checkpoint is in the range.
//Now we must check it contains the required data.
dataSource = [self dataSourceForSystem: system
inTopologyCheckpoint: i];
if(dataSource != nil)
{
NSDebugLLog(@"AdSimulationData", @"Found data source");
break;
}
NSDebugLLog(@"AdSimulationData",
@"Checkpoint does not contain data for system");
}
}
return dataSource;
}
/**
Deprecated
*/
- (unsigned int) numberOfFramesForSystem: (id) system
{
return [self numberTrajectoryCheckpoints];
}
/**
Deprecated
*/
- (id) mementoForFrame: (unsigned int) frame ofSystem: (id) system
{
return [self mementoForSystem: system
inTrajectoryCheckpoint: frame];
}
@end
@implementation AdSimulationDataWriter
- (void) _createStateMatrices
{
NSArray* headers, *forceFieldArray;
NSMutableArray* stateHeaders;
NSEnumerator* systemEnum;
AdForceField* systemForceField;
id system, stateMatrix;
if(iterationHeader == nil)
iterationHeader = [@"Iteration" retain];
headers = [NSArray arrayWithObjects:
iterationHeader,
@"PotentialEnergy",
@"KineticEnergy",
@"Temperature",
@"TotalEnergy",
nil];
systemEnum = [[systemCollection allSystems] objectEnumerator];
//Create an entry in stateData for each system
while((system = [systemEnum nextObject]))
{
//FIXME: Supports only one force field per system
forceFieldArray = [forceFieldCollection forceFieldsForSystem: system];
if([forceFieldArray count] == 0)
{
NSWarnLog(@"No force fields operating on system %@", [system systemName]);
NSWarnLog(@"Skipping");
continue;
}
systemForceField = [forceFieldArray objectAtIndex: 0];
stateHeaders = [NSMutableArray arrayWithArray: headers];
if([system isKindOfClass: [AdInteractionSystem class]])
{
[stateHeaders removeObject: @"KineticEnergy"];
[stateHeaders removeObject: @"Temperature"];
}
//FIXME: Does not handle custom terms.
[stateHeaders addObjectsFromArray: [systemForceField coreTerms]];
stateMatrix = [[AdMutableDataMatrix alloc]
initWithNumberOfColumns: [stateHeaders count]
columnHeaders: stateHeaders
columnDataTypes: nil];
[stateMatrix autorelease];
[(AdMutableDataMatrix*)stateMatrix setName: [system systemName]];
[stateData addDataMatrix: stateMatrix];
}
}
- (id) init
{
return [self initWithDataStorage: nil];
}
- (id) initWithDataStorage: (id) aDataStore
{
return [self initWithDataStorage: aDataStore
systems: nil
forceFields: nil
iterationHeader: nil];
}
- (id) initWithDataStorage: (id) aDataStore
systems: (AdSystemCollection*) aSystemCollection
forceFields: (AdForceFieldCollection*) aForceFieldCollection
iterationHeader: (NSString*) aString
{
NSArray* headers;
if((self = [super init]))
{
if(aDataStore == nil)
[NSException raise: NSInvalidArgumentException
format: @"aDataStore cannot be nil"];
if([aDataStore storageMode] != AdSimulationStorageWriteMode)
[NSException raise: NSInternalInconsistencyException
format: @"You can only write data to a store in AdSimulationStorageWriteMode"];
lastFrame = -1;
systemCollection = nil;
forceFieldCollection = nil;
iterationHeader = [aString retain];
iterationValue = nil;
stateData = [[AdDataSet alloc]
initWithName: @"StateData"
inputReferences: nil
dataGenerator: [NSBundle mainBundle]];
topologyData = [NSMutableDictionary new];
energyData = [NSMutableDictionary new];
//This is allocated on each trajectory checkpoint request
trajectoryData = nil;
dataStorage = [aDataStore retain];
headers = [NSArray arrayWithObjects:
@"Energy",
@"Trajectory",
@"Topology",
nil];
frames = [[AdMutableDataMatrix alloc]
initWithNumberOfColumns: 3
columnHeaders: headers
columnDataTypes: nil];
[self setSystems: aSystemCollection];
[self setForceFields: aForceFieldCollection];
}
return self;
}
- (void) dealloc
{
[self synchToStore];
[iterationValue release];
[iterationHeader release];
[topologyData release];
[energyData release];
[trajectoryData release];
[stateData release];
[dataStorage release];
[frames release];
[systemCollection release];
[forceFieldCollection release];
[super dealloc];
}
- (void) setSystems: (AdSystemCollection*) aSystemCollection
{
NSMutableData* data;
NSKeyedArchiver* archiver;
if(systemCollection != nil)
[NSException raise: NSInternalInconsistencyException
format: @"The system collection cannot be changed"];
systemCollection = [aSystemCollection retain];
data = [NSMutableData new];
archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData: data];
[archiver setOutputFormat: NSPropertyListXMLFormat_v1_0];
[archiver encodeObject: systemCollection forKey: @"SystemCollection"];
[archiver finishEncoding];
[archiver release];
[dataStorage setSystemData: data];
[data release];
if(forceFieldCollection != nil)
[self _createStateMatrices];
}
- (void) updateSystems
{
NSWarnLog(@"Method %@ not implemented", NSStringFromSelector(_cmd));
}
- (void) setForceFields: (AdForceFieldCollection*) aForceFieldCollection
{
[forceFieldCollection release];
forceFieldCollection = [aForceFieldCollection retain];
if(systemCollection != nil)
[self _createStateMatrices];
}
- (void) setIterationHeader: (NSString*) aString
{
if(iterationHeader != nil)
{
NSWarnLog(@"State matrices have already been created.");
return;
}
iterationHeader = [aString retain];
}
- (void) openFrame: (NSNumber*) value
{
NSDebugLLog(@"AdSimulationDataWriter",
@"Recieved open frame request");
NSDebugLLog(@"AdSimulationDataWriter",
@"Frame open? - %d", frameOpen);
NSDebugLLog(@"AdSimulationDataWriter",
@"Current iteration value %@", iterationValue);
NSDebugLLog(@"AdSimulationDataWriter",
@"Requested iteration value %@", value);
if(frameOpen)
return;
if([value isEqual: iterationValue])
return;
NSDebugLLog(@"AdSimulationDataWriter",
@"Opening frame");
frameOpen =YES;
[iterationValue release];
iterationValue = [value retain];
}
- (BOOL) isOpenFrame
{
return frameOpen;
}
- (void) _addEnergyCheckpoint
{
NSEnumerator* dataEnum;
NSString* systemName;
id state, stateMatrix;
dataEnum = [energyData keyEnumerator];
while((systemName = [dataEnum nextObject]))
{
stateMatrix = [stateData dataMatrixWithName:
systemName];
state = [energyData objectForKey: systemName];
[stateMatrix extendMatrixWithRow: state];
}
}
- (void) closeFrame
{
NSMutableData* data;
NSMutableArray* checkpointed = [NSMutableArray new];
NSKeyedArchiver* archiver;
NSEnumerator* systemEnum;
id systemName, topology;
if(!frameOpen)
return;
//Write all the data
frameOpen = NO;
lastFrame++;
NSDebugLLog(@"AdSimulationDataWriter",
@"Closing frame %d", lastFrame);
if(trajectoryCheckpoint)
{
[dataStorage addTrajectoryCheckpoint: trajectoryData];
NSDebugLLog(@"AdSimulationDataWriter",
@"Checkpointed %d bytes of trajectory data",
[trajectoryData length]);
[checkpointed addObject: [NSNumber numberWithInt: 1]];
}
else
[checkpointed addObject: [NSNumber numberWithInt: 0]];
if(energyCheckpoint)
{
if(forceFieldCollection == nil)
[checkpointed addObject: [NSNumber numberWithBool: NO]];
else
{
[self _addEnergyCheckpoint];
[checkpointed addObject: [NSNumber numberWithInt: 1]];
[energyData removeAllObjects];
}
}
else
[checkpointed addObject: [NSNumber numberWithInt: 0]];
if(topologyCheckpoint)
{
data = [NSMutableData new];
archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData: data];
[archiver setOutputFormat: NSPropertyListXMLFormat_v1_0];
systemEnum = [topologyData keyEnumerator];
while((systemName = [systemEnum nextObject]))
{
//We assume the data source has been synched
//to the current configuration
NSDebugLLog(@"AdSimulationDataWriter",
@"Checkpointing topology of %@", systemName);
topology = [topologyData objectForKey: systemName];
[archiver encodeObject: topology
forKey: systemName];
}
[archiver finishEncoding];
[archiver release];
[dataStorage addTopologyCheckpoint: data];
NSDebugLLog(@"AdSimulationDataWriter",
@"Checkpointed %d bytes of topology data", [data length]);
[data release];
[checkpointed addObject: [NSNumber numberWithInt: 1]];
[topologyData removeAllObjects];
}
else
[checkpointed addObject: [NSNumber numberWithInt: 0]];
[frames extendMatrixWithRow: checkpointed];
//Set for next frame
[checkpointed release];
energyCheckpoint = NO;
trajectoryCheckpoint = NO;
topologyCheckpoint = NO;
}
- (int) lastFrame
{
return lastFrame;
}
/**
The first frame should indicate a checkpoint for everything
*/
- (unsigned int) _lastCheckpointInColumn: (NSString*) column
{
int i, numberOfRows;
if(lastFrame == -1)
return lastFrame;
numberOfRows = [frames numberOfRows];
for(i=numberOfRows-1; i>=0; i--)
if([[frames elementAtRow: i ofColumnWithHeader: column] boolValue])
break;
return i;
}
- (unsigned int) lastEnergyCheckpoint
{
return [self _lastCheckpointInColumn: @"Energy"];
}
- (unsigned int) lastTopologyCheckpoint
{
return [self _lastCheckpointInColumn: @"Topology"];
}
- (unsigned int) lastTrajectoryCheckpoint
{
return [self _lastCheckpointInColumn: @"Trajectory"];
}
- (void) addTopologyCheckpoint
{
NSEnumerator* systemEnum;
id system;
//Clear previously collected data
[topologyData removeAllObjects];
//Add new checkpoints
systemEnum = [[systemCollection fullSystems] objectEnumerator];
while((system = [systemEnum nextObject]))
[self addTopologyCheckpointForSystem: system];
}
- (void) addTopologyCheckpointForSystem: (id) aSystem
{
id topology;
topologyCheckpoint = YES;
topology = [[[aSystem dataSource] copy] autorelease];
[topologyData setObject: topology
forKey: [aSystem systemName]];
}
- (void) addTrajectoryCheckpoint
{
NSKeyedArchiver* archiver;
NSEnumerator* systemEnum;
id system, state;
trajectoryCheckpoint = YES;
//Release previous trajectory checkpoint
[trajectoryData release];
//Checkpoint current trajectory
trajectoryData = [NSMutableData new];
archiver = [[NSKeyedArchiver alloc]
initForWritingWithMutableData: trajectoryData];
[archiver setOutputFormat: NSPropertyListXMLFormat_v1_0];
systemEnum = [[systemCollection fullSystems] objectEnumerator];
while((system = [systemEnum nextObject]))
{
state = [system captureState];
[archiver encodeObject: state
forKey: [system systemName]];
}
[archiver finishEncoding];
[archiver release];
}
- (void) addEnergyCheckpoint
{
double potentialEnergy, totalEnergy, kineticEnergy;
NSEnumerator* systemEnum;
AdForceField* systemForceField;
id system, state;
energyCheckpoint = YES;
//Check that a forceFieldCollection is available before continuing
if(forceFieldCollection == nil)
{
NSWarnLog(@"No force fields are provided - No energy data will be checkpointed");
return;
}
//Remove last energy checkpoint
[energyData removeAllObjects];
//Checkpoint new energies
//Go through each system and add the relevant data
//to an array. Each array is added to energyData dictionary.
//When the frame is close the arrays are added to the
//state matrix for each system (in closeFrame:)
systemEnum = [[systemCollection allSystems] objectEnumerator];
while((system = [systemEnum nextObject]))
{
state = [NSMutableArray array];
//FIXME: Only one force field per system supported
systemForceField = [[forceFieldCollection forceFieldsForSystem: system]
objectAtIndex: 0];
[state addObject: iterationValue];
potentialEnergy = [systemForceField totalEnergy];
[state addObject:
[NSNumber numberWithDouble: potentialEnergy]];
totalEnergy = potentialEnergy;
if([system respondsToSelector: @selector(kineticEnergy)])
{
kineticEnergy = [system kineticEnergy];
totalEnergy += kineticEnergy;
[state addObject:
[NSNumber numberWithDouble: kineticEnergy]];
[state addObject:
[NSNumber numberWithDouble: [system temperature]]];
}
[state addObject:
[NSNumber numberWithDouble: totalEnergy]];
[state addObjectsFromArray:
[systemForceField arrayOfCoreTermEnergies]];
//Add the array containing the checkpointed energies
//to the energyData dictionary
[energyData setObject: state
forKey: [system systemName]];
}
}
- (void) rollBackToFrame: (unsigned int) value
{
BOOL wasCheckpointed;
int start, i;
int trajectory, energy, topology;
NSRange energyRange;
NSEnumerator* matrixEnum;
NSIndexSet* indexSet;
AdMutableDataMatrix* matrix;
if(value > [frames numberOfRows])
[NSException raise: NSRangeException
format: @"(%@) %d is out of range %d",
NSStringFromSelector(_cmd),
value,
[frames numberOfRows]];
trajectory = energy = topology = 0;
//From the frame after the requested frame to the
//last recorded frame
start = value + 1;
for(i=start; i<lastFrame+1;i++)
{
wasCheckpointed = [[frames elementAtRow: i
ofColumnWithHeader: @"Trajectory"]
boolValue];
if(wasCheckpointed)
trajectory++;
wasCheckpointed = [[frames elementAtRow: i
ofColumnWithHeader: @"Energy"]
boolValue];
if(wasCheckpointed)
energy++;
wasCheckpointed = [[frames elementAtRow: i
ofColumnWithHeader: @"Topology"]
boolValue];
if(wasCheckpointed)
topology++;
}
NSDebugLLog(@"AdSimulationDataWriter", @"Rolling back to frame %d", value);
NSDebugLLog(@"AdSimulationDataWriter", @"Deleting %d trajectory checkpoints", trajectory);
NSDebugLLog(@"AdSimulationDataWriter", @"Deleting %d energy checkpoints", energy);
NSDebugLLog(@"AdSimulationDataWriter", @"Deleting %d topology checkpoints", topology);
[dataStorage removeTrajectoryCheckpoints: trajectory];
[dataStorage removeTopologyCheckpoints: topology];
//Delete the energy frames
matrixEnum = [[stateData dataMatrices] objectEnumerator];
energyRange.length = energy;
while((matrix = [matrixEnum nextObject]))
{
energyRange.location = [matrix numberOfRows] - energyRange.length;
indexSet = [NSIndexSet indexSetWithIndexesInRange: energyRange];
NSDebugLLog(@"AdSimulationDataWriter",
@"Removing %@ rows from matrix %@", indexSet, [matrix name]);
[matrix removeRowsWithIndexes: indexSet];
}
//Delete the frame information
[frames removeRowsWithIndexes:
[NSIndexSet indexSetWithIndexesInRange:
NSMakeRange(start, lastFrame - start + 1)]];
//Remove any data marked for checkpointing so far
if(frameOpen)
{
energyCheckpoint = NO;
trajectoryCheckpoint = NO;
topologyCheckpoint = NO;
[topologyData removeAllObjects];
[energyData removeAllObjects];
[trajectoryData release];
trajectoryData = nil;
frameOpen = NO;
}
lastFrame = value;
[self synchToStore];
}
- (void) synchToStore
{
NSKeyedArchiver* archiver;
NSMutableData* data;
NSDebugLLog(@"AdSimulationDataWriter", @"Synching to store");
data = [NSMutableData new];
archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData: data];
[archiver setOutputFormat: NSPropertyListXMLFormat_v1_0];
[archiver encodeObject: stateData forKey: @"root"];
[archiver finishEncoding];
[dataStorage setEnergyData: data];
NSDebugLLog(@"AdSimulationDataWriter", @"Wrote %d bytes of energy data", [data length]);
[archiver release];
[data release];
data = [NSMutableData new];
archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData: data];
[archiver setOutputFormat: NSPropertyListXMLFormat_v1_0];
[archiver encodeObject: frames forKey: @"root"];
[archiver finishEncoding];
[dataStorage setFrameData: data];
NSDebugLLog(@"AdSimulationDataWriter", @"Wrote %d bytes of frame data", [data length]);
[archiver release];
[dataStorage synchronizeStore];
NSDebugLLog(@"AdSimulationDataWriter", @"Complete");
}
- (id) dataStorage
{
return [[dataStorage retain] autorelease];
}
@end
|