/* * Copyright 2017, OpenSkywalking Organization All rights reserved. * * Licensed 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. * * Project repository: https://github.com/OpenSkywalking/skywalking */ package org.skywalking.apm.collector.storage.h2.dao; import java.util.HashMap; import java.util.Map; import org.skywalking.apm.collector.client.h2.H2Client; import org.skywalking.apm.collector.client.h2.H2ClientException; import org.skywalking.apm.collector.core.data.Data; import org.skywalking.apm.collector.storage.dao.IApplicationDAO; import org.skywalking.apm.collector.storage.h2.base.dao.H2DAO; import org.skywalking.apm.collector.storage.base.sql.SqlBuilder; import org.skywalking.apm.collector.storage.table.register.ApplicationDataDefine; import org.skywalking.apm.collector.storage.table.register.ApplicationTable; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * @author peng-yongsheng, clevertension */ public class ApplicationH2DAO extends H2DAO implements IApplicationDAO { private final Logger logger = LoggerFactory.getLogger(ApplicationH2DAO.class); @Override public int getMaxApplicationId() { return getMaxId(ApplicationTable.TABLE, ApplicationTable.COLUMN_APPLICATION_ID); } @Override public int getMinApplicationId() { return getMinId(ApplicationTable.TABLE, ApplicationTable.COLUMN_APPLICATION_ID); } @Override public void save(Data data) { String id = ApplicationDataDefine.Application.INSTANCE.getId(data); int applicationId = ApplicationDataDefine.Application.INSTANCE.getApplicationId(data); String applicationCode = ApplicationDataDefine.Application.INSTANCE.getApplicationCode(data); H2Client client = getClient(); Map source = new HashMap<>(); source.put(ApplicationTable.COLUMN_ID, id); source.put(ApplicationTable.COLUMN_APPLICATION_CODE, applicationCode); source.put(ApplicationTable.COLUMN_APPLICATION_ID, applicationId); String sql = SqlBuilder.buildBatchInsertSql(ApplicationTable.TABLE, source.keySet()); Object[] params = source.values().toArray(new Object[0]); try { client.execute(sql, params); } catch (H2ClientException e) { logger.error(e.getMessage(), e); } } }