loom

Форк
0
/
test.cpp 
141 строка · 4.6 Кб
1
/*
2
MIT License
3

4
Copyright (c) 2021 МГТУ им. Н.Э. Баумана, кафедра ИУ-6, Михаил Фетисов,
5

6
https://bmstu.codes/lsx/simodo/loom
7
*/
8

9
#include "simodo/variable/Module_interface.h"
10
#include "simodo/variable/VariableSetWrapper.h"
11

12
#include "simodo/interpret/Interpret_interface.h"
13
#include "simodo/loom/Loom_interface.h"
14
#include "simodo/loom/FiberStatus.h"
15

16
#include "simodo/inout/convert/functions.h"
17

18
// #include <iostream>
19
#include <memory>
20
#include <cassert>
21

22
#ifdef CROSS_WIN
23
// MinGW related workaround
24
#define BOOST_DLL_FORCE_ALIAS_INSTANTIATION
25
#endif
26

27
#include <boost/dll/alias.hpp>
28

29
using namespace simodo;
30
using namespace simodo::variable;
31

32
namespace
33
{
34
    Value get_test_string(Module_interface * host, const VariableSetWrapper & );
35
    Value set_test_string(Module_interface * host, const VariableSetWrapper & args);
36
    Value get_fibers(Module_interface * host, const VariableSetWrapper & );
37
}
38

39
class ModuleHost_test : public Module_interface
40
{
41
    std::u16string                   _test_string; // = u"initial test string";
42
    interpret::Interpret_interface * _interpret = nullptr;
43

44
public:
45
    ModuleHost_test(interpret::Interpret_interface * interpret)
46
    {
47
        _test_string = u"initial test string";
48
        _interpret = interpret;
49
    }
50

51
    const std::u16string & test_string() const { return _test_string; }
52
    void setTestString(const std::u16string & str) { _test_string = str; }
53

54
    interpret::Interpret_interface * interpret() { return _interpret; }
55

56
    virtual version_t version() const override { return lib_version(); }
57

58
    virtual Value instantiate(std::shared_ptr<variable::Module_interface> module_object) override 
59
    {
60
        // cout << "getNamespace(0x" << hex << module_host << ")"<< endl;
61
        // cout << "." << convertToU8(_test_string) << endl;
62

63
        return {{
64
            {u"doc", u"Нужно будет предусмотреть поддержку трансляции"},
65
            // {u"doc", u"\\href http://.../README.md", {}, {}},
66
            // {u"pi", 3.14, {}, {{u"doc", u"Число pi", {}, {}}}},
67
            {u"get_test_string", {ValueType::Function, Object {{
68
                {u"@", ExternalFunction {module_object, get_test_string}},
69
                {{}, ValueType::String},
70
            }}}},
71
            {u"set_test_string", {ValueType::Function, Object {{
72
                {u"@", ExternalFunction {module_object, set_test_string}},
73
                {{}, ValueType::Null},
74
                {u"test_string", ValueType::String},
75
            }}}},
76
            {u"get_fibers", {ValueType::Function, Object {{
77
                {u"@", ExternalFunction {module_object, get_fibers}},
78
                {{}, ValueType::Object},
79
            }}}},
80
        }};
81
    }
82

83
    // Factory method
84
    static std::shared_ptr<Module_interface> create(interpret::Interpret_interface * interpret) {
85
        return std::make_shared<ModuleHost_test>(interpret);
86
    }
87
};
88

89
BOOST_DLL_ALIAS(
90
    ModuleHost_test::create,    // <-- this function is exported with...
91
    create_simodo_module        // <-- ...this alias name
92
)
93

94
namespace
95
{
96
    Value get_test_string(Module_interface * host, const VariableSetWrapper & )
97
    {
98
        // cout << "get_test_string(0x" << hex << host << ",)"<< endl;
99
        assert(host != nullptr);
100
        ModuleHost_test * test = static_cast<ModuleHost_test *>(host);
101
        // cout << "." << convertToU8(test->test_string()) << endl;
102

103
        return test->test_string();
104
    }
105

106
    Value set_test_string(Module_interface * host, const VariableSetWrapper & args)
107
    {
108
        // cout << "set_test_string(0x" << hex << host << ",)"<< endl;
109
        assert(host != nullptr);
110
        ModuleHost_test * test = static_cast<ModuleHost_test *>(host);
111
        // cout << "." << convertToU8(test->test_string()) << endl;
112

113
        assert(args.size() == 1);
114

115
        test->setTestString(args[0].origin().value().getString());
116
        // test->setTestString(u"set_test_string called");
117

118
        return {};
119
    }
120

121
    Value get_fibers(Module_interface * host, const VariableSetWrapper & )
122
    {
123
        assert(host != nullptr);
124
        ModuleHost_test * test = static_cast<ModuleHost_test *>(host);
125

126
        if (test->interpret() == nullptr)
127
            return {u"Have to use script module for fibers request"};
128

129
        const loom::Loom_interface & loom = test->interpret()->loom();
130

131
        variable::VariableSet_t fibers_info;
132

133
        std::vector<loom::FiberStructure> fibers = loom.    fibers();
134

135
        for(const loom::FiberStructure & f : fibers)
136
            fibers_info.push_back({inout::toU16(std::to_string(int64_t(f.no))), inout::toU16(loom::getFiberStatusName(f.status))});
137

138
        return fibers_info;
139
    }
140

141
}
142

143

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.