Skip to content

Commit dbdc559

Browse files
committed
Merge remote-tracking branch 'origin/candidate-9.10.x'
Signed-off-by: Jake Smith <jake.smith@lexisnexisrisk.com> # Conflicts: # version.cmake
2 parents db5df0c + 07fb89b commit dbdc559

9 files changed

+24
-26
lines changed

comms/Dali.cpp

+7-5
Original file line numberDiff line numberDiff line change
@@ -691,11 +691,11 @@ class CDali : public IDali, public CUnknown
691691
return localfiles.size();
692692
}
693693

694-
IWorkunit* Submit(const CString &cluster, const CString & queue, WUAction action, const CString & attrQualifiedLabel, const CString & ecl, const CString & path, const CString & label, int resultLimit, const CString & debugSettings, bool archive, int maxRunTime, bool debug)
694+
IWorkunit* Submit(const CString &cluster, const CString & queue, WUAction action, const CString & attrQualifiedLabel, const CString & ecl, const CString & path, const CString & label, int resultLimit, const CString & debugSettings, bool archive, int maxRunTime, bool debug, bool rawECL)
695695
{
696696
CComInitialize com;
697697
StlLinked<IWorkunit> resultWu;
698-
SubmitEcl(cluster, queue, action, attrQualifiedLabel, ecl, path, label, resultLimit, resultWu, debugSettings, archive, false, maxRunTime, debug);
698+
SubmitEcl(cluster, queue, action, attrQualifiedLabel, ecl, path, label, resultLimit, resultWu, debugSettings, archive, false, maxRunTime, debug, rawECL);
699699
return resultWu.get();
700700
}
701701

@@ -1109,7 +1109,7 @@ class CDali : public IDali, public CUnknown
11091109
{
11101110
CComInitialize com;
11111111
bool retVal = false;
1112-
if (SubmitEcl(cluster, queue, action, attrQualifiedLabel, ecl, path, label, resultLimit, resultWu, debugSettings, archive, noCommonPrivateAttributes, maxRunTime, debug))
1112+
if (SubmitEcl(cluster, queue, action, attrQualifiedLabel, ecl, path, label, resultLimit, resultWu, debugSettings, archive, noCommonPrivateAttributes, maxRunTime, debug, false))
11131113
{
11141114
retVal = BlockUntilComplete(m_config, resultWu->GetWuid());
11151115

@@ -1221,12 +1221,14 @@ class CDali : public IDali, public CUnknown
12211221
}
12221222
}
12231223

1224-
bool SubmitEcl(const CString &cluster, const CString & queue, WUAction _action, const CString & attrQualifiedLabel, const CString & _ecl, const CString & path, const CString label, int resultLimit, StlLinked<IWorkunit> &resultWu, const CString & debugString, bool archive, bool noCommonPrivateAttributes, int maxRunTime, bool debug)
1224+
bool SubmitEcl(const CString &cluster, const CString & queue, WUAction _action, const CString & attrQualifiedLabel, const CString & _ecl, const CString & path, const CString label, int resultLimit, StlLinked<IWorkunit> &resultWu, const CString & debugString, bool archive, bool noCommonPrivateAttributes, int maxRunTime, bool debug, bool rawECL)
12251225
{
12261226
bool isXml = false;
12271227
bool isArchive = false;
12281228
CString ecl = _ecl;
12291229
std::_tstring queryName;
1230+
1231+
if (!rawECL)
12301232
{// ECL or XML
12311233
CComInitialize com;
12321234
CComPtr<ISAXXMLReader> pRdr;
@@ -1248,7 +1250,7 @@ class CDali : public IDali, public CUnknown
12481250
}
12491251
}
12501252

