-
Notifications
You must be signed in to change notification settings - Fork 53
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
468 / cборка простых внешних обработок. #472
Merged
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
30f05bf
feat: #468 алгоритм сборки простых внешних обработок.
alkoleft 65b598b
fix: исправлена ошибка сборки
alkoleft 6724781
fix: запись о запуске тестов модуля всегда на клиенте
alkoleft ec328f5
fix: исправлена сборка под linux
alkoleft e5f0031
ci: up edt export timeout
alkoleft 03a360b
fix: правка замечаний
alkoleft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
145 changes: 145 additions & 0 deletions
145
exts/yaxunit/src/CommonModules/ЮТВнешниеОбработкиСлужебныйСервер/Module.bsl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
//©///////////////////////////////////////////////////////////////////////////©// | ||
// | ||
// Copyright 2021-2024 BIA-Technologies Limited Liability Company | ||
// | ||
// 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. | ||
// | ||
//©///////////////////////////////////////////////////////////////////////////©// | ||
|
||
#Область СлужебныйПрограммныйИнтерфейс | ||
|
||
Функция СкомпилирватьВнешнуюОбработку(ТекстМодуляОбъект = "", Знач ТекстМодуляФормы = "") Экспорт | ||
|
||
// Для сборки используется утилита v8unpack - https://github.com/e8tools/v8unpack | ||
|
||
ИдентификаторМодуляОбъекта = "00ab4620-8498-4b18-a4f8-18b53138fcb5.0"; | ||
ИдентификаторФормы = "a10cd1fd-c4ba-437c-9925-b7354192a1ea.0"; | ||
|
||
РабочийКаталог = ЮТФайлы.ОбъединитьПути(КаталогВременныхФайлов(), "yaxunit-v8unpack"); | ||
ПодготовитьРабочийКаталог(РабочийКаталог); | ||
|
||
КаталогСборки = ЮТФайлы.ОбъединитьПути(РабочийКаталог, "build"); | ||
КаталогФайловОбработки = ЮТФайлы.ОбъединитьПути(КаталогСборки, "unpack"); | ||
|
||
УдалитьФайлы(КаталогСборки); | ||
СоздатьКаталог(КаталогСборки); | ||
|
||
РаспаковатьОбработку(РабочийКаталог); | ||
|
||
ЮТФайлы.СкопироватьКаталог(ЮТФайлы.ОбъединитьПути(РабочийКаталог, "unpack"), КаталогФайловОбработки); | ||
|
||
// Модуль объекта | ||
ИмяФайлаМодуляОбъекта = ЮТФайлы.ОбъединитьПути(КаталогФайловОбработки, ИдентификаторМодуляОбъекта, "text"); | ||
ЮТФайлы.ЗаписатьТекстВФайла(ИмяФайлаМодуляОбъекта, ТекстМодуляОбъект); | ||
|
||
// Модуль формы | ||
ИмяФайлаФормы = ЮТФайлы.ОбъединитьПути(КаталогФайловОбработки, ИдентификаторФормы); | ||
ДанныеФормы = ЮТФайлы.ДанныеТекстовогоФайла(ИмяФайлаФормы); | ||
ТекстМодуляФормы = СтрЗаменить(ТекстМодуляФормы, """", """"""); | ||
ДанныеФормы = СтрЗаменить(ДанныеФормы, "MODULE_PLACEHOLDER", ТекстМодуляФормы); | ||
ЮТФайлы.ЗаписатьТекстВФайла(ИмяФайлаФормы, ДанныеФормы); | ||
|
||
СобратьОбработку(РабочийКаталог); | ||
|
||
Возврат ЮТФайлы.ОбъединитьПути(КаталогСборки, "out.epf"); | ||
|
||
КонецФункции | ||
|
||
#КонецОбласти | ||
|
||
#Область СлужебныеПроцедурыИФункции | ||
|
||
Процедура ПодготовитьРабочийКаталог(РабочийКаталог) | ||
|
||
Если ЮТФайлы.Существует(РабочийКаталог) И НайтиФайлы(РабочийКаталог, "*").Количество() Тогда | ||
Возврат; | ||
КонецЕсли; | ||
|
||
СоздатьКаталог(РабочийКаталог); | ||
Данные = ПолучитьОбщийМакет("ЮТV8UnpackWS"); | ||
Архив = Новый ЧтениеZipФайла(Данные.ОткрытьПотокДляЧтения()); | ||
Архив.ИзвлечьВсе(РабочийКаталог); | ||
Архив.Закрыть(); | ||
|
||
КонецПроцедуры | ||
|
||
Процедура РаспаковатьОбработку(РабочийКаталог) | ||
|
||
Если ЮТФайлы.Существует(ЮТФайлы.ОбъединитьПути(РабочийКаталог, "unpack")) Тогда | ||
Возврат; | ||
КонецЕсли; | ||
|
||
Если ЮТОкружение.ЭтоWindows() Тогда | ||
Команда = "unpack-epf.bat"; | ||
Иначе | ||
Команда = "/bin/bash unpack-epf.sh"; | ||
КонецЕсли; | ||
|
||
ВыполнитьКомандуСистемы(РабочийКаталог, Команда, "Распаковка шаблона обработки"); | ||
|
||
КонецПроцедуры | ||
|
||
Процедура СобратьОбработку(РабочийКаталог) | ||
|
||
Если ЮТОкружение.ЭтоWindows() Тогда | ||
Команда = "build-epf.bat"; | ||
Иначе | ||
Команда = "/bin/bash build-epf.sh"; | ||
КонецЕсли; | ||
|
||
ВыполнитьКомандуСистемы(РабочийКаталог, Команда, "Сборка обработки"); | ||
|
||
КонецПроцедуры | ||
|
||
Процедура ВыполнитьКомандуСистемы(РабочийКаталог, Знач Команда, Описание) | ||
|
||
КодВозврата = Неопределено; | ||
ФайлЛога = ПолучитьИмяВременногоФайла("log"); | ||
Команда = СтрШаблон("%1 > %2 2>&1", Команда, ФайлЛога); | ||
|
||
Если ЮТОкружение.ЭтоWindows() Тогда | ||
КодВозврата = ВыполнитьКомандуОСБезПоказаЧерногоОкна(Команда, РабочийКаталог); | ||
Иначе | ||
Команда = "timeout 5s " + Команда; | ||
КодВозврата = Неопределено; | ||
ЗапуститьПриложение(Команда, РабочийКаталог, Истина, КодВозврата); | ||
КонецЕсли; | ||
|
||
Если КодВозврата <> 0 Тогда | ||
Сообщение = СтрШаблон("%1 завершилась с ошибкой. Команда: `%2`; рабочий каталог: `%3`", Описание, Команда, РабочийКаталог); | ||
Если ЮТФайлы.Существует(ФайлЛога) Тогда | ||
Сообщение = СтрШаблон("%1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔗Уберите инициализацию параметров метода "СтрШаблон" вложенными методами
|
||
|Вывод команды: | ||
|%2", Сообщение, ЮТФайлы.ДанныеТекстовогоФайла(ФайлЛога)); | ||
// УдалитьФайлы(ФайлЛога); | ||
КонецЕсли; | ||
|
||
ВызватьИсключение Сообщение; | ||
КонецЕсли; | ||
|
||
КонецПроцедуры | ||
|
||
Функция ВыполнитьКомандуОСБезПоказаЧерногоОкна(ТекстКоманды, РабочийКаталог) Экспорт | ||
|
||
#Если НЕ ВебКлиент Тогда | ||
|
||
WshShell = Новый COMОбъект("WScript.Shell"); | ||
WshShell.CurrentDirectory = РабочийКаталог; | ||
Рез = WshShell.Run(ТекстКоманды, 0, -1); | ||
|
||
Возврат Рез; | ||
|
||
#КонецЕсли | ||
КонецФункции | ||
|
||
#КонецОбласти |
10 changes: 10 additions & 0 deletions
10
...src/CommonModules/ЮТВнешниеОбработкиСлужебныйСервер/ЮТВнешниеОбработкиСлужебныйСервер.mdo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<mdclass:CommonModule xmlns:mdclass="http://g5.1c.ru/v8/dt/metadata/mdclass" uuid="8c504a00-5ff1-46bb-9895-ee06bcb64454"> | ||
<name>ЮТВнешниеОбработкиСлужебныйСервер</name> | ||
<synonym> | ||
<key>ru</key> | ||
<value>Внешние обработки служебный сервер</value> | ||
</synonym> | ||
<server>true</server> | ||
<clientOrdinaryApplication>true</clientOrdinaryApplication> | ||
</mdclass:CommonModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
10 changes: 10 additions & 0 deletions
10
exts/yaxunit/src/CommonTemplates/ЮТV8UnpackWS/ЮТV8UnpackWS.mdo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<mdclass:CommonTemplate xmlns:mdclass="http://g5.1c.ru/v8/dt/metadata/mdclass" uuid="c08cb885-86fb-41fb-b8fc-9a407c087f60"> | ||
<name>ЮТV8UnpackWS</name> | ||
<synonym> | ||
<key>ru</key> | ||
<value>v8unpack рабочий каталог</value> | ||
</synonym> | ||
<comment>Содержит исполняемые файлы, скрипты и шаблоны обработок</comment> | ||
<templateType>BinaryData</templateType> | ||
</mdclass:CommonTemplate> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔗Не рекомендуемый вызов функции КаталогВременныхФайлов()
Codesmell Major
standard
badpractice
Why is this an issue?