blob: bf4f0ce3c7b5a5e323073fba920fd6a27fa8a886 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.seatunnel.core.flink;
import org.apache.seatunnel.core.base.config.ConfigParser;
import org.apache.seatunnel.core.base.utils.CommandLineUtils;
import org.apache.seatunnel.core.flink.args.FlinkCommandArgs;
import org.apache.seatunnel.core.flink.config.FlinkJobType;
import org.apache.commons.lang3.StringUtils;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
import java.util.Map;
/**
* Used to parse the variables need to set into the environment.
*/
public class FlinkEnvParameterParser {
@SuppressWarnings("checkstyle:RegexpSingleline")
public static void main(String[] args) throws FileNotFoundException {
FlinkCommandArgs flinkCommandArgs = CommandLineUtils.parse(args, new FlinkCommandArgs(), FlinkJobType.JAR.getType(), true);
List<String> envParameters = getEnvParameters(flinkCommandArgs);
System.out.println(String.join(" ", envParameters));
}
static List<String> getEnvParameters(FlinkCommandArgs flinkCommandArgs) throws FileNotFoundException {
List<String> envParameters = new ArrayList<>();
// add variables
flinkCommandArgs.getVariables().stream()
.filter(StringUtils::isNotBlank)
.map(String::trim)
.forEach(parameter -> envParameters.add("-D" + parameter));
// add env
ConfigParser.getConfigEnvValues(flinkCommandArgs.getConfigFile())
.entrySet()
.stream()
.sorted(Comparator.comparing(Map.Entry::getKey))
.forEach(entry -> envParameters.add("-D" + entry.getKey() + "=" + entry.getValue()));
return envParameters;
}
}