list_builtin.cpp 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. #include "list_builtin.h"
  2. using namespace NYql;
  3. namespace NSQLTranslationV1 {
  4. TAstNode* TListBuiltin::Translate(TContext& ctx) const {
  5. Y_DEBUG_ABORT_UNLESS(Node);
  6. return Node->Translate(ctx);
  7. }
  8. TNodePtr TListBuiltin::GetIdentityLambda() {
  9. return BuildLambda(Pos, Y("arg"), Y(), "arg");
  10. }
  11. bool TListSortBuiltin::DoInit(TContext& ctx, ISource* src) {
  12. if (Args.size() < 1 || Args.size() > 2) {
  13. ctx.Error(Pos) << OpName << " requires one or two parameters.";
  14. return false;
  15. }
  16. if (!Args[0]->Init(ctx, src)) {
  17. return false;
  18. }
  19. if (Args.size() == 2) {
  20. if (!Args[1]->Init(ctx, src)) {
  21. return false;
  22. }
  23. } else {
  24. Args.push_back(GetIdentityLambda());
  25. }
  26. Node = Y(OpName, Args[0], Y("Bool", Q(Asc ? "true" : "false")), Args[1]);
  27. return true;
  28. }
  29. bool TListExtractBuiltin::DoInit(TContext& ctx, ISource* src) {
  30. if (Args.size() != 2) {
  31. ctx.Error(Pos) << OpName << " requires exactly two parameters.";
  32. return false;
  33. }
  34. for (const auto& arg : Args) {
  35. if (!arg->Init(ctx, src)) {
  36. return false;
  37. }
  38. }
  39. Args[1] = MakeAtomFromExpression(Pos, ctx, Args[1]).Build();
  40. Node = Y(OpName, Args[0], Args[1]);
  41. return true;
  42. }
  43. bool TListProcessBuiltin::CheckArgs(TContext& ctx, ISource* src) {
  44. if (Args.size() != 2 ) {
  45. ctx.Error(Pos) << OpName << " requires exactly two parameters";
  46. return false;
  47. }
  48. for (const auto& arg : Args) {
  49. if (!arg->Init(ctx, src)) {
  50. return false;
  51. }
  52. }
  53. return true;
  54. }
  55. bool TListMapBuiltin::DoInit(TContext& ctx, ISource* src) {
  56. if (!CheckArgs(ctx, src)) {
  57. return false;
  58. };
  59. Node = Y(OpName, Args[0], Args[1]);
  60. return true;
  61. }
  62. bool TListFilterBuiltin::DoInit(TContext& ctx, ISource* src) {
  63. if (!CheckArgs(ctx, src)) {
  64. return false;
  65. };
  66. Node = Y(OpName, Args[0], GetFilterLambda());
  67. return true;
  68. }
  69. TNodePtr TListFilterBuiltin::GetFilterLambda() {
  70. return BuildLambda(Pos, Y("item"), Y("Coalesce", Y("Apply", Args[1], "item"), Y("Bool", Q("false"))));
  71. }
  72. bool TListCreateBuiltin::DoInit(TContext& ctx, ISource* src) {
  73. if (Args.size() != 1) {
  74. ctx.Error(Pos) << OpName << " requires only one parameter";
  75. return false;
  76. }
  77. if (!Args[0]->Init(ctx, src)) {
  78. return false;
  79. }
  80. Node = Y("List", Y("ListType", Args[0]));
  81. return true;
  82. }
  83. void TListCreateBuiltin::DoUpdateState() const {
  84. State.Set(ENodeState::Const);
  85. }
  86. bool TDictCreateBuiltin::DoInit(TContext& ctx, ISource* src) {
  87. if (Args.size() != 2) {
  88. ctx.Error(Pos) << OpName << " requires two parameters";
  89. return false;
  90. }
  91. for (ui32 i = 0; i < 2; ++i) {
  92. if (!Args[i]->Init(ctx, src)) {
  93. return false;
  94. }
  95. }
  96. Node = Y("Dict", Y("DictType", Args[0], Args[1]));
  97. return true;
  98. }
  99. void TDictCreateBuiltin::DoUpdateState() const {
  100. State.Set(ENodeState::Const);
  101. }
  102. bool TSetCreateBuiltin::DoInit(TContext& ctx, ISource* src) {
  103. if (Args.size() != 1) {
  104. ctx.Error(Pos) << OpName << " requires one parameter";
  105. return false;
  106. }
  107. if (!Args[0]->Init(ctx, src)) {
  108. return false;
  109. }
  110. Node = Y("Dict", Y("DictType", Args[0], Y("VoidType")));
  111. return true;
  112. }
  113. void TSetCreateBuiltin::DoUpdateState() const {
  114. State.Set(ENodeState::Const);
  115. }
  116. } // namespace NSQLTranslationV1