1251-
if (!isXml && !boost::algorithm::iequals(static_cast<const TCHAR *>(cluster), _T("Local")))
1253+
if (!rawECL && !isXml && !boost::algorithm::iequals(static_cast<const TCHAR *>(cluster), _T("Local")))
12521254
{
12531255
CComPtr<IEclCC> eclcc = CreateIEclCC();
12541256
if (_action != WUActionExecuteExisting && eclcc)

comms/Dali.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ __interface IDali : public IUnknown
8484
IWorkunit *GetXGMMLWorkunit(const CString &filePath) const;
8585
signed GetResultData(const CString & wuid, int sequence, __int64 start, int count, ITable * result, __int64 &total) const;
8686
void MonitorState(const CString & wuid) const; //Notifications come thru "IWorkunit.on_refresh_connect"
87-
IWorkunit * Submit(const CString &cluster, const CString & queue, WUAction action, const CString & attrQualifiedLabel, const CString & ecl, const CString & path, const CString & label, int resultLimit, const CString & debugSettings, bool archive, int maxRunTime, bool debug);
87+
IWorkunit * Submit(const CString &cluster, const CString & queue, WUAction action, const CString & attrQualifiedLabel, const CString & ecl, const CString & path, const CString & label, int resultLimit, const CString & debugSettings, bool archive, int maxRunTime, bool debug, bool rawECL);
8888
IWorkunit * Schedule(const CString &cluster, const CString & queue, const CString & attrQualifiedLabel, const CString & ecl, const CString & when, const CString & label, int resultLimit, const CString & debugSettings, bool archive);
8989
bool CheckComplexity(const CString &cluster, const CString & queue, const CString & ecl, const CString &module, const CString &attribute, std::_tstring & result, CEclExceptionVector & errorResults);
9090
void GetDependancies(const CString &cluster, const CString & queue, const CString & ecl, const CString &module, const CString &attribute, AttributeVector & results, CEclExceptionVector & errorResults);

eclide/ChildBuilderFrame.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -362,17 +362,17 @@ class CBuilderFrame :
362362
return true;
363363
}
364364

365-
void OnButtonGo(Dali::WUAction action, bool selected)
365+
void OnButtonGo(Dali::WUAction action, bool selected, bool rawECL)
366366
{
367367
CString ecl;
368368
if (selected)
369369
m_dlgview.GetSource(ecl, selected);
370370
else
371371
m_dlgview.GetSource(ecl);
372-
ExecEcl(action, ecl, m_dlgview.IsScheduled(), m_dlgview.IsLabeled());
372+
ExecEcl(action, ecl, m_dlgview.IsScheduled(), m_dlgview.IsLabeled(), false, false, rawECL);
373373
}
374374

375-
void ExecEcl(Dali::WUAction action, const CString &_ecl, bool isScheduled=false, bool isLabeled=false, bool isDebug=false, bool supressPath=false)
375+
void ExecEcl(Dali::WUAction action, const CString &_ecl, bool isScheduled=false, bool isLabeled=false, bool isDebug=false, bool supressPath=false, bool rawECL=false)
376376
{
377377
bool isSaved = false;
378378
if (CComPtr<IEclCC> eclcc = CreateIEclCC())
@@ -456,7 +456,7 @@ class CBuilderFrame :
456456
}
457457
else if (action != Dali::WUActionGenerate)
458458
{
459-
result->ExecEcl(m_dlgview.GetCluster(), m_dlgview.GetQueue(), action, attrQualifiedLabel.c_str(), ecl, supressPath ? _T("") : m_dlgview.GetPath(), when.c_str(), label, m_dlgview.GetResultLimit(), debugStr.c_str(), m_dlgview.IsArchive(), m_dlgview.GetMaxRuntime(), isDebug);
459+
result->ExecEcl(m_dlgview.GetCluster(), m_dlgview.GetQueue(), action, attrQualifiedLabel.c_str(), ecl, supressPath ? _T("") : m_dlgview.GetPath(), when.c_str(), label, m_dlgview.GetResultLimit(), debugStr.c_str(), m_dlgview.IsArchive(), m_dlgview.GetMaxRuntime(), isDebug, rawECL);
460460
GetIConfig(QUERYBUILDER_CFG)->Set(GLOBAL_QUEUE, m_dlgview.GetQueue());
461461
GetIConfig(QUERYBUILDER_CFG)->Set(GLOBAL_CLUSTER, m_dlgview.GetCluster());
462462
}

