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
|
#include "yql_facade_run.h"
#include <yql/essentials/providers/pg/provider/yql_pg_provider.h>
#include <yql/essentials/providers/common/provider/yql_provider_names.h>
#include <yql/essentials/providers/common/proto/gateways_config.pb.h>
#include <yql/essentials/providers/common/udf_resolve/yql_outproc_udf_resolver.h>
#include <yql/essentials/providers/common/udf_resolve/yql_simple_udf_resolver.h>
#include <yql/essentials/providers/common/udf_resolve/yql_udf_resolver_with_index.h>
#include <yql/essentials/core/yql_user_data_storage.h>
#include <yql/essentials/core/yql_udf_resolver.h>
#include <yql/essentials/core/yql_udf_index.h>
#include <yql/essentials/core/yql_udf_index_package_set.h>
#include <yql/essentials/core/yql_library_compiler.h>
#include <yql/essentials/core/yql_type_annotation.h>
#include <yql/essentials/core/pg_ext/yql_pg_ext.h>
#include <yql/essentials/core/services/mounts/yql_mounts.h>
#include <yql/essentials/core/services/yql_out_transformers.h>
#include <yql/essentials/core/file_storage/file_storage.h>
#include <yql/essentials/core/file_storage/proto/file_storage.pb.h>
#include <yql/essentials/core/peephole_opt/yql_opt_peephole_physical.h>
#include <yql/essentials/core/facade/yql_facade.h>
#include <yql/essentials/core/url_lister/url_lister_manager.h>
#include <yql/essentials/core/url_preprocessing/url_preprocessing.h>
#include <yql/essentials/minikql/invoke_builtins/mkql_builtins.h>
#include <yql/essentials/minikql/mkql_function_registry.h>
#include <yql/essentials/ast/yql_expr.h>
#include <yql/essentials/parser/pg_wrapper/interface/parser.h>
#include <yql/essentials/parser/pg_catalog/catalog.h>
#include <yql/essentials/public/udf/udf_version.h>
#include <yql/essentials/public/udf/udf_registrator.h>
#include <yql/essentials/public/udf/udf_validate.h>
#include <yql/essentials/public/result_format/yql_result_format_response.h>
#include <yql/essentials/public/result_format/yql_result_format_type.h>
#include <yql/essentials/public/result_format/yql_result_format_data.h>
#include <yql/essentials/utils/failure_injector/failure_injector.h>
#include <yql/essentials/utils/backtrace/backtrace.h>
#include <yql/essentials/utils/log/log.h>
#include <yql/essentials/protos/yql_mount.pb.h>
#include <yql/essentials/protos/pg_ext.pb.h>
#include <yql/essentials/sql/settings/translation_settings.h>
#include <yql/essentials/sql/v1/format/sql_format.h>
#include <library/cpp/resource/resource.h>
#include <library/cpp/yson/node/node_io.h>
#include <library/cpp/yson/writer.h>
#include <google/protobuf/text_format.h>
#include <google/protobuf/arena.h>
#include <util/stream/output.h>
#include <util/stream/file.h>
#include <util/stream/null.h>
#include <util/system/user.h>
#include <util/string/split.h>
#include <util/string/join.h>
#include <util/string/builder.h>
#include <util/generic/vector.h>
#include <util/generic/ptr.h>
#include <util/generic/yexception.h>
#include <util/datetime/base.h>
#ifdef __unix__
#include <sys/resource.h>
#endif
namespace {
const ui32 PRETTY_FLAGS = NYql::TAstPrintFlags::PerLine | NYql::TAstPrintFlags::ShortQuote |
NYql::TAstPrintFlags::AdaptArbitraryContent;
template <typename TMessage>
THolder<TMessage> ParseProtoConfig(const TString& cfgFile) {
auto config = MakeHolder<TMessage>();
TString configData = TFileInput(cfgFile).ReadAll();
using ::google::protobuf::TextFormat;
if (!TextFormat::ParseFromString(configData, config.Get())) {
throw yexception() << "Bad format of config file " << cfgFile;
}
return config;
}
template <typename TMessage>
THolder<TMessage> ParseProtoFromResource(TStringBuf resourceName) {
if (!NResource::Has(resourceName)) {
return {};
}
auto config = MakeHolder<TMessage>();
TString configData = NResource::Find(resourceName);
using ::google::protobuf::TextFormat;
if (!TextFormat::ParseFromString(configData, config.Get())) {
throw yexception() << "Bad format of config " << resourceName;
}
return config;
}
class TOptPipelineConfigurator : public NYql::IPipelineConfigurator {
public:
TOptPipelineConfigurator(NYql::TProgramPtr prg, IOutputStream* planStream, IOutputStream* exprStream, bool withTypes)
: Program_(std::move(prg))
, PlanStream_(planStream)
, ExprStream_(exprStream)
, WithTypes_(withTypes)
{
}
void AfterCreate(NYql::TTransformationPipeline* pipeline) const final {
Y_UNUSED(pipeline);
}
void AfterTypeAnnotation(NYql::TTransformationPipeline* pipeline) const final {
pipeline->Add(NYql::TExprLogTransformer::Sync("OptimizedExpr", NYql::NLog::EComponent::Core, NYql::NLog::ELevel::TRACE),
"OptTrace", NYql::TIssuesIds::CORE, "OptTrace");
}
void AfterOptimize(NYql::TTransformationPipeline* pipeline) const final {
if (ExprStream_) {
pipeline->Add(NYql::TExprOutputTransformer::Sync(Program_->ExprRoot(), ExprStream_, WithTypes_), "AstOutput");
}
if (PlanStream_) {
pipeline->Add(NYql::TPlanOutputTransformer::Sync(PlanStream_, Program_->GetPlanBuilder(), Program_->GetOutputFormat()), "PlanOutput");
}
}
private:
NYql::TProgramPtr Program_;
IOutputStream* PlanStream_;
IOutputStream* ExprStream_;
bool WithTypes_;
};
class TPeepHolePipelineConfigurator : public NYql::IPipelineConfigurator {
public:
TPeepHolePipelineConfigurator() {
}
void AfterCreate(NYql::TTransformationPipeline* pipeline) const final {
Y_UNUSED(pipeline);
}
void AfterTypeAnnotation(NYql::TTransformationPipeline* pipeline) const final {
pipeline->Add(NYql::TExprLogTransformer::Sync("OptimizedExpr", NYql::NLog::EComponent::Core, NYql::NLog::ELevel::TRACE),
"OptTrace", NYql::TIssuesIds::CORE, "OptTrace");
}
void AfterOptimize(NYql::TTransformationPipeline* pipeline) const final {
pipeline->Add(NYql::MakePeepholeOptimization(pipeline->GetTypeAnnotationContext()), "PeepHole");
}
};
} // unnamed
namespace NYql {
TFacadeRunOptions::TFacadeRunOptions() {
User = GetUsername();
}
TFacadeRunOptions::~TFacadeRunOptions() {
}
void TFacadeRunOptions::InitLogger() {
if (Verbosity != LOG_DEF_PRIORITY) {
NYql::NLog::ELevel level = NYql::NLog::ELevelHelpers::FromInt(Verbosity);
NYql::NLog::EComponentHelpers::ForEach([level](NYql::NLog::EComponent c) {
NYql::NLog::YqlLogger().SetComponentLevel(c, level);
});
}
if (TraceOptStream) {
NYql::NLog::YqlLogger().SetComponentLevel(NYql::NLog::EComponent::Core, NYql::NLog::ELevel::TRACE);
NYql::NLog::YqlLogger().SetComponentLevel(NYql::NLog::EComponent::CoreEval, NYql::NLog::ELevel::TRACE);
NYql::NLog::YqlLogger().SetComponentLevel(NYql::NLog::EComponent::CorePeepHole, NYql::NLog::ELevel::TRACE);
} else if (ShowLog) {
NYql::NLog::YqlLogger().SetComponentLevel(NYql::NLog::EComponent::Core, NYql::NLog::ELevel::DEBUG);
}
}
void TFacadeRunOptions::PrintInfo(const TString& msg) {
if (!NoDebug && Verbosity >= TLOG_INFO) {
Cerr << msg << Endl;
}
}
void TFacadeRunOptions::Parse(int argc, const char *argv[]) {
NLastGetopt::TOpts opts = NLastGetopt::TOpts::Default();
opts.AddHelpOption();
opts.AddLongOption('p', "program", "Program file").Required().RequiredArgument("FILE")
.Handler1T<TString>([this](const TString& file) {
ProgramFile = file;
if (ProgramFile == "-") {
ProgramFile = "-stdin-";
ProgramText = Cin.ReadAll();
} else {
ProgramText = TFileInput(ProgramFile).ReadAll();
}
User = GetUsername();
});
opts.AddLongOption('s', "sql", "Program is SQL query").NoArgument().StoreValue(&ProgramType, EProgramType::Sql);
if (PgSupport) {
opts.AddLongOption("pg", "Program has PG syntax").NoArgument().StoreValue(&ProgramType, EProgramType::Pg);
opts.AddLongOption("pg-ext", "pg extensions config file").Optional().RequiredArgument("FILE")
.Handler1T<TString>([this](const TString& file) {
PgExtConfig = ParseProtoConfig<NProto::TPgExtensions>(file);
});
}
opts.AddLongOption('f', "file", "Additional files").RequiredArgument("name@path")
.KVHandler([this](TString name, TString path) {
if (name.empty() || path.empty()) {
throw yexception() << "Incorrect file mapping, expected form name@path, e.g. MyFile@file.txt";
}
auto& entry = DataTable[NYql::TUserDataKey::File(NYql::GetDefaultFilePrefix() + name)];
entry.Type = NYql::EUserDataType::PATH;
entry.Data = path;
}, '@');
opts.AddLongOption('U', "url", "Additional urls").RequiredArgument("name@path")
.KVHandler([this](TString name, TString url) {
if (name.empty() || url.empty()) {
throw yexception() << "url mapping, expected form name@url, e.g. MyUrl@http://example.com/file";
}
auto& entry = DataTable[NYql::TUserDataKey::File(NYql::GetDefaultFilePrefix() + name)];
entry.Type = NYql::EUserDataType::URL;
entry.Data = url;
}, '@');
opts.AddLongOption('m', "mounts", "Mount points config file.").Optional().RequiredArgument("FILE")
.Handler1T<TString>([this](const TString& file) {
MountConfig = ParseProtoConfig<NYqlMountConfig::TMountConfig>(file);
});
opts.AddLongOption("params-file", "Query parameters values in YSON format").Optional().RequiredArgument("FILE")
.Handler1T<TString>([this](const TString& file) {
Params = TFileInput(file).ReadAll();
});
opts.AddLongOption('G', "gateways", "Used gateways").DefaultValue(JoinSeq(",", SupportedGateways_))
.Handler1T<TString>([this](const TString& gateways) {
::StringSplitter(gateways).Split(',').Consume([&](const TStringBuf& val) {
if (!SupportedGateways_.contains(val)) {
throw yexception() << "Unsupported gateway \"" << val << '"';
}
GatewayTypes.emplace(val);
});
});
opts.AddLongOption("gateways-cfg", "Gateways configuration file").Optional().RequiredArgument("FILE")
.Handler1T<TString>([this](const TString& file) {
GatewaysConfig = ParseProtoConfig<TGatewaysConfig>(file);
});
opts.AddLongOption("fs-cfg", "Fs configuration file").Optional().RequiredArgument("FILE")
.Handler1T<TString>([this](const TString& file) {
FsConfig = MakeHolder<TFileStorageConfig>();
LoadFsConfigFromFile(file, *FsConfig);
});
opts.AddLongOption('u', "udf", "Load shared library with UDF by given path").AppendTo(&UdfsPaths);
opts.AddLongOption("udfs-dir", "Load all shared libraries with UDFs found in given directory")
.Handler1T<TString>([this](const TString& dir) {
NKikimr::NMiniKQL::FindUdfsInDir(dir, &UdfsPaths);
});
opts.AddLongOption("udf-resolver", "Path to udf-resolver").Optional().RequiredArgument("PATH").StoreResult(&UdfResolverPath);
opts.AddLongOption("udf-resolver-filter-syscalls", "Filter syscalls in udf resolver").Optional().NoArgument().SetFlag(&UdfResolverFilterSyscalls);
opts.AddLongOption("scan-udfs", "Scan specified udfs with external udf-resolver to use static function registry").NoArgument().SetFlag(&ScanUdfs);
opts.AddLongOption("parse-only", "Exit after program has been parsed").NoArgument().StoreValue(&Mode, ERunMode::Parse);
opts.AddLongOption("compile-only", "Exit after program has been compiled").NoArgument().StoreValue(&Mode, ERunMode::Compile);
opts.AddLongOption("validate", "Exit after program has been validated").NoArgument().StoreValue(&Mode, ERunMode::Validate);
opts.AddLongOption("lineage", "Exit after data lineage has been calculated").NoArgument().StoreValue(&Mode, ERunMode::Lineage);
opts.AddLongOption('O',"optimize", "Optimize expression").NoArgument().StoreValue(&Mode, ERunMode::Optimize);
opts.AddLongOption('R',"run", "Run expression using input/output tables").NoArgument().StoreValue(&Mode, ERunMode::Run);
opts.AddLongOption('D', "discover", "Discover tables in the program").NoArgument().StoreValue(&Mode, ERunMode::Discover);
opts.AddLongOption("peephole", "Perform peephole stage of expression using input/output tables").NoArgument().StoreValue(&Mode, ERunMode::Peephole);
opts.AddLongOption('L', "show-log", "Show transformation log").Optional().NoArgument().SetFlag(&ShowLog);
opts.AddLongOption('v', "verbosity", "Log verbosity level").Optional().RequiredArgument("LEVEL").StoreResult(&Verbosity);
opts.AddLongOption("print-ast", "Print AST after loading").NoArgument().SetFlag(&PrintAst);
opts.AddLongOption("print-expr", "Print rebuild AST before execution").NoArgument()
.Handler0([this]() {
if (!ExprStream) {
ExprStream = &Cout;
}
});
opts.AddLongOption("with-types", "Print types annotation").NoArgument().SetFlag(&WithTypes);
opts.AddLongOption("trace-opt", "Print AST in the begin of each transformation").NoArgument()
.Handler0([this]() {
TraceOptStream = &Cerr;
});
opts.AddLongOption("expr-file", "Print AST to that file instead of stdout").Optional().RequiredArgument("FILE")
.Handler1T<TString>([this](const TString& file) {
ExprStreamHolder = MakeHolder<TFixedBufferFileOutput>(file);
ExprStream = ExprStreamHolder.Get();
});
opts.AddLongOption("print-result", "Print program execution result to stdout").NoArgument()
.Handler0([this]() {
if (!ResultStream) {
ResultStream = &Cout;
}
});
opts.AddLongOption("format", "Results format")
.Optional()
.RequiredArgument("STR")
.Choices(THashSet<TString>{"text", "binary", "pretty"})
.Handler1T<TString>([this](const TString& val) {
if (val == "text") {
ResultsFormat = NYson::EYsonFormat::Text;
} else if (val == "binary") {
ResultsFormat = NYson::EYsonFormat::Binary;
} else if (val == "pretty") {
ResultsFormat = NYson::EYsonFormat::Pretty;
} else {
throw yexception() << "Unknown result format " << val;
}
});
opts.AddLongOption("result-file", "Print program execution result to file").Optional().RequiredArgument("FILE")
.Handler1T<TString>([this](const TString& file) {
ResultStreamHolder = MakeHolder<TFixedBufferFileOutput>(file);
ResultStream = ResultStreamHolder.Get();
});
opts.AddLongOption('P',"trace-plan", "Print plan before execution").NoArgument()
.Handler0([this]() {
if (!PlanStream) {
PlanStream = &Cerr;
}
});
opts.AddLongOption("plan-file", "Print program plan to file").Optional().RequiredArgument("FILE")
.Handler1T<TString>([this](const TString& file) {
PlanStreamHolder = MakeHolder<TFixedBufferFileOutput>(file);
PlanStream = PlanStreamHolder.Get();
});
opts.AddLongOption("err-file", "Print validate/optimize/runtime errors to file")
.Handler1T<TString>([this](const TString& file) {
ErrStreamHolder = MakeHolder<TFixedBufferFileOutput>(file);
ErrStream = ErrStreamHolder.Get();
});
opts.AddLongOption("full-expr", "Avoid buffering of expr/plan").NoArgument().SetFlag(&FullExpr);
opts.AddLongOption("mem-limit", "Set memory limit in megabytes")
.Handler1T<ui32>(0, [](ui32 memLimit) {
if (memLimit) {
#ifdef __unix__
auto memLimitBytes = memLimit * 1024 * 1024;
struct rlimit rl;
if (getrlimit(RLIMIT_AS, &rl)) {
throw TSystemError() << "Cannot getrlimit(RLIMIT_AS)";
}
rl.rlim_cur = memLimitBytes;
if (setrlimit(RLIMIT_AS, &rl)) {
throw TSystemError() << "Cannot setrlimit(RLIMIT_AS) to " << memLimitBytes << " bytes";
}
#else
throw yexception() << "Memory limit can not be set on this platfrom";
#endif
}
});
opts.AddLongOption("validate-mode", "Validate udf mode, available values: " + NUdf::ValidateModeAvailables())
.DefaultValue(NUdf::ValidateModeAsStr(NUdf::EValidateMode::Greedy))
.Handler1T<TString>([this](const TString& mode) {
ValidateMode = NUdf::ValidateModeByStr(mode);
});
opts.AddLongOption("stat", "Print execution statistics").Optional().OptionalArgument("FILE")
.Handler1T<TString>([this](const TString& file) {
if (file) {
StatStreamHolder = MakeHolder<TFileOutput>(file);
StatStream = StatStreamHolder.Get();
} else {
StatStream = &Cerr;
}
});
opts.AddLongOption("full-stat", "Output full execution statistics").Optional().NoArgument().SetFlag(&FullStatistics);
opts.AddLongOption("sql-flags", "SQL translator pragma flags").SplitHandler(&SqlFlags, ',');
opts.AddLongOption("syntax-version", "SQL syntax version").StoreResult(&SyntaxVersion).DefaultValue(1);
opts.AddLongOption("ansi-lexer", "Use ansi lexer").NoArgument().SetFlag(&AnsiLexer);
opts.AddLongOption("assume-ydb-on-slash", "Assume YDB provider if cluster name starts with '/'").NoArgument().SetFlag(&AssumeYdbOnClusterWithSlash);
opts.AddLongOption("test-antlr4", "Check antlr4 parser").NoArgument().SetFlag(&TestAntlr4);
opts.AddLongOption("with-final-issues", "Include some final messages (like statistic) in issues").NoArgument().SetFlag(&WithFinalIssues);
if (FailureInjectionSupport) {
opts.AddLongOption("failure-inject", "Activate failure injection")
.Optional()
.RequiredArgument("INJECTION_NAME=FAIL_COUNT or INJECTION_NAME=SKIP_COUNT/FAIL_COUNT")
.KVHandler([](TString name, TString value) {
TFailureInjector::Activate();
TStringBuf fail = value;
TStringBuf skip;
if (TStringBuf(value).TrySplit('/', skip, fail)) {
TFailureInjector::Set(name, FromString<ui32>(skip), FromString<ui32>(fail));
} else {
TFailureInjector::Set(name, 0, FromString<ui32>(fail));
}
});
}
opts.SetFreeArgsMax(0);
for (auto& ext: OptExtenders_) {
ext(opts);
}
auto res = NLastGetopt::TOptsParseResult(&opts, argc, argv);
for (auto& handle: OptHandlers_) {
handle(res);
}
if (Mode >= ERunMode::Validate && GatewayTypes.empty()) {
throw yexception() << "At least one gateway from the list " << JoinSeq(",", SupportedGateways_).Quote() << " must be specified";
}
if (!GatewaysConfig) {
GatewaysConfig = ParseProtoFromResource<TGatewaysConfig>("gateways.conf");
}
if (GatewaysConfig && GatewaysConfig->HasSqlCore()) {
SqlFlags.insert(GatewaysConfig->GetSqlCore().GetTranslationFlags().begin(), GatewaysConfig->GetSqlCore().GetTranslationFlags().end());
}
if (!FsConfig) {
FsConfig = MakeHolder<TFileStorageConfig>();
if (NResource::Has("fs.conf")) {
LoadFsConfigFromResource("fs.conf", *FsConfig);
}
}
}
int TFacadeRunner::Main(int argc, const char *argv[]) {
NYql::NBacktrace::RegisterKikimrFatalActions();
NYql::NBacktrace::EnableKikimrSymbolize();
NYql::NLog::YqlLoggerScope logger(&Cerr);
try {
return DoMain(argc, argv);
}
catch (...) {
Cerr << CurrentExceptionMessage() << Endl;
return 1;
}
}
int TFacadeRunner::DoMain(int argc, const char *argv[]) {
Y_UNUSED(NUdf::GetStaticSymbols());
RunOptions_.Parse(argc, argv);
if (!RunOptions_.NoDebug) {
Cerr << Name_ << " ABI version: " << NKikimr::NUdf::CurrentAbiVersionStr() << Endl;
}
RunOptions_.InitLogger();
if (RunOptions_.PgSupport) {
ClusterMapping_["pg_catalog"] = PgProviderName;
ClusterMapping_["information_schema"] = PgProviderName;
NPg::SetSqlLanguageParser(NSQLTranslationPG::CreateSqlLanguageParser());
NPg::LoadSystemFunctions(*NSQLTranslationPG::CreateSystemFunctionsParser());
if (RunOptions_.PgExtConfig) {
TVector<NPg::TExtensionDesc> extensions;
PgExtensionsFromProto(*RunOptions_.PgExtConfig, extensions);
NPg::RegisterExtensions(extensions, false,
*NSQLTranslationPG::CreateExtensionSqlParser(),
NKikimr::NMiniKQL::CreateExtensionLoader().get());
}
NPg::GetSqlLanguageParser()->Freeze();
}
FuncRegistry_ = NKikimr::NMiniKQL::CreateFunctionRegistry(&NYql::NBacktrace::KikimrBackTrace,
NKikimr::NMiniKQL::CreateBuiltinRegistry(), true, RunOptions_.UdfsPaths);
TExprContext ctx;
if (RunOptions_.PgSupport) {
ctx.NextUniqueId = NPg::GetSqlLanguageParser()->GetContext().NextUniqueId;
}
IModuleResolver::TPtr moduleResolver;
if (RunOptions_.MountConfig) {
TModulesTable modules;
FillUserDataTableFromFileSystem(*RunOptions_.MountConfig, RunOptions_.DataTable);
if (!CompileLibraries(RunOptions_.DataTable, ctx, modules)) {
*RunOptions_.ErrStream << "Errors on compile libraries:" << Endl;
ctx.IssueManager.GetIssues().PrintTo(*RunOptions_.ErrStream);
return -1;
}
moduleResolver = std::make_shared<TModuleResolver>(std::move(modules), ctx.NextUniqueId, ClusterMapping_, RunOptions_.SqlFlags, RunOptions_.Mode >= ERunMode::Validate);
} else {
if (!GetYqlDefaultModuleResolver(ctx, moduleResolver, ClusterMapping_, RunOptions_.Mode >= ERunMode::Validate)) {
*RunOptions_.ErrStream << "Errors loading default YQL libraries:" << Endl;
ctx.IssueManager.GetIssues().PrintTo(*RunOptions_.ErrStream);
return -1;
}
}
TExprContext::TFreezeGuard freezeGuard(ctx);
if (RunOptions_.Mode >= ERunMode::Validate) {
std::vector<NFS::IDownloaderPtr> downloaders;
for (auto& factory: FsDownloadFactories_) {
downloaders.push_back(factory());
}
FileStorage_ = WithAsync(CreateFileStorage(*RunOptions_.FsConfig, downloaders));
}
IUdfResolver::TPtr udfResolver;
TUdfIndex::TPtr udfIndex;
if (FileStorage_ && RunOptions_.ScanUdfs) {
if (!RunOptions_.UdfResolverPath) {
Cerr << "udf-resolver path must be specified when use 'scan-udfs'";
return -1;
}
udfResolver = NCommon::CreateOutProcUdfResolver(FuncRegistry_.Get(), FileStorage_, RunOptions_.UdfResolverPath, {}, {}, RunOptions_.UdfResolverFilterSyscalls, {});
RunOptions_.PrintInfo(TStringBuilder() << TInstant::Now().ToStringLocalUpToSeconds() << " Udf scanning started for " << RunOptions_.UdfsPaths.size() << " udfs ...");
udfIndex = new TUdfIndex();
LoadRichMetadataToUdfIndex(*udfResolver, RunOptions_.UdfsPaths, false, TUdfIndex::EOverrideMode::RaiseError, *udfIndex);
RunOptions_.PrintInfo(TStringBuilder() << TInstant::Now().ToStringLocalUpToSeconds() << " UdfIndex done.");
udfResolver = NCommon::CreateUdfResolverWithIndex(udfIndex, udfResolver, FileStorage_);
RunOptions_.PrintInfo(TStringBuilder() << TInstant::Now().ToStringLocalUpToSeconds() << " Udfs scanned");
} else {
udfResolver = FileStorage_ && RunOptions_.UdfResolverPath
? NCommon::CreateOutProcUdfResolver(FuncRegistry_.Get(), FileStorage_, RunOptions_.UdfResolverPath, {}, {}, RunOptions_.UdfResolverFilterSyscalls, {})
: NCommon::CreateSimpleUdfResolver(FuncRegistry_.Get(), FileStorage_, true);
}
TVector<TDataProviderInitializer> dataProvidersInit;
if (RunOptions_.PgSupport) {
dataProvidersInit.push_back(GetPgDataProviderInitializer());
}
for (auto& factory: ProviderFactories_) {
dataProvidersInit.push_back(factory());
}
TVector<IUrlListerPtr> urlListers;
for (auto& factory: UrlListerFactories_) {
urlListers.push_back(factory());
}
TProgramFactory factory(RunOptions_.UseRepeatableRandomAndTimeProviders, FuncRegistry_.Get(), ctx.NextUniqueId, dataProvidersInit, Name_);
factory.AddUserDataTable(RunOptions_.DataTable);
factory.SetModules(moduleResolver);
factory.SetFileStorage(FileStorage_);
if (RunOptions_.GatewaysConfig && RunOptions_.GatewaysConfig->HasFs()) {
factory.SetUrlPreprocessing(new NYql::TUrlPreprocessing(*RunOptions_.GatewaysConfig));
}
factory.SetUdfIndex(udfIndex, new TUdfIndexPackageSet());
factory.SetUdfResolver(udfResolver);
factory.SetGatewaysConfig(RunOptions_.GatewaysConfig.Get());
factory.SetCredentials(Credentials_);
factory.EnableRangeComputeFor();
if (!urlListers.empty()) {
factory.SetUrlListerManager(MakeUrlListerManager(urlListers));
}
return RunProgram(factory);
}
int TFacadeRunner::RunProgram(TProgramFactory& factory) {
TProgramPtr program = factory.Create(RunOptions_.ProgramFile, RunOptions_.ProgramText);;
if (RunOptions_.Params) {
program->SetParametersYson(RunOptions_.Params);
}
if (RunOptions_.EnableResultPosition) {
program->EnableResultPosition();
}
if (ProgressWriter_) {
program->SetProgressWriter(ProgressWriter_);
}
program->SetUseTableMetaFromGraph(RunOptions_.UseMetaFromGrpah);
program->SetValidateOptions(RunOptions_.ValidateMode);
bool fail = false;
if (RunOptions_.ProgramType != EProgramType::SExpr) {
RunOptions_.PrintInfo("Parse SQL...");
google::protobuf::Arena arena;
NSQLTranslation::TTranslationSettings settings;
settings.Arena = &arena;
settings.PgParser = EProgramType::Pg == RunOptions_.ProgramType;
settings.ClusterMapping = ClusterMapping_;
settings.Flags = RunOptions_.SqlFlags;
settings.SyntaxVersion = RunOptions_.SyntaxVersion;
settings.AnsiLexer = RunOptions_.AnsiLexer;
settings.TestAntlr4 = RunOptions_.TestAntlr4;
settings.V0Behavior = NSQLTranslation::EV0Behavior::Report;
settings.AssumeYdbOnClusterWithSlash = RunOptions_.AssumeYdbOnClusterWithSlash;
if (ERunMode::Discover == RunOptions_.Mode) {
settings.Mode = NSQLTranslation::ESqlMode::DISCOVERY;
}
if (!program->ParseSql(settings)) {
program->PrintErrorsTo(*RunOptions_.ErrStream);
fail = true;
}
if (!fail && RunOptions_.TestSqlFormat && 1 == RunOptions_.SyntaxVersion) {
TString formattedProgramText;
NYql::TIssues issues;
auto formatter = NSQLFormat::MakeSqlFormatter(settings);
if (!formatter->Format(RunOptions_.ProgramText, formattedProgramText, issues)) {
*RunOptions_.ErrStream << "Format failed" << Endl;
issues.PrintTo(*RunOptions_.ErrStream);
return -1;
}
auto frmProgram = factory.Create("formatted SQL", formattedProgramText);
if (!frmProgram->ParseSql(settings)) {
frmProgram->PrintErrorsTo(*RunOptions_.ErrStream);
return -1;
}
TStringStream srcQuery, frmQuery;
program->AstRoot()->PrettyPrintTo(srcQuery, PRETTY_FLAGS);
frmProgram->AstRoot()->PrettyPrintTo(frmQuery, PRETTY_FLAGS);
if (srcQuery.Str() != frmQuery.Str()) {
*RunOptions_.ErrStream << "source query's AST and formatted query's AST are not same" << Endl;
return -1;
}
}
} else {
RunOptions_.PrintInfo("Parse YQL...");
if (!program->ParseYql()) {
program->PrintErrorsTo(*RunOptions_.ErrStream);
fail = true;
}
}
if (RunOptions_.TraceOptStream) {
if (auto ast = program->GetQueryAst()) {
*RunOptions_.TraceOptStream << *ast << Endl;
}
}
if (fail) {
return -1;
}
if (RunOptions_.PrintAst) {
program->AstRoot()->PrettyPrintTo(Cout, PRETTY_FLAGS);
}
if (ERunMode::Parse == RunOptions_.Mode) {
return 0;
}
RunOptions_.PrintInfo("Compile program...");
if (!program->Compile(RunOptions_.User)) {
program->PrintErrorsTo(*RunOptions_.ErrStream);
fail = true;
}
if (RunOptions_.TraceOptStream) {
program->Print(RunOptions_.TraceOptStream, nullptr);
}
if (fail) {
return -1;
}
if (ERunMode::Compile == RunOptions_.Mode) {
if (RunOptions_.ExprStream) {
auto baseAst = ConvertToAst(*program->ExprRoot(), program->ExprCtx(), NYql::TExprAnnotationFlags::None, true);
baseAst.Root->PrettyPrintTo(*RunOptions_.ExprStream, PRETTY_FLAGS);
}
return 0;
}
auto defOptConfig = TOptPipelineConfigurator(program, RunOptions_.FullExpr ? RunOptions_.PlanStream : nullptr, RunOptions_.FullExpr ? RunOptions_.ExprStream : nullptr, RunOptions_.WithTypes);
IPipelineConfigurator* optConfig = OptPipelineConfigurator_ ? OptPipelineConfigurator_ : &defOptConfig;
TProgram::TStatus status = TProgram::TStatus::Ok;
if (ERunMode::Peephole == RunOptions_.Mode) {
RunOptions_.PrintInfo("Peephole...");
auto defConfig = TPeepHolePipelineConfigurator();
IPipelineConfigurator* config = PeepholePipelineConfigurator_ ? PeepholePipelineConfigurator_ : &defConfig;
status = program->OptimizeWithConfig(RunOptions_.User, *config);
if (RunOptions_.ExprStream && program->ExprRoot()) {
auto ast = ConvertToAst(*program->ExprRoot(), program->ExprCtx(), RunOptions_.WithTypes ? TExprAnnotationFlags::Types : TExprAnnotationFlags::None, true);
ui32 prettyFlags = TAstPrintFlags::ShortQuote;
if (!RunOptions_.WithTypes) {
prettyFlags |= TAstPrintFlags::PerLine;
}
ast.Root->PrettyPrintTo(*RunOptions_.ExprStream, prettyFlags);
}
} else if (ERunMode::Run == RunOptions_.Mode) {
RunOptions_.PrintInfo("Run program...");
status = program->RunWithConfig(RunOptions_.User, *optConfig);
} else if (ERunMode::Optimize == RunOptions_.Mode) {
RunOptions_.PrintInfo("Optimize program...");
status = program->OptimizeWithConfig(RunOptions_.User, *optConfig);
} else if (ERunMode::Validate == RunOptions_.Mode) {
RunOptions_.PrintInfo("Validate program...");
status = program->Validate(RunOptions_.User, RunOptions_.ExprStream, RunOptions_.WithTypes);
} else if (ERunMode::Discover == RunOptions_.Mode) {
RunOptions_.PrintInfo("Discover program...");
status = program->Discover(RunOptions_.User);
} else if (ERunMode::Lineage == RunOptions_.Mode) {
RunOptions_.PrintInfo("Calculating lineage in program...");
status = program->LineageWithConfig(RunOptions_.User, *optConfig);
}
if (RunOptions_.WithFinalIssues) {
program->FinalizeIssues();
}
program->PrintErrorsTo(*RunOptions_.ErrStream);
if (status == TProgram::TStatus::Error) {
if (RunOptions_.TraceOptStream) {
program->Print(RunOptions_.TraceOptStream, nullptr);
}
return -1;
}
if (!RunOptions_.FullExpr && ERunMode::Peephole != RunOptions_.Mode) {
program->Print(RunOptions_.ExprStream, RunOptions_.PlanStream, /*cleanPlan*/true);
}
program->ConfigureYsonResultFormat(RunOptions_.ResultsFormat);
if (RunOptions_.ResultStream) {
RunOptions_.PrintInfo("Getting results...");
if (ERunMode::Discover == RunOptions_.Mode) {
if (auto data = program->GetDiscoveredData()) {
*RunOptions_.ResultStream << *data;
}
} else if (ERunMode::Lineage == RunOptions_.Mode) {
if (auto data = program->GetLineage()) {
TStringInput in(*data);
NYson::ReformatYsonStream(&in, RunOptions_.ResultStream, RunOptions_.ResultsFormat);
}
} else if (program->HasResults()) {
if (RunOptions_.ValidateResultFormat) {
auto str = program->ResultsAsString();
if (!str.empty()) {
auto node = NYT::NodeFromYsonString(str);
for (const auto& r : NResult::ParseResponse(node)) {
for (const auto& write : r.Writes) {
if (write.Type) {
NResult::TEmptyTypeVisitor visitor;
NResult::ParseType(*write.Type, visitor);
}
if (write.Type && write.Data) {
NResult::TEmptyDataVisitor visitor;
NResult::ParseData(*write.Type, *write.Data, visitor);
}
}
}
}
RunOptions_.ResultStream->Write(str.data(), str.size());
} else {
*RunOptions_.ResultStream << program->ResultsAsString();
}
}
}
if (RunOptions_.StatStream) {
if (auto st = program->GetStatistics(!RunOptions_.FullStatistics)) {
*RunOptions_.StatStream << *st;
}
}
RunOptions_.PrintInfo("");
RunOptions_.PrintInfo("Done");
return 0;
}
} // NYql
|