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

Мажирин Александр #21

Open
wants to merge 25 commits into
base: master
Choose a base branch
from

Conversation

Kexogg
Copy link

@Kexogg Kexogg commented Dec 19, 2024

No description provided.

TagsCloudContainerCLI/Demo.cs Outdated Show resolved Hide resolved
.WithParsed(opts =>
{
cliHandler.RunOptionsAndReturnExitCode(opts);
if (opts.Demo)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Если вдруг дальше (при большом количестве всяких флагов) с таким подходом станет тяжко - посмотри вот на эту библиотеку, мне кажется, что с ней может быть удобнее

TagsCloudContainerCLI/CLI/CliHandler.cs Outdated Show resolved Hide resolved
TagsCloudContainerCLI/Demo.cs Outdated Show resolved Hide resolved
TagsCloudContainerCore/Renderer/IRenderer.cs Outdated Show resolved Hide resolved
TagsCloudContainerCore/Renderer/Renderer.cs Outdated Show resolved Hide resolved
TagsCloudContainerCore/WordsRanker/IWordsRanker.cs Outdated Show resolved Hide resolved
TagsCloudContainerCore/CoreStartUp.cs Outdated Show resolved Hide resolved
TagsCloudContainerCore/CoreStartUp.cs Outdated Show resolved Hide resolved
@Buskervil
Copy link

Buskervil commented Dec 19, 2024

Текущий сценарий использования (из Demo) не сказать, что удобный. Надо знать много всего про библиотеку, чтобы разобраться

Будет круто, если придумаешь библиотеке фасад. Представь, что тебе надо написать доку раздел "Get Started". Хотелось бы видеть там что-то типа

// конфигурация
Action<TagCloudOptions> optionsBuilder = options =>
{
    options
        .UseGraphics<MyCustomGraphics>()
        // ... some another config
        .UseWordProcessor<SomeWordProcessor>();
};

// использование
string[] words = // какие-то слова

var tagCloud = new TagCloud(optionsBuilder); 
byte[] image = tagCloud.From(words);

// из docx
byte[] content;
var image = tagCloud.FromDocx(content);

ну или на что у тебя хватит фантазии и представления об удобстве 😊

};
}).SingleInstance();
})
.Build();

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Как-то кажется, что перемудрил.

вот так попроще

var cliOptions = Parser.Default.ParseArguments<CliOptions>(args).Value;
var tagCloudConfig = new TagCloudConfig
{
    FontFamily = cliOptions.FontFamily,
    // ...
};

builder.RegisterInstance(tagCloudConfig);

var line = _outputReader.ReadLine();
if (line == null)
{
throw new InvalidEnumArgumentException("MyStem returned null");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Тут бы ошибки прочитать из StandardError. Не понятно что пошло не так


var options = builder.Build();

var childScope = _scope.BeginLifetimeScope(cb => { cb.RegisterModule(new TagCloudModule(options)); });

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Все-таки хорошо бы организовать код так, чтобы регистрировать можно было в основной контейнер без создания дочерних скоупов (можно отказаться от модуля Autofac и сделать, как обычно бывает, экстеншн методы для регистрации). Думаю, что работать с библиотекой в этом случае станет сильно проще (понятнее станет время жизни сервисов).

Фабрика у тебя Scoped, из-за дорегистрации зависимостей в дочернем скоупе, реализации библиотечных интерфейсов (регистрируешь как Singleton) тоже становятся по сути Scoped. Кажется, что с таким подходом мы просто создаем много лишнего мусора.


public SortOrder SortOrder { get; set; } = SortOrder.Descending;

public int MaxWordsCount { get; set; } = 50;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Это вроде обычный норм код, так пишут. Но здесь плохая инкапсуляция, сеттеры по умолчанию должны быть приватными. А в данном случае настройки могли бы быть вообще private readonly


public class MyStemTextProcessor : ITextProcessor
{
private ILogger<MyStemTextProcessor> _logger;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

private readonly

var minWeight = words.Values.Min();
var maxWeight = words.Values.Max();

return words.Select(word =>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

прекрасно заменяется на foreach => + к читаемости

{
if (maxWeight == minWeight)
return _minFontSize;
var adjustedFontSize = (float)(_minFontSize + (_maxFontSize - _minFontSize) * (wordValue - minWeight) / (maxWeight - minWeight));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

норм, можно было еще попробовать логарифм


public SKImage DrawTags(IEnumerable<Tag> tags)
{
var tagList = tags.ToList();

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Просто перекопировал тэги в новый список, а зачем? Тут надо подумать, ты подразумеваешь, что может быть такой алгоритм, который может быть оптимизирован засчет ленивой работы с тэгами?

Мне кажется тут надо принимать IReadOnlyCollection и не будет проблем)

var startY = int.MaxValue;
foreach (var tag in tags)
{
endX = Math.Max(endX, (int)tag.BBox.Right);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

var endX = tags.MaxBy(x => x.BBox.Right).BBox.Right;
мб так идея прозрачнее

return new Rectangle(startX, startY, endX, endY);
}

private void ValidateRectangle(Rectangle rectangle)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Почитай про бедные и богатые модели. Этот метод должен быть не здесь

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants