Added basic inline command parser

This commit is contained in:
Bartek Kryza
2021-07-28 23:10:46 +02:00
parent e7f9674433
commit 4cdd034017
7 changed files with 376 additions and 0 deletions

143
src/uml/command_parser.cc Normal file
View File

@@ -0,0 +1,143 @@
/**
* src/uml/command_parser.cc
*
* Copyright (c) 2021 Bartek Kryza <bkryza@gmail.com>
*
* 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 "command_parser.h"
#include "util/util.h"
#include <string>
#include <string_view>
namespace clanguml {
namespace command_parser {
std::shared_ptr<command> command::from_string(std::string_view c)
{
if (c.find("note") == 0) {
return note::from_string(c);
}
else if (c.find("style") == 0) {
return style::from_string(c);
}
else if (c.find("aggregation") == 0) {
return aggregation::from_string(c);
}
return {};
}
std::shared_ptr<command> note::from_string(std::string_view c)
{
auto res = std::make_shared<note>();
auto it = c.begin();
// Skip 'note'
std::advance(it, 4);
if (*it != '[')
return {};
std::advance(it, 1);
auto pos = std::distance(c.begin(), it);
res->position = c.substr(pos, c.find("]", pos) - pos);
std::advance(it, res->position.size() + 1);
pos = std::distance(c.begin(), it);
res->text = c.substr(pos, c.find("}", pos) - pos);
res->position = util::trim(res->position);
res->text = util::trim(res->text);
return res;
}
std::shared_ptr<command> style::from_string(std::string_view c)
{
auto res = std::make_shared<style>();
auto it = c.begin();
// Skip 'style'
std::advance(it, 5);
if (*it != '[')
return {};
std::advance(it, 1);
auto pos = std::distance(c.begin(), it);
res->spec = c.substr(pos, c.find("]", pos) - pos);
res->spec = util::trim(res->spec);
return res;
}
std::shared_ptr<command> aggregation::from_string(std::string_view c)
{
auto res = std::make_shared<aggregation>();
auto it = c.begin();
// Skip 'aggregation'
std::advance(it, 11);
if (*it != '[')
return {};
std::advance(it, 1);
auto pos = std::distance(c.begin(), it);
res->multiplicity = c.substr(pos, c.find("]", pos) - pos);
res->multiplicity = util::trim(res->multiplicity);
return res;
}
std::vector<std::shared_ptr<command>> parse(std::string documentation_block)
{
std::vector<std::shared_ptr<command>> res;
const std::string begin_tag{"@clanguml"};
const auto begin_tag_size = begin_tag.size();
// First replace all \clanguml occurences with @clanguml
util::replace_all(documentation_block, "\\clanguml", "@clanguml");
documentation_block = util::trim(documentation_block);
std::string_view block_view{documentation_block};
auto pos = block_view.find("@clanguml{");
while (pos < documentation_block.size()) {
auto c_begin = pos + begin_tag_size;
auto c_end = documentation_block.find("}", c_begin);
if (c_end == std::string::npos)
return res;
auto com =
command::from_string(block_view.substr(c_begin + 1, c_end - 2));
if (com)
res.emplace_back(std::move(com));
pos = block_view.find("@clanguml{", c_end);
}
return res;
};
} // namespace command_parser
} // namespace clanguml

55
src/uml/command_parser.h Normal file
View File

@@ -0,0 +1,55 @@
/**
* src/uml/command_parser.h
*
* Copyright (c) 2021 Bartek Kryza <bkryza@gmail.com>
*
* 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.
*/
#pragma once
#include "config/config.h"
#include <functional>
#include <map>
#include <memory>
#include <string>
namespace clanguml {
namespace command_parser {
struct command {
virtual ~command() = default;
static std::shared_ptr<command> from_string(std::string_view c);
};
struct note : public command {
std::string position;
std::string text;
static std::shared_ptr<command> from_string(std::string_view c);
};
struct style : public command {
std::string spec;
static std::shared_ptr<command> from_string(std::string_view c);
};
struct aggregation : public command {
std::string multiplicity;
static std::shared_ptr<command> from_string(std::string_view c);
};
std::vector<std::shared_ptr<command>> parse(std::string documentation_block);
} // namespace command_parser
} // namespace clanguml

View File

@@ -126,5 +126,20 @@ bool find_element_alias(
return true;
}
bool replace_all(
std::string &input, std::string pattern, std::string replace_with)
{
bool replaced{false};
auto pos = input.find(pattern);
while (pos < input.size()) {
input.replace(pos, pattern.size(), replace_with);
pos = input.find(pattern, pos + replace_with.size());
replaced = true;
}
return replaced;
}
}
}

View File

@@ -104,5 +104,15 @@ std::string unqualify(const std::string &s);
*/
bool find_element_alias(
const std::string &input, std::tuple<std::string, size_t, size_t> &result);
/**
* @brief Find and replace in string
*
* Replaces all occurences of pattern with replace_with in input string.
*
* @return True if at least on replacement was made
*/
bool replace_all(
std::string &input, std::string pattern, std::string replace_with);
}
}