eclide/EclDlgBuilder.cpp

+1-6
Original file line numberDiff line numberDiff line change
@@ -738,8 +738,6 @@ void CBuilderDlg::OnFileSaveAs(UINT /*uNotifyCode*/, int /*nID*/, HWND /*hWnd*/)
738738

739739
void CBuilderDlg::OnEclGo(UINT /*uNotifyCode*/, int nID, HWND /*hWnd*/)
740740
{
741-
bool prevArchive = m_archive;
742-
743741
switch(nID)
744742
{
745743
case ID_ECL_GO:
@@ -752,8 +750,7 @@ void CBuilderDlg::OnEclGo(UINT /*uNotifyCode*/, int nID, HWND /*hWnd*/)
752750
break;
753751
case ID_ECL_NOARCHIV_GO:
754752
case ID_GO_SUBMITNOARCHIV:
755-
m_archive = false;
756-
m_owner->OnButtonGo(Dali::WUActionRun);
753+
m_owner->OnButtonGo(Dali::WUActionRun, false, true);
757754
break;
758755
case ID_GO_COMPILE:
759756
m_owner->OnButtonGo(Dali::WUActionCompile);
@@ -779,8 +776,6 @@ void CBuilderDlg::OnEclGo(UINT /*uNotifyCode*/, int nID, HWND /*hWnd*/)
779776
ATLASSERT(false);
780777
break;
781778
}
782-
783-
m_archive = prevArchive;
784779
}
785780

786781
void CBuilderDlg::OnEclGenerate(UINT /*uNotifyCode*/, int nID, HWND /*hWnd*/)

eclide/EclDlgBuilder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ enum BUM
1515
// ===========================================================================
1616
__interface IEclBuilderSlot : public ISourceSlot
1717
{
18-
void OnButtonGo(Dali::WUAction action, bool selected = false);
18+
void OnButtonGo(Dali::WUAction action, bool selected = false, bool rawECL = false);
1919
};
2020

2121
class CBuilderDlg :

eclide/ResultView.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -2420,7 +2420,7 @@ class CMultiResultView :
24202420
int GetTabCount();
24212421
void CloseAllTabs();
24222422
void DestroyWindow();
2423-
void ExecEcl(const TCHAR *clusterName, const TCHAR *queueName, Dali::WUAction action, const TCHAR *attrQualifiedLabel, const TCHAR *eclSource, const TCHAR *eclPath, const TCHAR *scheduled, const TCHAR *label, int resultLimit, const TCHAR *debugString, bool archive, int maxRuntime, bool debug);
2423+
void ExecEcl(const TCHAR *clusterName, const TCHAR *queueName, Dali::WUAction action, const TCHAR *attrQualifiedLabel, const TCHAR *eclSource, const TCHAR *eclPath, const TCHAR *scheduled, const TCHAR *label, int resultLimit, const TCHAR *debugString, bool archive, int maxRuntime, bool debug, bool rawECL);
24242424
void PublishESDL(const std::_tstring & desdlID, const std::_tstring & desdlVersion);
24252425
void SetDeleteWorkunit(bool bDelete=true);
24262426
void PostSelectRibbon();
@@ -2552,10 +2552,10 @@ void CMultiResultView::RenameColumn(unsigned col, const std::_tstring& newname)
25522552
m_tabs[n]->RenameColumn(col, newname);
25532553
}
25542554

