123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533 |
- /*##############################################################################
- HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- ############################################################################## */
- #include "xslprocessor.hpp"
- // ===========================================================================
- EspInclude(common);
- ESPStruct [nil_remove] ECLException
- {
- string Source;
- string Severity;
- int Code;
- string Message;
- string FileName;
- int LineNo;
- int Column;
- };
- // ===========================================================================
- ESPStruct [nil_remove] ECLSchemaItem
- {
- string ColumnName;
- string ColumnType;
- int ColumnTypeCode;
- bool isConditional(false);
- };
- // ===========================================================================
- ESPStruct [nil_remove] ECLResult
- {
- string Name;
- int Sequence;
- string Value;
- string Link;
- string FileName;
- bool IsSupplied;
- bool ShowFileContent(true);
- int64 Total;
- ESParray<ESPstruct ECLSchemaItem> ECLSchemas;
- [min_ver("1.39")] string XmlSchema;
- };
- // ===========================================================================
- ESPStruct [nil_remove] ECLTimingData
- {
- string Name;
- int GraphNum;
- int SubGraphNum;
- int GID;
- int Min;
- int MS;
- };
- // ===========================================================================
- ESPStruct [nil_remove] ECLGraph
- {
- string Name;
- string Label;
- string Type;
- bool Running;
- [min_ver("1.09")] bool Complete;
- [min_ver("1.14")] bool Failed;
- int64 RunningId;
- };
- // ===========================================================================
- ESPStruct [nil_remove] ECLGraphEx
- {
- string Name;
- string Label;
- string Type;
- string Graph;
- bool Running;
- int64 RunningId;
- [min_ver("1.21")] bool Complete;
- [min_ver("1.21")] bool Failed;
- };
- // ===========================================================================
- ESPStruct [nil_remove] ECLSourceFile
- {
- [min_ver("1.01")] string FileCluster;
- string Name;
- [min_ver("1.12")] bool IsSuperFile;
- [min_ver("1.27")] int Subs;
- int Count;
- [min_ver("1.27")] ESParray<ESPstruct ECLSourceFile> ECLSourceFiles;
- };
- // ===========================================================================
- ESPStruct [nil_remove] ECLTimer
- {
- string Name;
- string Value;
- int count;
- [min_ver("1.20")] string GraphName;
- [min_ver("1.20")] int SubGraphId;
- };
- // ===========================================================================
- ESPStruct [nil_remove] ECLHelpFile
- {
- string Name;
- string Type;
- [min_ver("1.32")] string IPAddress;
- [min_ver("1.32")] string Description;
- [min_ver("1.43")] int64 FileSize;
- [min_ver("1.44")] unsigned PID(0);
- };
- // ===========================================================================
- ESPStruct [nil_remove] ECLQuery
- {
- string Text;
- string Cpp;
- string ResTxt;
- string Dll;
- string ThorLog;
- [min_ver("1.35")] string QueryMainDefinition;
- };
- // ===========================================================================
- ESPStruct [nil_remove] DebugValue
- {
- string Name;
- string Value;
- };
- ESPStruct [nil_remove] WUActionResult
- {
- string Wuid;
- string Action;
- string Result;
- };
- ESPStruct [nil_remove] ApplicationValue
- {
- string Application;
- string Name;
- string Value;
- };
- ESPStruct [nil_remove] ECLWorkflow
- {
- string WFID;
- string EventName("");
- string EventText("");
- int Count(-1);
- int CountRemaining(-1);
- };
- ESPStruct [nil_remove] ThorLogInfo
- {
- string ProcessName;
- string ClusterGroup;
- string LogDate;
- int NumberSlaves;
- };
- ESPStruct [nil_remove] ECLWorkunit
- {
- string Wuid;
- string Owner;
- string Cluster;
- [min_ver("1.07")] string RoxieCluster;
- string Jobname;
- string Queue;
- int StateID; //Equiv to workunit::state
- string State; //Equiv to workunit::stateDesc
- string StateEx;
- string Description;
- bool Protected;
- bool Active;
- int Action;
- [min_ver("1.33")] string ActionEx;
- xsdDateTime DateTimeScheduled;
- int PriorityClass;
- int PriorityLevel;
- string Scope;
- string Snapshot;
- int ResultLimit;
- [min_ver("1.01")] bool Archived;
- [min_ver("1.30")] bool IsPausing(false);
- [min_ver("1.30")] bool ThorLCR(false);
- [min_ver("1.01")] int EventSchedule;
- [min_ver("1.02")] bool HaveSubGraphTimings;
- [min_ver("1.28")] string TotalThorTime;
- ESPstruct ECLQuery Query;
- [min_ver("1.03")] ESParray<ESPstruct ECLHelpFile> Helpers;
- ESParray<ESPstruct ECLException> Exceptions;
- ESParray<ESPstruct ECLGraph> Graphs;
- ESParray<ESPstruct ECLSourceFile> SourceFiles;
- ESParray<ESPstruct ECLResult> Results;
- ESParray<ESPstruct ECLResult> Variables;
- ESParray<ESPstruct ECLTimer> Timers;
- ESParray<ESPstruct DebugValue> DebugValues;
- ESParray<ESPstruct ApplicationValue> ApplicationValues;
- [min_ver("1.01")] ESParray<ESPstruct ECLWorkflow> Workflows;
- [min_ver("1.02")] ESParray<ESPstruct ECLTimingData> TimingData;
- [min_ver("1.05")] ESParray<string, AllowedCluster> AllowedClusters;
- [min_ver("1.17")] int ErrorCount;
- [min_ver("1.17")] int WarningCount;
- [min_ver("1.17")] int InfoCount;
- [min_ver("1.17")] int GraphCount;
- [min_ver("1.17")] int SourceFileCount;
- [min_ver("1.17")] int ResultCount;
- [min_ver("1.17")] int VariableCount;
- [min_ver("1.17")] int TimerCount;
- [min_ver("1.17")] bool HasDebugValue;
- [min_ver("1.17")] int ApplicationValueCount;
- [min_ver("1.22")] string XmlParams;
- [min_ver("1.23")] int AccessFlag;
- [min_ver("1.24")] int ClusterFlag;
- [min_ver("1.29")] string HelpersDesc;
- [min_ver("1.29")] string GraphsDesc;
- [min_ver("1.29")] string SourceFilesDesc;
- [min_ver("1.29")] string ResultsDesc;
- [min_ver("1.29")] string VariablesDesc;
- [min_ver("1.29")] string TimersDesc;
- [min_ver("1.29")] string DebugValuesDesc;
- [min_ver("1.29")] string ApplicationValuesDesc;
- [min_ver("1.29")] string WorkflowsDesc;
- [min_ver("1.31")] bool HasArchiveQuery(false);
- [min_ver("1.49")] int64 WUXMLSize;
- [min_ver("1.38")] ESParray<ESPstruct ThorLogInfo> ThorLogList;
- [min_ver("1.47")] ESParray<string, URL> ResourceURLs;
- [min_ver("1.50")] int ResultViewCount;
- [min_ver("1.50")] int ResourceURLCount;
- };
- ESPStruct [nil_remove] WUECLAttribute
- {
- string ModuleName;
- string AttributeName;
- bool IsLocked;
- bool IsCheckedOut;
- bool IsSandbox;
- bool IsOrphaned;
- };
- // ===========================================================================
- ESPStruct NetworkNode
- {
- int Category;
- string id;
- };
- ESPStruct LogicalFileUpload
- {
- int Type;
- string Source;
- string Destination;
- string EventTag;
- };
- // ===========================================================================
- ESPStruct [nil_remove] ECLJob
- {
- string Wuid;
- string Graph;
- string State;
- string StartedDate;
- string FinishedDate;
- string Cluster;
- [min_ver("1.06")] string GraphNum;
- [min_ver("1.06")] string SubGraphNum;
- [min_ver("1.06")] string NumOfRuns;
- [min_ver("1.06")] int Duration;
- };
- ESPStruct [nil_remove] ThorQueue
- {
- string DT;
- string RunningWUs;
- string QueuedWUs;
- string WaitingThors;
- string ConnectedThors;
- string IdledThors;
- string RunningWU1;
- string RunningWU2;
- };
- ESPStruct [nil_remove] ResubmittedWU
- {
- string WUID;
- string ParentWUID;
- };
- ESPrequest [nil_remove] WUCreateRequest
- {
- };
- ESPresponse [exceptions_inline] WUCreateResponse
- {
- ESPstruct ECLWorkunit Workunit;
- };
- ESPrequest [nil_remove] WUDeployWorkunitRequest
- {
- string Cluster;
- string Name;
- int Wait(-1);
- string ObjType;
- string FileName;
- binary Object;
- int ResultLimit;
- string QueryMainDefinition;
- string Snapshot;
- ESParray<ESPstruct NamedValue> DebugValues;
- };
- ESPresponse [exceptions_inline] WUDeployWorkunitResponse
- {
- ESPstruct ECLWorkunit Workunit;
- };
- ESPrequest [nil_remove] WUQueryRequest
- {
- string Wuid;
- [min_ver("1.01")] string Type; //archieved or non-archieved
- string Cluster;
- [min_ver("1.08")] string RoxieCluster;
- string Owner;
- string State;
- string StartDate;
- string EndDate;
- string ECL;
- string Jobname;
- string LogicalFile;
- string LogicalFileSearchType("");
- string ApplicationName;
- string ApplicationKey;
- string ApplicationData;
- string After;
- string Before;
- int Count;
- [min_ver("1.03")] int64 PageSize(0);
- [min_ver("1.03")] int64 PageStartFrom(0);
- [min_ver("1.03")] int64 PageEndAt;
- [min_ver("1.26")] int LastNDays;
- string Sortby;
- bool Descending(false);
- int64 CacheHint;
- };
- ESPresponse [nil_remove, exceptions_inline] WUQueryResponse
- {
- [min_ver("1.01")] string Type(""); //archieved or non-archieved
- string Cluster;
- [min_ver("1.08")] string RoxieCluster;
- string Owner;
- string State;
- string StartDate;
- string EndDate;
- string ECL;
- string Jobname;
- [min_ver("1.01")] string LogicalFile;
- [min_ver("1.01")] string LogicalFileSearchType("");
- string Current;
- string Next;
- int Count(0);
- [min_ver("1.03")] int64 PageSize(0);
- [min_ver("1.03")] int64 PrevPage;
- [min_ver("1.03")] int64 NextPage;
- [min_ver("1.03")] int64 LastPage(-1);
- int NumWUs;
- bool First(true);
- [min_ver("1.03")] int64 PageStartFrom(-1);
- [min_ver("1.03")] int64 PageEndAt;
- [min_ver("1.26")] int LastNDays;
- string Sortby;
- bool Descending(false);
- string BasicQuery;
- string Filters;
- [min_ver("1.41")] int64 CacheHint;
-
- ESParray<ESPstruct ECLWorkunit> Workunits;
- };
- ESPrequest [nil_remove] WUUpdateRequest
- {
- string Wuid;
- int State;
- int StateOrig;
- string Jobname;
- string JobnameOrig;
- string QueryText;
- int Action;
- string Description;
- string DescriptionOrig;
- bool AddDrilldownFields;
- int ResultLimit; //unsigned?
- [http_nillable(0)] bool Protected;
- [http_nillable(0)] bool ProtectedOrig;
- int PriorityClass;
- int PriorityLevel;
- string Scope;
- string ScopeOrig;
- [min_ver("1.05")] string ClusterSelection;
- [min_ver("1.05")] string ClusterOrig;
- [min_ver("1.22")] string XmlParams;
- [min_ver("1.25")] string ThorSlaveIP;
- [min_ver("1.35")] string QueryMainDefinition;
- ESParray<ESPstruct DebugValue> DebugValues;
- ESParray<ESPstruct ApplicationValue> ApplicationValues;
- };
- ESPresponse [exceptions_inline] WUUpdateResponse
- {
- ESPstruct ECLWorkunit Workunit;
- };
- ESPrequest WUDeleteRequest
- {
- ESParray<string> Wuids;
- [min_ver("1.02")] int BlockTillFinishTimer(0);
- };
- ESPresponse [exceptions_inline] WUDeleteResponse
- {
- ESParray<ESPstruct WUActionResult> ActionResults;
- };
- /* html */
- ESPrequest [nil_remove] WUActionRequest
- {
- ESParray<string> Wuids;
- string ActionType;
- string Cluster;
- string Owner;
- string State;
- string StartDate;
- string EndDate;
- string ECL;
- string Jobname;
- string Test;
- string CurrentPage("");
- [min_ver("1.03")] string PageSize("");
- string Sortby;
- bool Descending(false);
- //[min_ver("1.01")] string SashaNetAddress;
- [min_ver("1.01")] string EventServer("");
- [min_ver("1.01")] string EventName("");
- //[min_ver("1.01")] string EventText("");
- [min_ver("1.01")] string PageFrom("");
- [min_ver("1.02")] int BlockTillFinishTimer(0);
- };
- ESPresponse [exceptions_inline] WUActionResponse
- {
- ESParray<ESPstruct WUActionResult> ActionResults;
- };
- ESPrequest WUAbortRequest
- {
- ESParray<string> Wuids;
- [min_ver("1.02")] int BlockTillFinishTimer(0);
- };
- ESPresponse [exceptions_inline] WUAbortResponse
- {
- ESParray<ESPstruct WUActionResult> ActionResults;
- };
- ESPrequest WUProtectRequest
- {
- ESParray<string> Wuids;
- bool Protect(true);
- };
- ESPresponse [exceptions_inline] WUProtectResponse
- {
- ESParray<ESPstruct WUActionResult> ActionResults;
- };
- ESPrequest WUResubmitRequest
- {
- ESParray<string> Wuids;
- [max_ver("1.30")] bool Recompile;
- [min_ver("1.02")] int BlockTillFinishTimer(0);
- bool ResetWorkflow;
- bool CloneWorkunit;
- };
- ESPresponse [exceptions_inline] WUResubmitResponse
- {
- [min_ver("1.40")] ESParray<ESPstruct ResubmittedWU, WU> WUs;
- };
- ESPrequest WURunRequest
- {
- string QuerySet;
- string Query;
- string Wuid;
- bool CloneWorkunit;
- string Cluster;
- int Wait(-1);
- [rows(15)] string Input;
- bool NoRootTag(0);
- ESParray<ESPstruct NamedValue> DebugValues;
- ESParray<ESPstruct NamedValue> Variables;
- };
- ESPresponse [exceptions_inline] WURunResponse
- {
- string Wuid;
- string State;
- string Results;
- };
- ESPrequest WUSubmitRequest
- {
- string Wuid;
- string Cluster;
- string Queue;
- string Snapshot;
- int MaxRunTime;
- [min_ver("1.02")] int BlockTillFinishTimer(0);
- [min_ver("1.19")] bool SyntaxCheck(false);
- bool NotifyCluster(false);
- };
- ESPresponse [exceptions_inline] WUSubmitResponse
- {
- };
- ESPrequest WUScheduleRequest
- {
- string Wuid;
- string Cluster;
- string Queue;
- string Snapshot;
- xsdDateTime When;
- int MaxRunTime;
- };
- ESPresponse [exceptions_inline] WUScheduleResponse
- {
- };
- ESPrequest [nil_remove] WUPushEventRequest
- {
- string EventName("");
- string EventText("");
- };
- ESPresponse [exceptions_inline] WUPushEventResponse
- {
- };
- SCMenum WUINFOType
- {
- WUGRAPHS,
- WUTIMINGS,
- WUACTIONS,
- WURESULTS
- };
- ESPrequest WUInfoRequest
- {
- string Wuid;
- bool TruncateEclTo64k(true);
- [min_ver("1.01")] string Type; //archieved or non-archieved
- [min_ver("1.16")] bool IncludeExceptions(true);
- [min_ver("1.16")] bool IncludeGraphs(true);
- [min_ver("1.16")] bool IncludeSourceFiles(true);
- [min_ver("1.16")] bool IncludeResults(true);
- [min_ver("1.34")] bool IncludeResultsViewNames(false);
- [min_ver("1.16")] bool IncludeVariables(true);
- [min_ver("1.16")] bool IncludeTimers(true);
- [min_ver("1.16")] bool IncludeDebugValues(true);
- [min_ver("1.16")] bool IncludeApplicationValues(true);
- [min_ver("1.16")] bool IncludeWorkflows(true);
- [min_ver("1.39")] bool IncludeXmlSchemas(false);
- [min_ver("1.47")] bool IncludeResourceURLs(false);
- [min_ver("1.16")] bool SuppressResultSchemas(false);
- [min_ver("1.25")] string ThorSlaveIP;
- };
- ESPresponse [exceptions_inline] WUInfoResponse
- {
- ESPstruct ECLWorkunit Workunit;
- int AutoRefresh(0);
- bool CanCompile;
- [min_ver("1.25")] string ThorSlaveIP;
- [min_ver("1.34")] ESParray<string, View> ResultViews;
- };
- ESPrequest WUResultSummaryRequest
- {
- string Wuid;
- int Sequence;
- };
- ESPresponse [exceptions_inline] WUResultSummaryResponse
- {
- string Wuid;
- int Sequence;
- int Format;
- ESPStruct ECLResult Result;
- };
- /* html */
- ESPrequest WULogFileRequest
- {
- string Name;
- string Wuid;
- string Type;
- int Option;
- [min_ver("1.10")] string SlaveIP;
- [min_ver("1.32")] string IPAddress;
- [min_ver("1.32")] string Description;
- [min_ver("1.36")] string QuerySet;
- [min_ver("1.36")] string Query;
- [min_ver("1.38")] string Process;
- [min_ver("1.38")] string ClusterGroup;
- [min_ver("1.38")] string LogDate;
- [min_ver("1.38")] int SlaveNumber(1);
- string PlainText;
- };
- ESPresponse [exceptions_inline] WULogFileResponse
- {
- [min_ver("1.36")] string Wuid;
- [min_ver("1.36")] string QuerySet;
- [min_ver("1.36")] string QueryName;
- [min_ver("1.36")] string QueryId;
- [min_ver("1.36")] string FileName;
- [min_ver("1.38")] string DaliServer;
- [http_content("application/octet-stream")] binary thefile;
- };
- ESPrequest WUResultBinRequest
- {
- string LogicalName;
- string Wuid;
- string ResultName;
- int Sequence;
- string Format("raw");
- int64 Start(0);
- int Count;
- };
- ESPresponse [exceptions_inline] WUResultBinResponse
- {
- string Wuid;
- int Sequence;
- string Name;
- int64 Start;
- int Count;
- int Requested;
- int64 Total;
- [http_content("application/octet-stream")] binary Result;
- string Format;
- };
- ESPrequest WUResultRequest
- {
- string Wuid;
- int Sequence;
- string ResultName;
- string LogicalName;
- string Cluster;
- bool SuppressXmlSchema(0);
- int64 Start(0);
- int Count;
- };
- ESPresponse [exceptions_inline,http_encode(0)] WUResultResponse
- {
- string Wuid;
- int Sequence;
- string LogicalName;
- string Cluster;
- string Name;
- int64 Start;
- int Requested;
- int Count;
- int64 Total;
- [json_inline(1)] string Result;
- };
- ESPrequest WUResultViewRequest
- {
- string Wuid;
- string ViewName;
- int Sequence;
- string ResultName;
- };
- ESPresponse [exceptions_inline] WUResultViewResponse
- {
- string Wuid;
- string ViewName;
- [http_content("text/html")] string Result;
- };
- ESPrequest WUClusterJobQueueXLSRequest
- {
- string Cluster;
- string StartDate;
- string EndDate;
- string ShowType;
- };
- ESPresponse [exceptions_inline] WUClusterJobQueueXLSResponse
- {
- [http_content("application/octet-stream")] binary Result;
- };
- ESPrequest [nil_remove] WUClusterJobQueueLOGRequest
- {
- string Cluster;
- string StartDate;
- string EndDate;
- };
- ESPresponse [exceptions_inline] WUClusterJobQueueLOGResponse
- {
- [http_content("text/xml")] binary thefile;
- };
- ESPrequest WUClusterJobXLSRequest
- {
- string Cluster;
- string StartDate;
- string EndDate;
- bool ShowAll;
- string BusinessStartTime;
- string BusinessEndTime;
- };
- ESPresponse [exceptions_inline] WUClusterJobXLSResponse
- {
- [http_content("application/octet-stream")] binary Result;
- };
- ESPrequest WUClusterJobSummaryXLSRequest
- {
- string Cluster;
- string StartDate;
- string EndDate;
- bool ShowAll;
- string BusinessStartTime;
- string BusinessEndTime;
- };
- ESPresponse [exceptions_inline] WUClusterJobSummaryXLSResponse
- {
- [http_content("application/octet-stream")] binary Result;
- };
- ESPrequest GVCAjaxGraphRequest
- {
- string Name;
- string GraphName;
- [min_ver("1.20")] int SubGraphId;
- [min_ver("1.21")] bool SubGraphOnly;
- };
- ESPresponse GVCAjaxGraphResponse
- {
- string Name;
- string GraphName;
- string GraphType;
- [min_ver("1.20")] int SubGraphId;
- [min_ver("1.21")] bool SubGraphOnly;
- };
- ESPrequest [nil_remove] WUGraphInfoRequest
- {
- string Wuid;
- string Name;
- [min_ver("1.02")] string GID;
- [min_ver("1.15")] int BatchWU;
- };
- ESPresponse [exceptions_inline] WUGraphInfoResponse
- {
- string Wuid;
- string Name;
- [min_ver("1.02")] string GID;
- [min_ver("1.15")] int BatchWU;
- bool Running;
- };
- ESPrequest [nil_remove] WUGVCGraphInfoRequest
- {
- string Wuid;
- string Name;
- string GID;
- [min_ver("1.15")] int BatchWU;
- [min_ver("1.18")] int SubgraphId;
- };
- ESPresponse [exceptions_inline, http_encode(0)] WUGVCGraphInfoResponse
- {
- string Wuid;
- string Name;
- string GID;
- bool Running;
- string TheGraph;
- [min_ver("1.15")] int BatchWU;
- };
- ESPrequest WUGraphTimingRequest
- {
- string Wuid;
- };
- ESPresponse [exceptions_inline] WUGraphTimingResponse
- {
- ESPstruct ECLWorkunit Workunit;
- };
- ESPrequest WUProcessGraphRequest
- {
- string Wuid;
- string Name;
- };
- ESPresponse [encode(0), exceptions_inline] WUProcessGraphResponse
- {
- string theGraph;
- };
- ESPrequest WUGetGraphRequest
- {
- string Wuid;
- [min_ver("1.19")] string GraphName;
- [min_version("1.21")] string SubGraphId;
- };
- ESPresponse [exceptions_inline] WUGetGraphResponse
- {
- ESParray<ESPstruct ECLGraphEx> Graphs;
- };
- ESPrequest WUQueryGetGraphRequest
- {
- string Target;
- string QueryId;
- [min_ver("1.19")] string GraphName;
- [min_version("1.21")] string SubGraphId;
- };
- ESPresponse [exceptions_inline] WUQueryGetGraphResponse
- {
- ESParray<ESPstruct ECLGraphEx> Graphs;
- };
- ESPrequest WUExportRequest
- {
- string Cluster;
- string Owner;
- string State;
- string StartDate;
- string EndDate;
- string ECL;
- string Jobname;
- };
- ESPresponse [exceptions_inline] WUExportResponse
- {
- [http_content("text/xml")] binary ExportData;
- };
- ESPrequest WUWaitRequest
- {
- string Wuid;
- int Wait(-1);
- bool ReturnOnWait(false);
- };
- ESPresponse [exceptions_inline] WUWaitResponse
- {
- int StateID;
- };
- ESPrequest WUSyntaxCheckRequest
- {
- string ECL;
- string ModuleName;
- string AttributeName;
- string Queue;
- string Cluster;
- string Snapshot;
- int TimeToWait(60000);
- [min_ver("1.04")] ESParray<ESPstruct DebugValue> DebugValues;
- };
- ESPresponse [exceptions_inline] WUSyntaxCheckResponse
- {
- ESParray<ESPstruct ECLException> Errors;
- };
- ESPrequest WUCompileECLRequest
- {
- string ECL;
- string ModuleName;
- string AttributeName;
- string Queue;
- string Cluster;
- string Snapshot;
- bool IncludeDependencies(false);
- bool IncludeComplexity;
- int TimeToWait(60000);
- };
- ESPresponse [exceptions_inline] WUCompileECLResponse
- {
- string Complexity;
- ESParray<ESPstruct ECLException> Errors;
- ESParray<ESPstruct WUECLAttribute, ECLAttribute> Dependencies;
- };
- ESPrequest WUJobListRequest
- {
- string Cluster;
- string StartDate;
- string EndDate;
- bool ShowAll;
- int BusinessStartHour;
- int BusinessEndHour;
- };
- ESPresponse [exceptions_inline] WUJobListResponse
- {
- string StartDate;
- string EndDate;
- ESParray<ESPstruct ECLJob> Jobs;
- };
- ESPrequest [nil_remove] WUShowScheduledRequest
- {
- string Cluster("");
- string EventName("");
- string PushEventName("");
- string PushEventText("");
- };
- ESPStruct [nil_remove] ScheduledWU
- {
- string Wuid;
- string Cluster("");
- string EventName("");
- string EventText("");
- string JobName("");
- };
- ESPStruct [nil_remove] ServerInfo
- {
- string Name("");
- string NetAddress("");
- };
- ESPresponse [nil_remove, exceptions_inline] WUShowScheduledResponse
- {
- int ClusterSelected(0);
- string EventName("");
- string PushEventName("");
- string PushEventText("");
- string Query("");
- ESParray<ESPstruct ServerInfo> Clusters;
- ESParray<ESPstruct ScheduledWU> Workunits;
- };
- ESPrequest WUGetDependancyTreesRequest
- {
- string Cluster;
- string Queue;
- string Snapshot;
- string Items;
- [min_ver("1.12")] string TimeoutMilliSec;
- };
- ESPresponse [nil_remove, exceptions_inline] WUGetDependancyTreesResponse
- {
- ESParray<ESPstruct ECLException> Errors;
- [http_content("text/xml")] binary DependancyTrees;
- };
- ESPrequest WUListLocalFileRequiredRequest
- {
- string Wuid;
- };
- ESPresponse [nil_remove, exceptions_inline] WUListLocalFileRequiredResponse
- {
- ESParray<ESPstruct LogicalFileUpload> LocalFileUploads;
- };
- ESPrequest WUAddLocalFileToWorkunitRequest
- {
- string Wuid;
- string Name;
- string Val;
- string DefVal;
- int Type;
- int Length;
- };
- ESPresponse [nil_remove, exceptions_inline] WUAddLocalFileToWorkunitResponse
- {
- string Wuid;
- string Name;
- string Result;
- };
- ESPrequest WUDebugRequest
- {
- string Wuid;
- string Command;
- };
- ESPresponse [exceptions_inline] WUDebugResponse
- {
- string Result;
- };
- ESPrequest WUCopyLogicalFilesRequest
- {
- string Wuid;
- string Cluster;
- bool CopyLocal;
- };
- ESPStruct WULogicalFileCopyInfo
- {
- bool IsIndex;
- string LogicalName;
- string DfuCopyWuid;
- string DfuCopyError;
- ESParray<string> Clusters;
- };
- ESPStruct WUCopyLogicalClusterFileSections
- {
- string ClusterName;
- ESParray<ESPstruct WULogicalFileCopyInfo> OnCluster;
- ESParray<ESPstruct WULogicalFileCopyInfo> NotOnCluster;
- ESParray<ESPstruct WULogicalFileCopyInfo> Foreign;
- ESParray<ESPstruct WULogicalFileCopyInfo> NotFound;
- };
- ESPresponse [exceptions_inline] WUCopyLogicalFilesResponse
- {
- string Wuid;
- ESParray<ESPStruct WUCopyLogicalClusterFileSections, Cluster> ClusterFiles;
- };
- ESPenum WUQueryActivationMode : int
- {
- NoActivate(0, "Do not activate query"),
- Activate(1, "Activate query"),
- ActivateSuspendPrevious(2, "Activate query, suspend previous"),
- ActivateDeletePrevious(3, "Activate query, delete previous")
- };
- ESPrequest [nil_remove] WUPublishWorkunitRequest
- {
- string Wuid;
- string Cluster;
- string JobName;
- int Activate;
- bool NotifyCluster(false);
- int Wait(10000);
- bool NoReload(0);
- bool UpdateWorkUnitName(0);
- string memoryLimit;
- nonNegativeInteger TimeLimit(0);
- nonNegativeInteger WarnTimeLimit(0);
- string Priority;
- string RemoteDali;
- string Comment;
- bool DontCopyFiles(false);
- string SourceProcess;
- bool AllowForeignFiles(true);
- };
- ESPresponse [exceptions_inline] WUPublishWorkunitResponse
- {
- string Wuid;
- string Result;
- string QuerySet;
- string QueryName;
- string QueryId;
- bool ReloadFailed;
- [min_ver("1.39")] bool Suspended;
- [min_ver("1.39")] string ErrorMessage;
- ESParray<ESPStruct WUCopyLogicalClusterFileSections, Cluster> ClusterFiles;
- };
- ESPrequest [nil_remove] WUQueryConfigRequest
- {
- string Target;
- string QueryId;
- int Wait(10000);
- bool NoReload(0);
- string memoryLimit;
- nonNegativeInteger TimeLimit(0);
- nonNegativeInteger WarnTimeLimit(0);
- string Priority;
- string Comment;
- };
- ESPStruct WUQueryConfigResult
- {
- string QueryId;
- };
- ESPresponse [exceptions_inline] WUQueryConfigResponse
- {
- bool ReloadFailed;
- ESParray<ESPStruct WUQueryConfigResult, Result> Results;
- };
- ESPStruct QuerySet
- {
- string QuerySetName;
- };
- ESPrequest WUQuerysetsRequest
- {
- bool test;
- };
- ESPresponse [exceptions_inline] WUQuerysetsResponse
- {
- ESParray<ESPstruct QuerySet> Querysets;
- };
- ESPStruct ClusterQueryState
- {
- string Cluster;
- string State;
- [min_ver("1.46")] string Errors;
- [min_ver("1.47")] bool MixedNodeStates;
- };
- ESPStruct [nil_remove] QuerySetQuery
- {
- string Id;
- string Name;
- string Wuid;
- string Dll;
- bool Suspended;
- ESParray<ESPstruct ClusterQueryState> Clusters;
- string memoryLimit;
- nonNegativeInteger timeLimit;
- nonNegativeInteger warnTimeLimit;
- string priority;
- string Comment;
- [min_ver("1.45")] string QuerySetId;
- [min_ver("1.46")] bool IsLibrary;
- [min_ver("1.46")] bool Activated;
- [min_ver("1.46")] string PublishedBy;
- };
- ESPStruct QuerySetAlias
- {
- string Id;
- string Name;
- };
- ESPenum WUQuerySetFilterType : string
- {
- ALL("All"),
- ID("Id"),
- NAME("Name"),
- ALIAS("Alias"),
- STATUS("Status")
- };
- ESPrequest WUQuerySetDetailsRequest
- {
- string QuerySetName;
- string Filter;
- string ClusterName;
- ESPenum WUQuerySetFilterType FilterType("All");
- };
- ESPresponse [exceptions_inline] WUQuerySetDetailsResponse
- {
- string QuerySetName;
- ESParray<ESPstruct QuerySetQuery> QuerysetQueries;
- ESParray<ESPstruct QuerySetAlias> QuerysetAliases;
- [min_ver("1.37")] string ClusterName;
- [min_ver("1.37")] string Filter;
- [min_ver("1.37")] ESPenum WUQuerySetFilterType FilterType;
- [min_ver("1.37")] ESParray<string> ClusterNames;
- };
- ESPrequest [nil_remove] WUListQueriesRequest
- {
- string QuerySetName;
- string ClusterName;
- int64 MemoryLimitLow;
- int64 MemoryLimitHigh;
- nonNegativeInteger TimeLimitLow;
- nonNegativeInteger TimeLimitHigh;
- nonNegativeInteger WarnTimeLimitLow;
- nonNegativeInteger WarnTimeLimitHigh;
- nonNegativeInteger PriorityLow;
- nonNegativeInteger PriorityHigh;
- [min_ver("1.48")] bool Activated;
- [min_ver("1.48")] bool SuspendedByUser;
- nonNegativeInteger PageSize(0);
- nonNegativeInteger PageStartFrom(0);
- string Sortby;
- bool Descending(false);
- int64 CacheHint;
- };
- ESPresponse [exceptions_inline] WUListQueriesResponse
- {
- int NumberOfQueries;
- int64 CacheHint;
- ESParray<ESPstruct QuerySetQuery> QuerysetQueries;
- };
- ESPrequest WUQueryDetailsRequest
- {
- string QueryId;
- string QuerySet;
- bool IncludeStateOnClusters(false);
- bool IncludeSuperFiles(false);
- };
- ESPStruct QuerySuperFile
- {
- string Name;
- ESParray<string, File> SubFiles;
- };
- ESPresponse [exceptions_inline] WUQueryDetailsResponse
- {
- string QueryId;
- string QuerySet;
- string QueryName;
- string Wuid;
- string Dll;
- bool Suspended;
- [min_ver("1.42")] bool Activated;
- string SuspendedBy;
- [min_ver("1.43")] ESParray<ESPstruct ClusterQueryState> Clusters;
- string PublishedBy;
- string Comment;
- ESParray<string> LogicalFiles;
- [min_ver("1.44")] ESParray<ESPstruct QuerySuperFile, SuperFile> SuperFiles;
- [min_ver("1.46")] bool IsLibrary;
- [min_ver("1.46")] string Priority;
- [min_ver("1.46")] string WUSnapShot; //Label
- [min_ver("1.46")] string CompileTime;
- [min_ver("1.46")] ESParray<string> LibrariesUsed;
- [min_ver("1.46")] int CountGraphs;
- [min_ver("1.46")] ESParray<string> GraphIds;
- };
- ESPrequest WUMultiQuerySetDetailsRequest
- {
- string ClusterName;
- string QuerySetName;
- string Filter;
- ESPenum WUQuerySetFilterType FilterType("All");
- };
- ESPstruct WUQuerySetDetail
- {
- string QuerySetName;
- ESParray<ESPstruct QuerySetQuery> Queries;
- ESParray<ESPstruct QuerySetAlias> Aliases;
- };
- ESPresponse [exceptions_inline] WUMultiQuerySetDetailsResponse
- {
- string ClusterName;
- ESParray<ESPstruct WUQuerySetDetail> Querysets;
- };
- ESPenum QuerySetQueryActionTypes : string
- {
- Suspend("Suspend"),
- Unsuspend("Unsuspend"),
- ToggleSuspend("ToggleSuspend"),
- Activate("Activate"),
- Delete("Delete"),
- RemoveAllAliases("RemoveAllAliases")
- };
- ESPStruct QuerySetQueryClientState
- {
- string Suspended;
- };
- ESPStruct QuerySetQueryActionItem
- {
- string QueryId;
- ESPstruct QuerySetQueryClientState ClientState;
- };
- ESPrequest WUQuerySetQueryActionRequest
- {
- ESPenum QuerySetQueryActionTypes Action;
- string QuerySetName;
- ESParray<ESPstruct QuerySetQueryActionItem, Query> Queries;
- };
- ESPStruct QuerySetQueryActionResult
- {
- string QueryId;
- bool Suspended;
- bool Success;
- int Code;
- string Message;
- };
- ESPresponse [exceptions_inline] WUQuerySetQueryActionResponse
- {
- ESPenum QuerySetQueryActionTypes Action;
- string QuerySetName;
- ESParray<ESPstruct QuerySetQueryActionResult, Result> Results;
- };
- ESPenum QuerySetAliasActionTypes : string
- {
- Deactivate("Deactivate")
- };
- ESPStruct QuerySetAliasActionItem
- {
- string Name;
- };
- ESPrequest WUQuerySetAliasActionRequest
- {
- ESPenum QuerySetAliasActionTypes Action;
- string QuerySetName;
- ESParray<ESPstruct QuerySetAliasActionItem, Alias> Aliases;
- };
- ESPStruct QuerySetAliasActionResult
- {
- string Name;
- bool Success;
- int Code;
- string Message;
- };
- ESPresponse [exceptions_inline] WUQuerySetAliasActionResponse
- {
- ESPenum QuerySetAliasActionTypes Action;
- string QuerySetName;
- ESParray<ESPstruct QuerySetAliasActionResult, Result> Results;
- };
- ESPrequest [nil_remove] WUQuerySetCopyQueryRequest
- {
- string Source;
- string Target;
- string Cluster;
- string DaliServer;
- int Activate;
- bool Overwrite(false);
- bool DontCopyFiles(false);
- int Wait(10000);
- bool NoReload(0);
- string memoryLimit;
- nonNegativeInteger TimeLimit(0);
- nonNegativeInteger WarnTimeLimit(0);
- string priority;
- string Comment;
- string SourceProcess;
- string DestName;
- bool AllowForeignFiles(true);
- };
- ESPresponse [exceptions_inline] WUQuerySetCopyQueryResponse
- {
- string QueryId;
- };
- ESPrequest [nil_remove] WUGetZAPInfoRequest
- {
- string WUID;
- };
- ESPresponse [exceptions_inline] WUGetZAPInfoResponse
- {
- string WUID;
- string ESPIPAddress;
- string ThorIPAddress;
- string BuildVersion;
- string Archive;
- };
- ESPrequest [nil_remove] WUCreateZAPInfoRequest
- {
- string Wuid;
- string ESPIPAddress;
- string ThorIPAddress;
- string BuildVersion;
- string ProblemDescription;
- string WhatChanged;
- string WhereSlow;
- };
- ESPresponse [exceptions_inline] WUCreateZAPInfoResponse
- {
- [http_content("application/octet-stream")] binary thefile;
- };
- ESPservice [
- version("1.50"), default_client_version("1.50"),
- noforms,exceptions_inline("./smc_xslt/exceptions.xslt"),use_method_name] WsWorkunits
- {
- ESPmethod [resp_xsl_default("/esp/xslt/workunits.xslt")] WUQuery(WUQueryRequest, WUQueryResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/wuid.xslt")] WUInfo(WUInfoRequest, WUInfoResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/wuiddetails.xslt")] WUInfoDetails(WUInfoRequest, WUInfoResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/wuid.xslt")] WUGraphTiming(WUGraphTimingRequest, WUGraphTimingResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/graph.xslt")] WUGraphInfo(WUGraphInfoRequest, WUGraphInfoResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/graph_gvc.xslt")] WUGVCGraphInfo(WUGVCGraphInfoRequest, WUGVCGraphInfoResponse);
- ESPmethod[description("Stub for Ajax GVC Graph."), help(""), resp_xsl_default("/esp/xslt/GvcGraph.xslt")] GVCAjaxGraph(GVCAjaxGraphRequest, GVCAjaxGraphResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/result.xslt")] WUResult(WUResultRequest, WUResultResponse);
- ESPmethod WUResultView(WUResultViewRequest, WUResultViewResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/wuid_jobs.xslt")] WUJobList(WUJobListRequest, WUJobListResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/wuaction_results.xslt")] WUAction(WUActionRequest, WUActionResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/scheduledwus.xslt")] WUShowScheduled(WUShowScheduledRequest, WUShowScheduledResponse);
- ESPmethod WUResultSummary(WUResultSummaryRequest, WUResultSummaryResponse);
- ESPmethod WUResultBin(WUResultBinRequest, WUResultBinResponse);
- ESPmethod WUClusterJobQueueXLS(WUClusterJobQueueXLSRequest, WUClusterJobQueueXLSResponse);
- ESPmethod WUClusterJobQueueLOG(WUClusterJobQueueLOGRequest, WUClusterJobQueueLOGResponse);
- ESPmethod WUClusterJobXLS(WUClusterJobXLSRequest, WUClusterJobXLSResponse);
- ESPmethod WUClusterJobSummaryXLS(WUClusterJobSummaryXLSRequest, WUClusterJobSummaryXLSResponse);
- ESPmethod WUCreate(WUCreateRequest, WUCreateResponse);
- ESPmethod WUCreateAndUpdate(WUUpdateRequest, WUUpdateResponse);
- ESPmethod WUUpdate(WUUpdateRequest, WUUpdateResponse);
- ESPmethod WUDelete(WUDeleteRequest, WUDeleteResponse);
- ESPmethod WUSubmit(WUSubmitRequest, WUSubmitResponse);
- ESPmethod WUSchedule(WUScheduleRequest, WUScheduleResponse);
- ESPmethod WUPushEvent(WUPushEventRequest, WUPushEventResponse);
- ESPmethod WUDeployWorkunit(WUDeployWorkunitRequest, WUDeployWorkunitResponse);
- ESPmethod WUAbort(WUAbortRequest, WUAbortResponse);
- ESPmethod WUProtect(WUProtectRequest, WUProtectResponse);
- ESPmethod WUResubmit(WUResubmitRequest, WUResubmitResponse); //????
- ESPmethod WURun(WURunRequest, WURunResponse);
- ESPmethod WUExport(WUExportRequest, WUExportResponse);
- ESPmethod WUWaitCompiled(WUWaitRequest, WUWaitResponse);
- ESPmethod WUWaitComplete(WUWaitRequest, WUWaitResponse);
-
- ESPmethod WUSyntaxCheckECL(WUSyntaxCheckRequest, WUSyntaxCheckResponse);
- ESPmethod WUCompileECL(WUCompileECLRequest, WUCompileECLResponse);
-
- //ESPmethod WUAction(WUActionRequest, WUActionResponse);
- ESPmethod WUFile(WULogFileRequest, WULogFileResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/graphStats.xslt")] WUProcessGraph(WUProcessGraphRequest, WUProcessGraphResponse);
- ESPmethod WUGetGraph(WUGetGraphRequest, WUGetGraphResponse);
- ESPmethod WUQueryGetGraph(WUQueryGetGraphRequest, WUQueryGetGraphResponse);
- ESPmethod WUGetDependancyTrees(WUGetDependancyTreesRequest, WUGetDependancyTreesResponse);
- ESPmethod WUListLocalFileRequired(WUListLocalFileRequiredRequest, WUListLocalFileRequiredResponse);
- ESPmethod WUAddLocalFileToWorkunit(WUAddLocalFileToWorkunitRequest, WUAddLocalFileToWorkunitResponse);
- ESPmethod WUCDebug(WUDebugRequest, WUDebugResponse);
-
- ESPmethod [resp_xsl_default("/esp/xslt/WUPublishWorkunit.xslt")] WUPublishWorkunit(WUPublishWorkunitRequest, WUPublishWorkunitResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/WUQuerysets.xslt")] WUQuerysets(WUQuerysetsRequest, WUQuerysetsResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/WUQuerysetQueries.xslt")] WUQuerysetDetails(WUQuerySetDetailsRequest, WUQuerySetDetailsResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/WUQueryDetails.xslt")] WUQueryDetails(WUQueryDetailsRequest, WUQueryDetailsResponse);
- ESPmethod WUMultiQuerysetDetails(WUMultiQuerySetDetailsRequest, WUMultiQuerySetDetailsResponse);
- ESPmethod WUQuerysetQueryAction(WUQuerySetQueryActionRequest, WUQuerySetQueryActionResponse);
- ESPmethod WUQuerysetAliasAction(WUQuerySetAliasActionRequest, WUQuerySetAliasActionResponse);
- ESPmethod WUQuerysetCopyQuery(WUQuerySetCopyQueryRequest, WUQuerySetCopyQueryResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/WUCopyLogicalFiles.xslt")] WUCopyLogicalFiles(WUCopyLogicalFilesRequest, WUCopyLogicalFilesResponse);
- ESPmethod WUQueryConfig(WUQueryConfigRequest, WUQueryConfigResponse);
- ESPmethod WUListQueries(WUListQueriesRequest, WUListQueriesResponse);
- ESPmethod WUCreateZAPInfo(WUCreateZAPInfoRequest, WUCreateZAPInfoResponse);
- ESPmethod [resp_xsl_default("/esp/xslt/WUZAPInfoForm.xslt")] WUGetZAPInfo(WUGetZAPInfoRequest, WUGetZAPInfoResponse);
- };
- SCMexportdef(WSWU);
- SCMapi(WSWU) IClientWsWorkunits *createWsWorkunitsClient();
|