blob: f193990618764f3b3c70fe159af903d6597035d9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 protos software gmbh (http://www.protos.de).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* CONTRIBUTORS:
* Henrik Rentz-Reichert (initial contribution)
* Peter Karlitschek
*
*******************************************************************************/
package org.eclipse.etrice.generator.cpp.gen
import com.google.inject.Inject
import com.google.inject.Singleton
import org.eclipse.emf.ecore.resource.Resource
import org.eclipse.etrice.core.genmodel.etricegen.Root
import org.eclipse.etrice.generator.generic.PrepareFileSystem
import org.eclipse.xtext.generator.IFileSystemAccess
import org.eclipse.xtext.generator.IGenerator
@Singleton
class MainGen implements IGenerator {
@Inject DataClassGen dataClassGen
@Inject ProtocolClassGen protocolClassGen
@Inject ActorClassGen actorClassGen
@Inject SubSystemClassGen subsystemClassGen
@Inject SubSystemRunnerGen subsystemRunnerGen
@Inject PrepareFileSystem prepFS
override void doGenerate(Resource resource, IFileSystemAccess fsa) {
prepFS.prepareCodeTargetPaths(resource)
for (e: resource.contents){
if (e instanceof Root) {
doGenerate(e as Root)
}
}
}
def void doGenerate(Root e) {
dataClassGen.doGenerate(e);
protocolClassGen.doGenerate(e);
actorClassGen.doGenerate(e);
subsystemClassGen.doGenerate(e);
if (!e.library) {
subsystemRunnerGen.doGenerate(e);
}
}
}