2555-
void CMultiResultView::ExecEcl(const TCHAR *clusterName, const TCHAR *queueName, Dali::WUAction action, const TCHAR *attrQualifiedLabel, const TCHAR *eclSource, const TCHAR *eclPath, const TCHAR *scheduled, const TCHAR *label, int resultLimit, const TCHAR * debugString, bool archive, int maxRuntime, bool debug)
2555+
void CMultiResultView::ExecEcl(const TCHAR *clusterName, const TCHAR *queueName, Dali::WUAction action, const TCHAR *attrQualifiedLabel, const TCHAR *eclSource, const TCHAR *eclPath, const TCHAR *scheduled, const TCHAR *label, int resultLimit, const TCHAR * debugString, bool archive, int maxRuntime, bool debug, bool rawECL)
25562556
{
25572557
m_launchDebugger = debug;
2558-
CEclExec::ExecEcl(clusterName, queueName, action, attrQualifiedLabel, eclSource, eclPath, scheduled, label, resultLimit, debugString, archive, maxRuntime, debug);
2558+
CEclExec::ExecEcl(clusterName, queueName, action, attrQualifiedLabel, eclSource, eclPath, scheduled, label, resultLimit, debugString, archive, maxRuntime, debug, rawECL);
25592559
}
25602560

25612561
void CMultiResultView::PublishESDL(const std::_tstring & desdlID, const std::_tstring & desdlVersion)

eclide/ResultView.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ __interface IResultViewer : public ISearchable, public IUnknown
8787
bool ToggleHexColumnDisplay(int column=-1);
8888
void RenameColumn(unsigned col, const std::_tstring& newname);
8989
bool UpdateUI(CCmdUI * cui);
90-
void ExecEcl(const TCHAR *clusterName, const TCHAR *queueName, Dali::WUAction action, const TCHAR *qualifiedLabel, const TCHAR *eclSource, const TCHAR *eclPath, const TCHAR *scheduled, const TCHAR *label, int resultLimit, const TCHAR *debugString, bool archive, int maxRuntime, bool debug);
90+
void ExecEcl(const TCHAR *clusterName, const TCHAR *queueName, Dali::WUAction action, const TCHAR *qualifiedLabel, const TCHAR *eclSource, const TCHAR *eclPath, const TCHAR *scheduled, const TCHAR *label, int resultLimit, const TCHAR *debugString, bool archive, int maxRuntime, bool debug, bool rawECL);
9191
void PublishESDL(const std::_tstring & desdlID, const std::_tstring & desdlVersion);
9292
void SetDeleteWorkunit(bool bDelete=true);
9393
void PostSelectRibbon();

wlib/EclExec.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
#include <RecursiveMutex.h> //clib
66
#include "Thread.h" //clib
77

