Skip to content

Commit 517d4d4

Browse files
committedSep 1, 2023
feat: track-ids specs
1 parent 8f674d5 commit 517d4d4

File tree

5 files changed

+864
-282
lines changed

5 files changed

+864
-282
lines changed
 

‎include/mrdox/Support/Handlebars.hpp

+68-31
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,17 @@ struct HandlebarsOptions
6969
*/
7070
bool compat = false;
7171

72+
/** Enable tracking of ids
73+
74+
When enabled, the ids of the expressions are tracked and
75+
passed to the helpers.
76+
77+
Helpers often use this information to update the context
78+
path to the current expression, which can later be used to
79+
look up the value of the expression with ".." segments.
80+
*/
81+
bool trackIds = false;
82+
7283
/** Custom private data object
7384
7485
This variable can be used to pass in an object to define custom
@@ -275,7 +286,7 @@ class MRDOX_DECL OutputRef
275286
}
276287

277288
std::size_t
278-
getIndent() noexcept
289+
getIndent() const noexcept
279290
{
280291
return indent_;
281292
}
@@ -303,17 +314,23 @@ class MRDOX_DECL HandlebarsCallback
303314
{
304315
private:
305316
using callback_type = std::function<
306-
void(OutputRef, dom::Value const&, dom::Object const&, dom::Object const&)>;
317+
void(
318+
OutputRef,
319+
dom::Value const& /* context */,
320+
dom::Object const& /* data */,
321+
dom::Object const& /* blockValues */,
322+
dom::Object const& /* blockValuePaths */)>;
307323

308324
callback_type fn_;
309325
callback_type inverse_;
310326
dom::Value const* context_{ nullptr };
311327
OutputRef* output_{ nullptr };
312328
dom::Object const* data_;
313-
std::vector<std::string_view> ids_;
314-
dom::Object hashes_;
329+
std::vector<dom::Value> ids_;
330+
dom::Object hash_;
331+
dom::Object hashIds_;
315332
std::string_view name_;
316-
std::vector<std::string_view> blockParams_;
333+
std::vector<std::string_view> blockParamIds_;
317334
std::function<void(dom::Value, dom::Array const&)> const* logger_;
318335
detail::RenderState* renderState_;
319336
friend class Handlebars;
@@ -398,7 +415,8 @@ class MRDOX_DECL HandlebarsCallback
398415
std::string
399416
fn(dom::Value const& context,
400417
dom::Object const& data,
401-
dom::Object const& blockValues) const;
418+
dom::Array const& blockParams,
419+
dom::Array const& blockParamPaths) const;
402420

403421
/** Render the block content with specified private data and block parameters
404422
@@ -417,7 +435,8 @@ class MRDOX_DECL HandlebarsCallback
417435
fn(OutputRef out,
418436
dom::Value const& context,
419437
dom::Object const& data,
420-
dom::Object const& blockValues) const;
438+
dom::Array const& blockParams,
439+
dom::Array const& blockParamPaths) const;
421440

422441
/** Render the inverse block content with the specified context
423442
@@ -492,7 +511,8 @@ class MRDOX_DECL HandlebarsCallback
492511
inverse(
493512
dom::Value const& context,
494513
dom::Object const& data,
495-
dom::Object const& blockValues) const;
514+
dom::Array const& blockParams,
515+
dom::Array const& blockParamPaths) const;
496516

497517
/** Render the inverse block content with private data and block parameters
498518
@@ -512,7 +532,8 @@ class MRDOX_DECL HandlebarsCallback
512532
OutputRef out,
513533
dom::Value const& context,
514534
dom::Object const& data,
515-
dom::Object const& blockValues) const;
535+
dom::Array const& blockParamPaths,
536+
dom::Array const& blockParams) const;
516537

517538
/** Determine if helper is being called from a block section
518539
@@ -554,7 +575,9 @@ class MRDOX_DECL HandlebarsCallback
554575
555576
@return `true` if the helper is being called from a block section
556577
*/
557-
bool isBlock() const {
578+
bool
579+
isBlock() const
580+
{
558581
return static_cast<bool>(fn_);
559582
}
560583

@@ -593,40 +616,46 @@ class MRDOX_DECL HandlebarsCallback
593616
return *data_;
594617
}
595618

596-
/// Extra key value pairs passed to the callback
597-
dom::Object&
598-
hashes() {
599-
return hashes_;
600-
}
601-
602-
/// Extra key value pairs passed to the callback
603-
dom::Object const&
604-
hashes() const {
605-
return hashes_;
606-
}
607-
608619
/// Ids of the expression parameters
609-
std::vector<std::string_view>&
620+
std::vector<dom::Value>&
610621
ids() {
611622
return ids_;
612623
}
613624

614625
/// Ids of the expression parameters
615-
std::vector<std::string_view> const&
626+
std::vector<dom::Value> const&
616627
ids() const {
617628
return ids_;
618629
}
619630

620-
/// Block parameters passed to the callback
621-
std::vector<std::string_view>&
622-
blockParams() {
623-
return blockParams_;
631+
/// Extra key value pairs passed to the callback
632+
dom::Object&
633+
hash() {
634+
return hash_;
635+
}
636+
637+
/// Extra key value pairs passed to the callback
638+
dom::Object const&
639+
hash() const {
640+
return hash_;
641+
}
642+
643+
/// Extra key value pairs passed to the callback
644+
dom::Object&
645+
hashIds() {
646+
return hashIds_;
647+
}
648+
649+
/// Extra key value pairs passed to the callback
650+
dom::Object const&
651+
hashIds() const {
652+
return hashIds_;
624653
}
625654

626655
/// Block parameters passed to the callback
627-
std::vector<std::string_view> const&
656+
std::size_t
628657
blockParams() const {
629-
return blockParams_;
658+
return blockParamIds_.size();
630659
}
631660

632661
/** Name of the helper being called
@@ -1207,7 +1236,15 @@ class Handlebars {
12071236
HandlebarsCallback& cb,
12081237
HandlebarsOptions const& opt) const;
12091238

1210-
std::pair<dom::Value, bool>
1239+
struct evalExprResult {
1240+
dom::Value value;
1241+
bool found = false;
1242+
bool isLiteral = false;
1243+
bool isSubexpr = false;
1244+
bool fromBlockParams = false;
1245+
};
1246+
1247+
evalExprResult
12111248
evalExpr(
12121249
dom::Value const &context,
12131250
std::string_view expression,

0 commit comments

Comments
 (0)
Please sign in to comment.