use of org.talend.core.model.properties.StatAndLogsSettings in project tdi-studio-se by Talend.
the class ChangeOracleVersionForProjectSetting method execute.
/*
* (non-Javadoc)
*
* @see org.talend.migration.IProjectMigrationTask#execute(org.talend.core.model.general.Project)
*/
@Override
public ExecutionResult execute(Project project) {
org.talend.core.model.properties.Project emfProject = project.getEmfProject();
StatAndLogsSettings statAndLogs = emfProject.getStatAndLogsSettings();
boolean modified = false;
if (statAndLogs != null && statAndLogs.getParameters() != null) {
ParametersType parameters = statAndLogs.getParameters();
List elementParameter = parameters.getElementParameter();
for (int i = 0; i < elementParameter.size(); i++) {
final Object object = elementParameter.get(i);
if (object instanceof ElementParameterTypeImpl) {
ElementParameterTypeImpl parameterType = (ElementParameterTypeImpl) object;
String name = parameterType.getName();
if ("ON_DATABASE_FLAG".equals(name) && !Boolean.valueOf(parameterType.getValue())) {
//$NON-NLS-1$
break;
}
if ("DB_VERSION".equals(name)) {
//$NON-NLS-1$
modified = updateJarValue(parameterType) || modified;
}
}
}
}
ImplicitContextSettings implicitContext = emfProject.getImplicitContextSettings();
if (implicitContext != null && implicitContext.getParameters() != null) {
ParametersType parameters = implicitContext.getParameters();
List elementParameter = parameters.getElementParameter();
for (int i = 0; i < elementParameter.size(); i++) {
final Object object = elementParameter.get(i);
if (object instanceof ElementParameterTypeImpl) {
ElementParameterTypeImpl parameterType = (ElementParameterTypeImpl) object;
String name = parameterType.getName();
if ("FROM_DATABASE_FLAG_IMPLICIT_CONTEXT".equals(name) && !Boolean.valueOf(parameterType.getValue())) {
//$NON-NLS-1$
break;
}
if ("DB_VERSION_IMPLICIT_CONTEXT".equals(name)) {
//$NON-NLS-1$
modified = updateJarValue(parameterType) || modified;
}
}
}
}
if (modified) {
try {
IProxyRepositoryFactory prf = CorePlugin.getDefault().getProxyRepositoryFactory();
prf.saveProject(project);
return ExecutionResult.SUCCESS_NO_ALERT;
} catch (PersistenceException e) {
ExceptionHandler.process(e);
return ExecutionResult.FAILURE;
}
}
return ExecutionResult.NOTHING_TO_DO;
}
use of org.talend.core.model.properties.StatAndLogsSettings in project tdi-studio-se by Talend.
the class StatsAndLogsHelper method loadPreferenceToProject.
/**
*
* Load StatsAndLogs Preference setting to Project Only load Once
*
* @param pro
*/
static void loadPreferenceToProject(Project pro) {
TalendFileFactory talendF = TalendFileFactory.eINSTANCE;
StatAndLogsSettings stats = PropertiesFactory.eINSTANCE.createStatAndLogsSettings();
pro.getEmfProject().setStatAndLogsSettings(stats);
stats.setParameters(talendF.createParametersType());
ParametersType pType = stats.getParameters();
StatsAndLogsElement elem = new StatsAndLogsElement();
pro.setStatsAndLog(elem);
StatsAndLogsHelper.createStatsAndLogsParameters(elem);
ElementParameter2ParameterType.saveElementParameters(elem, pType);
}
use of org.talend.core.model.properties.StatAndLogsSettings in project tdi-studio-se by Talend.
the class ProjectSettingManager method defaultUseProjectSetting.
/**
*
* when create a new job default use project settings
*
* @param pItem
*/
public static void defaultUseProjectSetting(org.talend.designer.core.ui.editor.process.Process process) {
if (process == null) {
return;
}
ImplicitContextSettings implicit = ProjectManager.getInstance().getCurrentProject().getEmfProject().getImplicitContextSettings();
Boolean bImplicit = false;
if (implicit != null) {
String v = ElementParameter2ParameterType.getParameterValue(implicit.getParameters(), EParameterName.IMPLICT_DEFAULT_PROJECTSETTING.getName());
if (v != null && Boolean.valueOf(v)) {
bImplicit = Boolean.valueOf(v);
}
}
if (bImplicit) {
ElementParameter2ParameterType.setParameterValue(process, EParameterName.IMPLICITCONTEXT_USE_PROJECT_SETTINGS.getName(), bImplicit);
reloadImplicitValuesFromProjectSettings(process, ProjectManager.getInstance().getCurrentProject(), null);
}
// stat and log
StatAndLogsSettings stat = ProjectManager.getInstance().getCurrentProject().getEmfProject().getStatAndLogsSettings();
Boolean bStat = false;
if (stat != null) {
String v = ElementParameter2ParameterType.getParameterValue(stat.getParameters(), EParameterName.STATS_DEFAULT_PROJECTSETTING.getName());
if (v != null || Boolean.valueOf(v)) {
bStat = Boolean.valueOf(v);
}
}
if (bStat) {
ElementParameter2ParameterType.setParameterValue(process, EParameterName.STATANDLOG_USE_PROJECT_SETTINGS.getName(), bStat);
reloadStatsAndLogFromProjectSettings(process, ProjectManager.getInstance().getCurrentProject(), null);
}
}
use of org.talend.core.model.properties.StatAndLogsSettings in project tdi-studio-se by Talend.
the class JobSettingProjectSettingPage method init.
private void init() {
ImplicitContextSettings implicit = pro.getEmfProject().getImplicitContextSettings();
if (implicit != null) {
String v = ElementParameter2ParameterType.getParameterValue(implicit.getParameters(), EParameterName.IMPLICT_DEFAULT_PROJECTSETTING.getName());
if (v != null)
implicitBtn.setSelection(Boolean.valueOf(v));
else
implicitBtn.setSelection(true);
}
StatAndLogsSettings stat = pro.getEmfProject().getStatAndLogsSettings();
if (stat != null) {
String v = ElementParameter2ParameterType.getParameterValue(stat.getParameters(), EParameterName.STATS_DEFAULT_PROJECTSETTING.getName());
if (v != null)
statBtn.setSelection(Boolean.valueOf(v));
else
statBtn.setSelection(true);
}
}
use of org.talend.core.model.properties.StatAndLogsSettings in project tdi-studio-se by Talend.
the class ProjectSettingManager method createStatsAndLogsElement.
/**
*
* create StatsAndLogsElement for project
*
* @param pro
* @return
*/
public static Element createStatsAndLogsElement(Project pro) {
StatAndLogsSettings stats = pro.getEmfProject().getStatAndLogsSettings();
// load Project's StatsAndLogsSetting to StatsAndLogsElement
if (stats == null) {
StatsAndLogsHelper.loadPreferenceToProject(pro);
} else {
// 10927
if (stats.getParameters() == null) {
stats.setParameters(TalendFileFactory.eINSTANCE.createParametersType());
}
}
Element elem = (Element) pro.getStatsAndLog();
if (elem == null) {
elem = new StatsAndLogsElement();
StatsAndLogsHelper.createStatsAndLogsParameters(elem);
pro.setStatsAndLog(elem);
}
return elem;
}
Aggregations