by.stub.server.JettyManagerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stubby4j Show documentation
Show all versions of stubby4j Show documentation
HTTP stub server written in Java with embedded Jetty
/*
HTTP stub server written in Java with embedded Jetty
Copyright (C) 2012 Alexander Zagniotov, Isa Goksu and Eric Mrak
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
*/
package by.stub.server;
import by.stub.cli.CommandLineInterpreter;
import by.stub.cli.EmptyLogger;
import by.stub.database.DataStore;
import by.stub.database.thread.ConfigurationScanner;
import by.stub.utils.FileUtils;
import by.stub.yaml.YamlParser;
import by.stub.yaml.stubs.StubHttpLifecycle;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.util.log.Log;
import java.io.File;
import java.util.List;
import java.util.Map;
public class JettyManagerFactory {
public JettyManagerFactory() {
}
public JettyManager construct(final String dataYamlFilename, final Map commandLineArgs) throws Exception {
Log.setLog(new EmptyLogger());
final File dataYamlFile = new File(dataYamlFilename);
final List httpLifecycles = new YamlParser().parse(dataYamlFile, FileUtils.constructReader(dataYamlFile));
System.out.println();
final DataStore dataStore = new DataStore(dataYamlFile, httpLifecycles);
final JettyFactory jettyFactory = new JettyFactory(commandLineArgs, dataStore);
final Server server = jettyFactory.construct();
if (commandLineArgs.containsKey(CommandLineInterpreter.OPTION_WATCH)) {
watchDataStore(dataStore);
}
return new JettyManager(server);
}
public void watchDataStore(final DataStore dataStore) {
final ConfigurationScanner configurationScanner = new ConfigurationScanner(dataStore);
new Thread(configurationScanner, ConfigurationScanner.class.getCanonicalName()).start();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy