View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *     http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  
18  package org.apache.shardingsphere.infra.metadata.database.schema.reviser;
19  
20  import lombok.RequiredArgsConstructor;
21  import org.apache.shardingsphere.infra.database.core.type.DatabaseType;
22  import org.apache.shardingsphere.infra.metadata.database.schema.builder.GenericSchemaBuilderMaterial;
23  import org.apache.shardingsphere.infra.database.core.metadata.data.model.SchemaMetaData;
24  import org.apache.shardingsphere.infra.metadata.database.schema.reviser.schema.SchemaMetaDataReviseEngine;
25  import org.apache.shardingsphere.infra.rule.ShardingSphereRule;
26  
27  import javax.sql.DataSource;
28  import java.util.Collection;
29  import java.util.LinkedHashMap;
30  import java.util.Map;
31  import java.util.Map.Entry;
32  
33  /**
34   * Meta data revise engine.
35   */
36  @RequiredArgsConstructor
37  public final class MetaDataReviseEngine {
38      
39      private final Collection<ShardingSphereRule> rules;
40      
41      /**
42       * Revise meta data.
43       * 
44       * @param schemaMetaDataMap schema meta data map
45       * @param material generic schema builder material
46       * @return revised meta data
47       */
48      public Map<String, SchemaMetaData> revise(final Map<String, SchemaMetaData> schemaMetaDataMap, final GenericSchemaBuilderMaterial material) {
49          Map<String, SchemaMetaData> result = new LinkedHashMap<>(schemaMetaDataMap.size(), 1F);
50          for (Entry<String, SchemaMetaData> entry : schemaMetaDataMap.entrySet()) {
51              // TODO establish a corresponding relationship between tables and data sources
52              DatabaseType databaseType = material.getStorageTypes().values().stream().findFirst().orElse(null);
53              DataSource dataSource = material.getDataSourceMap().values().stream().findFirst().orElse(null);
54              result.put(entry.getKey(), new SchemaMetaDataReviseEngine(rules, material.getProps(), databaseType, dataSource).revise(entry.getValue()));
55          }
56          return result;
57      }
58  }