blob: 0319096103b874352ecc28747a809a26746e0928 [file] [log] [blame]
/**
* Copyright (c) 2020 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Robert Bosch GmbH - initial API and implementation
*/
package org.eclipse.app4mc.slg.linux.transformers.sw;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.eclipse.app4mc.slg.linux.transformers.LinuxBaseTransformer;
import org.eclipse.app4mc.slg.linux.transformers.LinuxTranslationUnit;
import com.google.inject.Singleton;
@Singleton
public class LinuxRealisticCodeTransformer extends LinuxBaseTransformer {
// ---------- generic part "def create new transform(...)" ----------
private final Map<List<Object>, LinuxTranslationUnit> transformCache = new HashMap<>();
public Map<List<Object>, LinuxTranslationUnit> getCache() {
return this.transformCache;
}
public LinuxTranslationUnit transform() {
final List<Object> key = new ArrayList<>(Arrays.asList());
final LinuxTranslationUnit tu;
synchronized (transformCache) {
if (transformCache.containsKey(key)) {
return transformCache.get(key);
}
tu = createTranslationUnit();
transformCache.put(key, tu);
}
// if translation unit is newly created and valid -> create files
if (tu.isValid()) {
doTransform();
}
return tu;
}
// ---------------------------------------------------
private LinuxTranslationUnit createTranslationUnit() {
String basePath = "synthetic_gen";
String moduleName = "codesnippets";
String call = "<realistic code>"; // unused
return new LinuxTranslationUnit(basePath, moduleName, call);
}
private void doTransform() {
// nothing to generate
}
}