@@ -170,6 +170,7 @@ DGGraphImpl::DGGraphImpl(
170
170
mIsClearing = true ;
171
171
mUsesEvalContext = false ;
172
172
mUserPointer = NULL ;
173
+ mIsReferenced = false ;
173
174
174
175
try
175
176
{
@@ -2449,100 +2450,108 @@ FabricCore::Variant DGGraphImpl::getPersistenceDataDict(const PersistenceInfo *
2449
2450
persistenceContextRT.setMember (" filePath" , FabricSplice::constructStringRTVal (info->filePath .getStringData ()));
2450
2451
}
2451
2452
2452
- FabricCore::Variant dgNodeListVar = FabricCore::Variant::CreateArray ();
2453
- FabricCore::Variant portData = FabricCore::Variant::CreateDict ();
2454
- for (DGNodeIt it = mDGNodes .begin (); it != mDGNodes .end (); it++)
2453
+ // only persist the splice base path, if applicable
2454
+ if (mIsReferenced )
2455
2455
{
2456
- FabricCore::Variant dgNodeVar = FabricCore::Variant::CreateDict ();
2456
+ dataVar.setDictValue (" spliceFilePath" , FabricCore::Variant::CreateString (mFilePath .c_str ()));
2457
+ }
2458
+ else
2459
+ {
2460
+ FabricCore::Variant dgNodeListVar = FabricCore::Variant::CreateArray ();
2461
+ FabricCore::Variant portData = FabricCore::Variant::CreateDict ();
2462
+ for (DGNodeIt it = mDGNodes .begin (); it != mDGNodes .end (); it++)
2463
+ {
2464
+ FabricCore::Variant dgNodeVar = FabricCore::Variant::CreateDict ();
2457
2465
2458
- // only save non-default names
2459
- if (it->first != " DGNode" )
2460
- dgNodeVar.setDictValue (" name" , FabricCore::Variant::CreateString (it->first .c_str ()));
2466
+ // only save non-default names
2467
+ if (it->first != " DGNode" )
2468
+ dgNodeVar.setDictValue (" name" , FabricCore::Variant::CreateString (it->first .c_str ()));
2461
2469
2462
- FabricCore::DGNode node = it->second .node ;
2470
+ FabricCore::DGNode node = it->second .node ;
2463
2471
2464
- FabricCore::Variant dependenciesVar = node.getDependencies_Variant ();
2465
- if (dependenciesVar.isArray ())
2466
- {
2467
- if (dependenciesVar.getArraySize () > 0 )
2468
- dgNodeVar.setDictValue (" dependencies" , dependenciesVar);
2469
- }
2472
+ FabricCore::Variant dependenciesVar = node.getDependencies_Variant ();
2473
+ if (dependenciesVar.isArray ())
2474
+ {
2475
+ if (dependenciesVar.getArraySize () > 0 )
2476
+ dgNodeVar.setDictValue (" dependencies" , dependenciesVar);
2477
+ }
2470
2478
2471
- FabricCore::Variant bindingListVar = FabricCore::Variant::CreateArray ();
2479
+ FabricCore::Variant bindingListVar = FabricCore::Variant::CreateArray ();
2472
2480
2473
- FabricCore::DGBindingList bindings = node.getBindingList ();
2474
- for (uint32_t i=0 ;i<bindings.getCount ();i++)
2475
- {
2476
- FabricCore::DGBinding binding = bindings.getBinding (i);
2477
- FabricCore::DGOperator op = binding.getOperator ();
2481
+ FabricCore::DGBindingList bindings = node.getBindingList ();
2482
+ for (uint32_t i=0 ;i<bindings.getCount ();i++)
2483
+ {
2484
+ FabricCore::DGBinding binding = bindings.getBinding (i);
2485
+ FabricCore::DGOperator op = binding.getOperator ();
2478
2486
2479
- FabricCore::Variant bindingVar = FabricCore::Variant::CreateDict ();
2480
- FabricCore::Variant opVar = FabricCore::Variant::CreateDict ();
2487
+ FabricCore::Variant bindingVar = FabricCore::Variant::CreateDict ();
2488
+ FabricCore::Variant opVar = FabricCore::Variant::CreateDict ();
2481
2489
2482
- std::string opName = getPrettyDGOperatorName (op.getName ());
2490
+ std::string opName = getPrettyDGOperatorName (op.getName ());
2483
2491
2484
- opVar.setDictValue (" name" , FabricCore::Variant::CreateString (opName.c_str ()));
2492
+ opVar.setDictValue (" name" , FabricCore::Variant::CreateString (opName.c_str ()));
2485
2493
2486
- // only save entry points which differ from the op name
2487
- if (opName != op.getEntryPoint ())
2488
- opVar.setDictValue (" entry" , FabricCore::Variant::CreateString (op.getEntryPoint ()));
2494
+ // only save entry points which differ from the op name
2495
+ if (opName != op.getEntryPoint ())
2496
+ opVar.setDictValue (" entry" , FabricCore::Variant::CreateString (op.getEntryPoint ()));
2489
2497
2490
- // either store the filename with the code, or just the filename.
2491
- // this should be based on a user decision, if the kl file is based
2492
- // on an external file, or not.
2493
- stringIt fileNameIt = mKLOperatorFileNames .find (op.getName ());
2494
- if (fileNameIt == mKLOperatorFileNames .end ())
2495
- {
2496
- // only save non-default names
2497
- std::string fileNameStr = op.getFilename ();
2498
- if (fileNameStr != opName+" .kl" )
2499
- opVar.setDictValue (" filename" , FabricCore::Variant::CreateString (op.getFilename ()));
2500
-
2501
- // check if we have operator source code in the DCC UI somewhere
2502
- std::string klCode;
2503
- if (sGetOperatorSourceCodeFunc )
2498
+ // either store the filename with the code, or just the filename.
2499
+ // this should be based on a user decision, if the kl file is based
2500
+ // on an external file, or not.
2501
+ stringIt fileNameIt = mKLOperatorFileNames .find (op.getName ());
2502
+ if (fileNameIt == mKLOperatorFileNames .end ())
2504
2503
{
2505
- const char * klCodeCStr = (*sGetOperatorSourceCodeFunc )(getName ().c_str (), opName.c_str ());
2506
- if (klCodeCStr)
2507
- klCode = klCodeCStr;
2504
+ // only save non-default names
2505
+ std::string fileNameStr = op.getFilename ();
2506
+ if (fileNameStr != opName+" .kl" )
2507
+ opVar.setDictValue (" filename" , FabricCore::Variant::CreateString (op.getFilename ()));
2508
+
2509
+ // check if we have operator source code in the DCC UI somewhere
2510
+ std::string klCode;
2511
+ if (sGetOperatorSourceCodeFunc )
2512
+ {
2513
+ const char * klCodeCStr = (*sGetOperatorSourceCodeFunc )(getName ().c_str (), opName.c_str ());
2514
+ if (klCodeCStr)
2515
+ klCode = klCodeCStr;
2516
+ }
2517
+ if (klCode.length () == 0 )
2518
+ {
2519
+ klCode = getKLOperatorSourceCode (opName);
2520
+ }
2521
+ opVar.setDictValue (" kl" , FabricCore::Variant::CreateString (klCode.c_str ()));
2508
2522
}
2509
- if (klCode. length () == 0 )
2523
+ else
2510
2524
{
2511
- klCode = getKLOperatorSourceCode (opName );
2525
+ opVar. setDictValue ( " filename " , FabricCore::Variant::CreateString (fileNameIt-> second . c_str ()) );
2512
2526
}
2513
- opVar.setDictValue (" kl" , FabricCore::Variant::CreateString (klCode.c_str ()));
2514
- }
2515
- else
2516
- {
2517
- opVar.setDictValue (" filename" , FabricCore::Variant::CreateString (fileNameIt->second .c_str ()));
2518
- }
2519
2527
2520
- if (i < it->second .opPortMaps .size ())
2521
- {
2522
- bool hasContent = !FabricCore::Variant::DictIter (it->second .opPortMaps [i]).isDone ();
2523
- if (hasContent)
2524
- opVar.setDictValue (" portmap" , it->second .opPortMaps [i]);
2528
+ if (i < it->second .opPortMaps .size ())
2529
+ {
2530
+ bool hasContent = !FabricCore::Variant::DictIter (it->second .opPortMaps [i]).isDone ();
2531
+ if (hasContent)
2532
+ opVar.setDictValue (" portmap" , it->second .opPortMaps [i]);
2533
+ }
2534
+
2535
+ // todo: we might want to store the parameter layout at a some point
2536
+ bindingVar.setDictValue (" operator" , opVar);
2537
+ bindingListVar.arrayAppend (bindingVar);
2525
2538
}
2539
+ dgNodeVar.setDictValue (" bindings" , bindingListVar);
2526
2540
2527
- // todo: we might want to store the parameter layout at a some point
2528
- bindingVar.setDictValue (" operator" , opVar);
2529
- bindingListVar.arrayAppend (bindingVar);
2541
+ dgNodeListVar.arrayAppend (dgNodeVar);
2530
2542
}
2531
- dgNodeVar.setDictValue (" bindings" , bindingListVar);
2532
-
2533
- dgNodeListVar.arrayAppend (dgNodeVar);
2534
- }
2535
- dataVar.setDictValue (" nodes" , dgNodeListVar);
2543
+ dataVar.setDictValue (" nodes" , dgNodeListVar);
2536
2544
2537
- FabricCore::Variant extensionListVar = FabricCore::Variant::CreateArray ();
2538
- for (stringIt it = mLoadedExtensions .begin (); it != mLoadedExtensions .end (); it++)
2539
- extensionListVar.arrayAppend (FabricCore::Variant::CreateString (it->first .c_str ()));
2540
- if (mLoadedExtensions .size () > 0 )
2541
- dataVar.setDictValue (" extensions" , extensionListVar);
2545
+ FabricCore::Variant extensionListVar = FabricCore::Variant::CreateArray ();
2546
+ for (stringIt it = mLoadedExtensions .begin (); it != mLoadedExtensions .end (); it++)
2547
+ extensionListVar.arrayAppend (FabricCore::Variant::CreateString (it->first .c_str ()));
2548
+ if (mLoadedExtensions .size () > 0 )
2549
+ dataVar.setDictValue (" extensions" , extensionListVar);
2542
2550
2543
- FabricCore::Variant portInfo;
2544
- getDGPortInfo (portInfo, persistenceContextRT);
2545
- dataVar.setDictValue (" ports" , portInfo);
2551
+ FabricCore::Variant portInfo;
2552
+ getDGPortInfo (portInfo, persistenceContextRT);
2553
+ dataVar.setDictValue (" ports" , portInfo);
2554
+ }
2546
2555
2547
2556
mIsPersisting = false ;
2548
2557
@@ -2578,6 +2587,14 @@ bool DGGraphImpl::setFromPersistenceDataDict(
2578
2587
if (mMetaData .length () > 0 )
2579
2588
dataVar.setDictValue (" metaData" , FabricCore::Variant::CreateString (mMetaData .c_str ()));
2580
2589
2590
+ // check if this is a referenced splice file
2591
+ const FabricCore::Variant * spliceFilePathVar = dataVar.getDictValue (" spliceFilePath" );
2592
+ if (spliceFilePathVar)
2593
+ {
2594
+ std::string spliceFilePath = spliceFilePathVar->getStringData ();
2595
+ return loadFromFile (thisGraph, spliceFilePath, info, true , errorOut);
2596
+ }
2597
+
2581
2598
const FabricCore::Variant * nodesVar = dataVar.getDictValue (" nodes" );
2582
2599
if (!nodesVar)
2583
2600
return LoggingImpl::reportError (" JSON data is corrupt, no 'nodes' element." , errorOut);
@@ -2980,13 +2997,16 @@ bool DGGraphImpl::loadFromFile(
2980
2997
DGGraphImplPtr thisGraph,
2981
2998
const std::string & filePath,
2982
2999
PersistenceInfo * info,
3000
+ bool asReferenced,
2983
3001
std::string * errorOut
2984
3002
) {
2985
3003
if (!thisGraph)
2986
3004
return LoggingImpl::reportError (" Parameter thisGraph is not valid." , errorOut);
2987
3005
if (thisGraph.get () != this )
2988
3006
return LoggingImpl::reportError (" Parameter thisGraph does not refer to this graph." , errorOut);
2989
- FILE * file = fopen (filePath.c_str (), " rb" );
3007
+
3008
+ std::string resolvedFilePath = resolveEnvironmentVariables (filePath);
3009
+ FILE * file = fopen (resolvedFilePath.c_str (), " rb" );
2990
3010
if (!file)
2991
3011
return LoggingImpl::reportError (" Invalid filePath '" +filePath+" '" , errorOut);
2992
3012
@@ -3005,13 +3025,21 @@ bool DGGraphImpl::loadFromFile(
3005
3025
std::string json = buffer;
3006
3026
free (buffer);
3007
3027
3028
+ mIsReferenced = asReferenced;
3029
+ mFilePath = filePath;
3030
+
3008
3031
if (!setFromPersistenceDataJSON (thisGraph, json, info, filePath.c_str (), errorOut))
3009
3032
return false ;
3010
3033
LoggingImpl::log (" Loaded graph '" +getName ()+" ' from " +filePath);
3011
3034
3012
3035
return true ;
3013
3036
}
3014
3037
3038
+ bool DGGraphImpl::isReferenced ()
3039
+ {
3040
+ return mIsReferenced ;
3041
+ }
3042
+
3015
3043
bool DGGraphImpl::requireEvaluate ()
3016
3044
{
3017
3045
if (mRequiresEval )
0 commit comments