blob: 7783d788b6e32ced4863a3a0438c8d3e9db9e2d3 [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.nutch.webui.config;
import java.sql.SQLException;
import java.util.concurrent.Executor;
import org.apache.nutch.webui.client.model.Crawl;
import org.apache.nutch.webui.model.NutchInstance;
import org.apache.nutch.webui.model.SeedList;
import org.apache.nutch.webui.model.SeedUrl;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.AsyncConfigurer;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
import com.j256.ormlite.dao.Dao;
import com.j256.ormlite.db.H2DatabaseType;
import com.j256.ormlite.jdbc.JdbcConnectionSource;
@Configuration
@EnableAsync
public class SpringConfiguration implements AsyncConfigurer {
@Override
public Executor getAsyncExecutor() {
// TODO move magic numbers to properties file
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(7);
executor.setMaxPoolSize(42);
executor.setQueueCapacity(11);
executor.setThreadNamePrefix("SpringExecutor-");
executor.initialize();
return executor;
}
@Bean
public JdbcConnectionSource getConnectionSource() throws SQLException {
JdbcConnectionSource source = new JdbcConnectionSource(
"jdbc:h2:~/.nutch/config", new H2DatabaseType());
source.initialize();
return source;
}
@Bean
public CustomDaoFactory getDaoFactory() throws SQLException {
return new CustomDaoFactory(getConnectionSource());
}
@Bean
public Dao<NutchInstance, Long> createNutchDao() throws SQLException {
return getDaoFactory().createDao(NutchInstance.class);
}
@Bean
public Dao<SeedList, Long> createSeedListDao() throws SQLException {
return getDaoFactory().createDao(SeedList.class);
}
@Bean
public Dao<SeedUrl, Long> createSeedUrlDao() throws SQLException {
return getDaoFactory().createDao(SeedUrl.class);
}
@Bean
public Dao<Crawl, Long> createCrawlDao() throws SQLException {
return getDaoFactory().createDao(Crawl.class);
}
@Bean
public CustomTableCreator createTableCreator() throws SQLException {
return new CustomTableCreator(getConnectionSource(), getDaoFactory()
.getCreatedDaos());
}
}