public void Setup()
  	{
  		_mocks = new MockRepository();
      _typeResolver = _mocks.DynamicMock<ITypeResolver>();
      _visitor = new TypeInspectionVisitor(_typeResolver);

      _type = new TypeDeclaration(Modifiers.Public, new List<AttributeSection>());
      _type.Name = "SomeType";
      _namespace = new NamespaceDeclaration("SomeNamespace");
      _namespace.AddChild(_type);
      _type.Parent = _namespace;
  	}
Exemple #2
0
		private static void ParseSources(List<string> sources)
		{
			foreach (string source in sources)
			{
				if (File.Exists(source))
				{
					TypeInspectionVisitor visitor = new TypeInspectionVisitor(typeResolver);
					service.Parse(visitor, source);
				}
			}
		}
        public override bool Execute()
        {
            this.Log.LogMessage(MessageImportance.High, "OutputFile: {0}", this.OutputFile);
            this.Log.LogMessage(MessageImportance.High, "Namespace: {0}", this.Namespace);
            this.Log.LogMessage(MessageImportance.High, "ControllerSources: {0}", this.ControllerSources.Length);
            this.Log.LogMessage(MessageImportance.High, "ViewSources: {0}", this.ViewSources.Length);
            this.Log.LogMessage(MessageImportance.High, "ViewComponentSources: {0}", this.ViewComponentSources.Length);
            this.Log.LogMessage(MessageImportance.High, "Loading References...");

			if (Debug) System.Diagnostics.Debugger.Launch();
			
            foreach (ITaskItem reference in _assemblyReferences)
            {
                try
                {
                    Assembly.LoadFrom(reference.ItemSpec);
                    Log.LogMessage(MessageImportance.Low, "Loaded: {0}", reference.ItemSpec);
                }
                catch (Exception ex)
                {
                    this.Log.LogMessage(MessageImportance.High, "Error loading reference: '{0}': {1}", reference.ItemSpec, ex.Message);
                }                
            }

            if (File.Exists(this.OutputFile))
            {
                File.Delete(this.OutputFile);
            }

            this.Log.LogMessage(MessageImportance.High, "Parsing Sources...");
            foreach (ITaskItem ti in this.Sources)
            {
            	string filePath = ti.GetMetadata("FullPath");
            	if (File.Exists(filePath))
                {
                    TypeInspectionVisitor visitor = new TypeInspectionVisitor(_typeResolver);
                    _service.Parse(visitor, filePath);
                }
            }

        	foreach (ITaskItem item in this.ViewComponentSources)
            {
                _typeResolver.Clear();

                ViewComponentVisitor visitor = new ViewComponentVisitor(_logger, _typeResolver, _treeService);
            	string filePath = item.GetMetadata("FullPath");
            	visitor.VisitCompilationUnit(_sourceStorage.GetParsedSource(filePath).CompilationUnit, null);
            }

            foreach (ITaskItem item in this.ControllerSources)
            {
                _typeResolver.Clear();

				ControllerVisitor visitor = new ControllerVisitor(_logger, _typeResolver, _treeService);
            	string filePath = item.GetMetadata("FullPath");
            	visitor.VisitCompilationUnit(_sourceStorage.GetParsedSource(filePath).CompilationUnit, null);
            }

            foreach (ITaskItem bi in this.ViewSources)
            {
            	string filePath = bi.GetMetadata("FullPath");
                _viewSourceMapper.AddViewSource(filePath);
            }

            this.Log.LogMessage(MessageImportance.High, "Generating {0}", this.OutputFile);

			Generator generator = new Generator(Namespace, OutputFile, ServiceTypeName, _logger, _naming, _source, _treeService);
			generator.Execute();

			_generatedItems.Add(new TaskItem(this.OutputFile));

            return true;
        }