8-
void CEclExec::ExecEcl(const TCHAR *clusterName, const TCHAR *queueName, Dali::WUAction action, const TCHAR *attrQualifiedLabel, const TCHAR *eclSource, const TCHAR *eclPath, const TCHAR *scheduled, const TCHAR *label, int resultLimit, const TCHAR *debugSettings, bool archive, int maxRunTime, bool debug)
8+
void CEclExec::ExecEcl(const TCHAR *clusterName, const TCHAR *queueName, Dali::WUAction action, const TCHAR *attrQualifiedLabel, const TCHAR *eclSource, const TCHAR *eclPath, const TCHAR *scheduled, const TCHAR *label, int resultLimit, const TCHAR *debugSettings, bool archive, int maxRunTime, bool debug, bool rawECL)
99
{
1010
if (scheduled && scheduled[0])
1111
{
1212
clib::thread run(__FUNCTION__, boost::bind(&EclSchedule, this, std::make_pair(clusterName, queueName), std::make_pair(action, attrQualifiedLabel), std::make_pair(eclSource, scheduled), label, resultLimit, debugSettings, archive, maxRunTime));
1313
}
1414
else
1515
{
16-
BindLimitStruct bls = {archive, maxRunTime, debug};
16+
BindLimitStruct bls = {archive, maxRunTime, debug, rawECL};
1717
clib::thread run(__FUNCTION__, boost::bind(&EclGo, this, std::make_pair(clusterName, queueName), std::make_pair(action, attrQualifiedLabel), eclSource, eclPath, label, resultLimit, debugSettings, bls));
1818
}
1919
}
@@ -84,7 +84,7 @@ void CEclExec::EclGo(CComPtr<CEclExec> t, std::pair<std::_tstring, std::_tstring
8484
{
8585
CString wuid;
8686
StlLinked<Dali::IDali> server = Dali::AttachDali();
87-
StlLinked<Dali::IWorkunit> workunit = server->Submit(clusterQueue.first.c_str(), clusterQueue.second.c_str(), actionAttrQualifiedLabel.first, actionAttrQualifiedLabel.second.c_str(), ecl, path, label, resultLimit, debugSettings, bls.archive, bls.maxRunTime, bls.debug);
87+
StlLinked<Dali::IWorkunit> workunit = server->Submit(clusterQueue.first.c_str(), clusterQueue.second.c_str(), actionAttrQualifiedLabel.first, actionAttrQualifiedLabel.second.c_str(), ecl, path, label, resultLimit, debugSettings, bls.archive, bls.maxRunTime, bls.debug, bls.rawECL);
8888
if ( workunit.isLinked() )
8989
{
9090
UpdateDefaultCluster(clusterQueue.first.c_str());
@@ -100,7 +100,7 @@ void CEclExec::EclGoNoRefCount(CEclExec * t, CString cluster, CString queue, Dal
100100
{
101101
CString wuid;
102102
StlLinked<Dali::IDali> server = Dali::AttachDali();
103-
StlLinked<Dali::IWorkunit> workunit = server->Submit(cluster, queue, action, attrQualifiedLabel, ecl, path, _T(""), 0, _T(""), false, 0, false);
103+
StlLinked<Dali::IWorkunit> workunit = server->Submit(cluster, queue, action, attrQualifiedLabel, ecl, path, _T(""), 0, _T(""), false, 0, false, false);
104104
if ( workunit.isLinked() )
105105
{
106106
UpdateDefaultCluster(cluster);

wlib/EclExec.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class WLIB_API CEclExec : public CUnknown, public boost::signals::trackable
1313
{
1414
}
1515

16-
virtual void ExecEcl(const TCHAR *clusterName, const TCHAR *queueName, Dali::WUAction action, const TCHAR *attrQualifiedLabel, const TCHAR *eclSource, const TCHAR *eclPath, const TCHAR *scheduled, const TCHAR *label, int resultLimit, const TCHAR *debugSettings, bool archive, int maxRunTime=0, bool debug=false);
16+
virtual void ExecEcl(const TCHAR *clusterName, const TCHAR *queueName, Dali::WUAction action, const TCHAR *attrQualifiedLabel, const TCHAR *eclSource, const TCHAR *eclPath, const TCHAR *scheduled, const TCHAR *label, int resultLimit, const TCHAR *debugSettings, bool archive, int maxRunTime=0, bool debug=false, bool rawECL=false);
1717
virtual void ExecEclNoRefCount(const TCHAR *clusterName, const TCHAR *queueName, Dali::WUAction action, const TCHAR *attrQualifiedLabel, const TCHAR *eclSource, const TCHAR *eclPath);
1818

1919
virtual void WorkunitCreated(Dali::IWorkunit * src);
@@ -37,6 +37,7 @@ class WLIB_API CEclExec : public CUnknown, public boost::signals::trackable
3737
bool archive;
3838
int maxRunTime;
3939
bool debug;
40+
bool rawECL;
4041
};
4142
static void EclGo(CComPtr<CEclExec> bf, std::pair<std::_tstring, std::_tstring> clusterQueue, std::pair<Dali::WUAction, std::_tstring> actionAttrQualifiedLabel, CString ecl, CString path, CString label, int resultLimit, CString debugSettings, BindLimitStruct bls);
4243
static void EclGoNoRefCount(CEclExec * bf, CString cluster, CString queue, Dali::WUAction action, CString attrQualifiedLabel, CString ecl, CString path);

0 commit comments

Comments
 (0)