33
33
import cbit .vcell .solver .SimulationInfo ;
34
34
import org .vcell .util .*;
35
35
import org .vcell .util .document .ExternalDataIdentifier ;
36
+ import org .vcell .util .document .KeyValue ;
36
37
import org .vcell .util .document .VCDocument ;
37
38
import org .vcell .util .document .Version ;
38
39
import org .vcell .util .gui .DialogUtils ;
@@ -611,6 +612,9 @@ private void fdFromSim(java.awt.event.ActionEvent actionEvent) {
611
612
PopupGenerator .showErrorDialog (this , "Please open a Bio or Math model containing the spatial (non-compartmental) simulation you wish to use to create a new Field Data" );
612
613
return ;
613
614
}
615
+
616
+ String newFieldDataName = PopupGenerator .showInputDialog (this , "Field Data Name:" , "" );
617
+
614
618
//Check that the sim is in a state that can be copied
615
619
final SimulationInfo simInfo = simInfoHolder .getSimInfo ();
616
620
if (simInfo == null ) {
@@ -625,36 +629,13 @@ private void fdFromSim(java.awt.event.ActionEvent actionEvent) {
625
629
(simInfo .getParentSimulationReference () != null ? simInfo .getParentSimulationReference () : simInfo .getSimulationVersion ().getVersionKey ()),
626
630
simInfo .getOwner (), simInfoHolder .getJobIndex (), clientRequestManager .getDocumentManager ().getUser ());
627
631
628
- AsynchClientTask [] addTasks = addNewExternalData (this , this , true );
629
- AsynchClientTask [] taskArray = new AsynchClientTask [1 + addTasks .length ];
630
- System .arraycopy (addTasks , 0 , taskArray , 1 , addTasks .length ); // add to the end
632
+ AsynchClientTask [] taskArray = new AsynchClientTask [1 ];
631
633
632
- taskArray [0 ] = new AsynchClientTask ("Create Field Data from Simulation" , AsynchClientTask .TASKTYPE_NONSWING_BLOCKING ) {
634
+ taskArray [0 ] = new AsynchClientTask ("Saving Field Data From Simulation" , AsynchClientTask .TASKTYPE_NONSWING_BLOCKING ) {
633
635
public void run (Hashtable <String , Object > hashTable ) throws Exception {
634
- FieldDataFileOperationResults fdor =
635
- clientRequestManager .getDocumentManager ().fieldDataFileOperation (
636
- FieldDataFileOperationSpec .createInfoFieldDataFileOperationSpec (
637
- (simInfo .getParentSimulationReference () != null ?
638
- simInfo .getParentSimulationReference () :
639
- simInfo .getSimulationVersion ().getVersionKey ()
640
- ),
641
- simInfo .getOwner (),
642
- simInfoHolder .getJobIndex ()));
643
- //Create (non-editable) info for display
644
- fdos .origin = fdor .origin ;
645
- fdos .extent = fdor .extent ;
646
- fdos .isize = fdor .iSize ;
647
- fdos .times = fdor .times ;
648
- fdos .varNames = new String [fdor .dataIdentifierArr .length ];
649
- for (int i = 0 ; i < fdor .dataIdentifierArr .length ; i += 1 ) {
650
- fdos .varNames [i ] =
651
- (fdor .dataIdentifierArr [i ].getVariableType ().equals (VariableType .VOLUME ) ? "(vol) " : "" ) +
652
- (fdor .dataIdentifierArr [i ].getVariableType ().equals (VariableType .MEMBRANE ) ? "(mbr) " : "" ) +
653
- fdor .dataIdentifierArr [i ].getName ();
654
- }
655
- hashTable .put ("fdos" , fdos );
656
- hashTable .put ("initFDName" , simInfo .getName ());
657
- //addNewExternalData(clientRequestManager, fdos, simInfoHolder.simInfo.getName(), true);
636
+ KeyValue simReference = simInfo .getParentSimulationReference () != null ? simInfo .getParentSimulationReference () : simInfo .getSimulationVersion ().getVersionKey ();
637
+ clientRequestManager .getDocumentManager ().fieldDataFromSimulation (simReference , simInfoHolder .getJobIndex (), newFieldDataName );
638
+ updateJTree (clientRequestManager );
658
639
}
659
640
};
660
641
@@ -1050,7 +1031,7 @@ public void checkFieldDataName(String fieldDataName) throws Exception {
1050
1031
}
1051
1032
}
1052
1033
}
1053
-
1034
+
1054
1035
// creation and saving of file is separate act from saving file info into DB
1055
1036
1056
1037
public static AsynchClientTask [] addNewExternalData (final Component requester , final FieldDataGUIPanel fieldDataGUIPanel , final boolean isFromSimulation ) {
0 commit comments