public static string[] ResolveAllImports <T>(this KotlinTemplateBase <T> template, params string[] importsToIgnore)
        {
            var imports = template
                          .GetAllTemplateDependencies()
                          .SelectMany(template.ExecutionContext.FindTemplateInstances <ITemplate>)
                          .Where(ti => ti is IClassProvider)
                          .Cast <IClassProvider>()
                          .ToList()
                          .Select(x => $"{x.Namespace}.{x.ClassName}")
                          .Union(template.GetAllDeclareUsing())
                          .Where(x => !string.IsNullOrWhiteSpace(x))
                          .Except(importsToIgnore)
                          .Distinct()
                          .ToArray();

            foreach (var @using in imports.Where(x => x != FixImport(x)))
            {
                Logging.Log.Warning($"When resolving imports for Template Id [{template.Id}] file [{template.GetMetadata().FileName}], " +
                                    $"an import arrived with with the format [{@using}], but should have been in the format " +
                                    $"[{FixImport(@using)}]. The module and/or decorator author should update this module.");
            }

            imports = imports
                      .Select(x => $"import {FixImport(x)}")
                      .Distinct()
                      .ToArray();

            return(imports);
            //return usings.Any()
            //    ? usings.Aggregate((x, y) => x + Environment.NewLine + y)
            //    : string.Empty;
        }
        public static void ResolveAndAddImports <T>(this KotlinTemplateBase <T> template, KotlinFile file)
        {
            var dependencies = template.GetTemplateDependencies().Select(template.ExecutionContext.FindTemplateInstance <ITemplate>).Distinct();

            foreach (var import in template.ResolveAllImports())
            {
                if (file.ImportExists(import) || template.Package == FixImport(import).RemoveSuffix("." + FixImport(import).Split('.').Last()))
                {
                    continue;
                }

                file.AddImport($@"
{import}");
            }
        }
Esempio n. 3
0
 public static string GetMethodParameters <TModel, TParameterModel>(this KotlinTemplateBase <TModel> template, IEnumerable <TParameterModel> parameters)
     where TParameterModel : IHasName, IHasTypeReference
 {
     return(string.Join(", ", parameters.Select(x => $"{x.Name.ToCamelCase()}: {template.GetTypeName(x)}")));
 }
Esempio n. 4
0
 public static string GetArguments <TModel, TParameterModel>(this KotlinTemplateBase <TModel> template, IEnumerable <TParameterModel> parameters)
     where TParameterModel : IHasName, IHasTypeReference
 {
     return(string.Join(", ", parameters.Select(x => $"{x.Name}")));
 }