示例#1
0
        private void Generate(string templatePath, string outputPath, InterfaceModel model, GenerationOptions options = GenerationOptions.None)
        {
            if (templatePath == null)
                throw new ArgumentNullException("templatePath");
            if (outputPath == null)
                throw new ArgumentNullException("outputPath");

            m_textHost.CurrentInterface = model;
            m_textHost.CurrentPlatform = null;
            m_textHost.CurrentEnum = null;

            m_textHost.TemplateFile = ResolveTemplatePath(templatePath);
            string templateText = GetTemplateText(m_textHost.TemplateFile);

            DateTime lastUpdated = File.Exists(outputPath) ? File.GetLastWriteTimeUtc(outputPath) : DateTime.MinValue;
            if (!File.Exists(outputPath) || (options.HasFlag(GenerationOptions.AllowOverwrite) && (Settings.ForceRegeneration || DateTime.Compare(lastUpdated, model.UpdatedAt) < 0)))
                GenerateFile(outputPath, templateText);
        }
示例#2
0
        protected override void Generate(InterfaceModel model)
        {
            string includePath = Path.Combine(Settings.OutputPath, string.Format("include/Talon/{0}/{1}.h", model.Module, model.Name));
            string sourcePath = Path.Combine(Settings.OutputPath, string.Format("src/Talon/{0}/{1}.cpp", model.Module, model.Name));

            Generate("TalonConcreteHeaderFile.t4", includePath, model);

            // Always regenerate concrete method header, if interface was updated.
            includePath = Path.Combine(Settings.OutputPath, string.Format("include/Talon/{0}/Generated/{1}.h", model.Module, model.Name));
            Generate("TalonConcreteGeneratedHeaderFile.t4", includePath, model, GenerationOptions.AllowOverwrite);

            Generate("TalonConcreteSourceFile.t4", sourcePath, model);

            foreach (PlatformModel platform in model.Platforms)
            {
                includePath = Path.Combine(Settings.OutputPath, string.Format("include/Talon/{0}/{1}/{2}.h", model.Module, platform.Name, platform.ClassName));
                sourcePath = Path.Combine(Settings.OutputPath, string.Format("src/Talon/{0}/{1}/{2}.{3}", model.Module, platform.Name, platform.ClassName, platform.CPlusPlusExtension));

                Generate("TalonPlatformHeaderFile.t4", includePath, platform);

                // Always regenerate platform method header, if interface was updated.
                includePath = Path.Combine(Settings.OutputPath, string.Format("include/Talon/{0}/{1}/Generated/{2}.h", model.Module, platform.Name, platform.ClassName));
                Generate("TalonPlatformGeneratedHeaderFile.t4", includePath, platform, GenerationOptions.AllowOverwrite);

                Generate("TalonPlatformSourceFile.t4", sourcePath, platform);
            }

            includePath = Path.Combine(Settings.OutputPath, string.Format("include/Talon/{0}/Base/{1}Base.h", model.Module, model.Name));
            sourcePath = Path.Combine(Settings.OutputPath, string.Format("src/Talon/{0}/Base/{1}Base.cpp", model.Module, model.Name));

            // Always regenerate base class definitions, if interface was updated
            Generate("TalonBaseHeaderFile.t4", includePath, model, GenerationOptions.AllowOverwrite);
            Generate("TalonBaseSourceFile.t4", sourcePath, model, GenerationOptions.AllowOverwrite);
        }
示例#3
0
 protected abstract void Generate(InterfaceModel definition);