Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Agent for translation idtf from sc to file #5

Merged
merged 4 commits into from
Jan 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docs/images/translate_agent_alg_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/translate_agent_input.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/translate_agent_output.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/main.tex
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
\ActivateBG
\begin{SCn}
\input{ostis_metasystem}
\input{translateMainSystemIdtfFromScToFileAgent}
\input{bibliography/biblio}
\end{SCn}
\end{document}
40 changes: 40 additions & 0 deletions docs/translateMainSystemIdtfFromScToFileAgent.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

\scnheader{Агент перевода основных и системных идентификаторов узлов из sc-памяти в текстовый файл}

\scnidtf{sc-агент трансляции идентификаторов узлов из sc-памяти в текстовый файл}
\begin{scnrelfromvector}{задачи}
\scnitem{поиск системных и основных идентификаторов узлов в sc-памяти}
\scnitem{проверка узлов на наличие только одного системного идентификатора и одного основного идентификатора на русском языке}
\scnitem{трансляция в текстовый файл является}
\end{scnrelfromvector}
\begin{scnrelfrom}{аргументы агента}
{пустое множество}
\end{scnrelfrom}
\begin{scnrelfrom}{алгоритм}
{
\begin{scnitemize}
\item Поиск всех узлов с помощью итератора, который ищет все конструкции вида \scnfileimage[20em]{images/translate_agent_alg_1.png}
\item Проверка каждого узла на выполнение трех условий:
\begin{scnitemizeii}
\item Наличие только одного системного идентификатора.
\item Наличие только одного основного русского идентификатора.
\item Принадлежность одному из sc-типов узлов.
\end{scnitemizeii}
\item Если не выполняется одно из условий, то запись данных об узле в файл не выполняется.
\item Если у узла более одного системного идентификатора, то вызывается исключение.
\item Если все три условия выполняются, то данные об узле записываются в файл.
\item Если произошла ошибка при работе с файлом, вызывается исключение.
\end{scnitemize}
}
\end{scnrelfrom}
\begin{scnrelfrom}{ответ агента}
{В результате агент создает текстовый файл, в котором в виде словаря формируются структуры.
Роль ключа играет основной русский идентификатор, роль значения -- пара, в которой на первом месте стоит системный идентификатор, а на втором -- sc-тип узла.}
\end{scnrelfrom}
\begin{scnindent}
\begin{scnrelfrom}{пример}
{\{\scnqqi{main\_ru\_identifier}, \{\scnqqi{system\_identifier}, \scnqqi{sc\_type}\} \}}
\end{scnrelfrom}
\end{scnindent}
\scnrelfrom{пример входной конструкции}{\scnfileimage[30em]{images/translate_agent_input.png}}
\scnrelfrom{пример выходной конструкции}{\scnfileimage[30em]{images/translate_agent_output.png}}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
add_subdirectory(exampleModule)
add_subdirectory(identifiersModule)

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
set(IDENTIFIERS_MODULE_SRC "${PROBLEM_SOLVER_PATH}/cxx/identifiersModule")

set(SOURCES
"agent/TranslateMainSystemIdtfsFromScToFileAgent.cpp" "agent/TranslateMainSystemIdtfsFromScToFileAgent.hpp"
"keynodes/IdentifiersKeynodes.cpp" "keynodes/IdentifiersKeynodes.hpp"
"IdentifiersModule.cpp" "IdentifiersModule.hpp"
)

include_directories(
${CMAKE_CURRENT_LIST_DIR}
${SC_MEMORY_SRC}
${SC_KPM_SRC}
)

add_library(identifiers SHARED ${SOURCES})
target_link_libraries(identifiers sc-memory sc-agents-common)

sc_codegen_ex(identifiers ${CMAKE_CURRENT_LIST_DIR} ${CMAKE_CURRENT_LIST_DIR}/generated)

if(${SC_CLANG_FORMAT_CODE})
target_clangformat_setup(identifiers)
endif()

add_definitions(-DIDENTIFIERS_MODULE_PATH="${CMAKE_CURRENT_LIST_DIR}/")

if(${SC_BUILD_TESTS})
include(${CMAKE_CURRENT_LIST_DIR}/test/tests.cmake)
endif()
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
* This source file is part of an OSTIS project. For the latest info, see http://ostis.net
* Distributed under the MIT License
* (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
*/

#include "IdentifiersModule.hpp"

#include "keynodes/IdentifiersKeynodes.hpp"
#include "agent/TranslateMainSystemIdtfsFromScToFileAgent.hpp"

using namespace identifiersModule;

SC_IMPLEMENT_MODULE(IdentifiersModule)

sc_result IdentifiersModule::InitializeImpl()
{
if (!IdentifiersModule::InitGlobal())
{
SC_LOG_ERROR("IdentifiersModule is deactivated");
return SC_RESULT_ERROR;
}

if (!IdentifiersKeynodes::InitGlobal())
{
SC_LOG_ERROR("IdentifiersKeynodes is deactivated");
return SC_RESULT_ERROR;
}
else
{
SC_AGENT_REGISTER(TranslateMainSystemIdtfsFromScToFileAgent);
}

return SC_RESULT_OK;
}
sc_result IdentifiersModule::ShutdownImpl()
{
SC_AGENT_UNREGISTER(TranslateMainSystemIdtfsFromScToFileAgent);

return SC_RESULT_OK;
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@

#include "sc-memory/sc_module.hpp"

#include "ExampleModule.generated.hpp"
#include "IdentifiersModule.generated.hpp"

class ExampleModule : public ScModule
namespace identifiersModule
{
class IdentifiersModule : public ScModule
{
SC_CLASS(LoadOrder(100))
SC_GENERATED_BODY()
Expand All @@ -19,3 +21,5 @@ class ExampleModule : public ScModule

sc_result ShutdownImpl() override;
};

} // namespace identifiersModule
Loading
Loading