|
| 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.seatunnel.connectors.seatunnel.source; |
| 19 | + |
| 20 | +import org.apache.seatunnel.api.common.JobContext; |
| 21 | +import org.apache.seatunnel.api.configuration.ReadonlyConfig; |
| 22 | +import org.apache.seatunnel.api.source.Boundedness; |
| 23 | +import org.apache.seatunnel.api.table.catalog.CatalogTable; |
| 24 | +import org.apache.seatunnel.api.table.catalog.PhysicalColumn; |
| 25 | +import org.apache.seatunnel.api.table.catalog.TableIdentifier; |
| 26 | +import org.apache.seatunnel.api.table.catalog.TablePath; |
| 27 | +import org.apache.seatunnel.api.table.catalog.TableSchema; |
| 28 | +import org.apache.seatunnel.api.table.type.BasicType; |
| 29 | +import org.apache.seatunnel.api.table.type.SeaTunnelRow; |
| 30 | +import org.apache.seatunnel.common.constants.JobMode; |
| 31 | +import org.apache.seatunnel.connectors.seatunnel.common.source.AbstractSingleSplitReader; |
| 32 | +import org.apache.seatunnel.connectors.seatunnel.common.source.AbstractSingleSplitSource; |
| 33 | +import org.apache.seatunnel.connectors.seatunnel.common.source.SingleSplitReaderContext; |
| 34 | + |
| 35 | +import java.util.ArrayList; |
| 36 | +import java.util.Collections; |
| 37 | +import java.util.HashMap; |
| 38 | +import java.util.List; |
| 39 | + |
| 40 | +public class Web3jSource extends AbstractSingleSplitSource<SeaTunnelRow> { |
| 41 | + private Web3jSourceParameter parameter; |
| 42 | + private JobContext jobContext; |
| 43 | + |
| 44 | + public Web3jSource(ReadonlyConfig readonlyConfig) { |
| 45 | + this.parameter = new Web3jSourceParameter(readonlyConfig); |
| 46 | + } |
| 47 | + |
| 48 | + @Override |
| 49 | + public Boundedness getBoundedness() { |
| 50 | + return JobMode.BATCH.equals(jobContext.getJobMode()) |
| 51 | + ? Boundedness.BOUNDED |
| 52 | + : Boundedness.UNBOUNDED; |
| 53 | + } |
| 54 | + |
| 55 | + @Override |
| 56 | + public String getPluginName() { |
| 57 | + return "Web3j"; |
| 58 | + } |
| 59 | + |
| 60 | + @Override |
| 61 | + public void setJobContext(JobContext jobContext) { |
| 62 | + this.jobContext = jobContext; |
| 63 | + } |
| 64 | + |
| 65 | + @Override |
| 66 | + public List<CatalogTable> getProducedCatalogTables() { |
| 67 | + return Collections.singletonList( |
| 68 | + CatalogTable.of( |
| 69 | + TableIdentifier.of("Web3j", TablePath.DEFAULT), |
| 70 | + TableSchema.builder() |
| 71 | + .column( |
| 72 | + PhysicalColumn.of( |
| 73 | + "value", BasicType.STRING_TYPE, 0L, true, null, "")) |
| 74 | + .build(), |
| 75 | + new HashMap<>(), |
| 76 | + new ArrayList<>(), |
| 77 | + "")); |
| 78 | + } |
| 79 | + |
| 80 | + @Override |
| 81 | + public AbstractSingleSplitReader<SeaTunnelRow> createReader( |
| 82 | + SingleSplitReaderContext readerContext) throws Exception { |
| 83 | + return new Web3jSourceReader(this.parameter, readerContext); |
| 84 | + } |
| 85 | +} |
0 commit comments