InstanceMapping.java 3.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * 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.skywalking.apm.collector.storage.table.instance;

21 22 23
import org.apache.skywalking.apm.collector.core.data.*;
import org.apache.skywalking.apm.collector.core.data.column.*;
import org.apache.skywalking.apm.collector.core.data.operator.*;
24
import org.apache.skywalking.apm.collector.remote.service.RemoteDataRegisterService;
25 26 27 28

/**
 * @author peng-yongsheng
 */
29
public class InstanceMapping extends StreamData {
30

31 32 33
    private static final StringColumn[] STRING_COLUMNS = {
        new StringColumn(InstanceMappingTable.ID, new NonMergeOperation()),
        new StringColumn(InstanceMappingTable.METRIC_ID, new NonMergeOperation()),
34 35
    };

36 37
    private static final LongColumn[] LONG_COLUMNS = {
        new LongColumn(InstanceMappingTable.TIME_BUCKET, new CoverMergeOperation()),
38 39
    };

40 41 42 43
    private static final IntegerColumn[] INTEGER_COLUMNS = {
        new IntegerColumn(InstanceMappingTable.APPLICATION_ID, new CoverMergeOperation()),
        new IntegerColumn(InstanceMappingTable.INSTANCE_ID, new CoverMergeOperation()),
        new IntegerColumn(InstanceMappingTable.ADDRESS_ID, new CoverMergeOperation()),
44 45
    };

46 47 48
    private static final DoubleColumn[] DOUBLE_COLUMNS = {
    };

49
    public InstanceMapping() {
50
        super(STRING_COLUMNS, LONG_COLUMNS, INTEGER_COLUMNS, DOUBLE_COLUMNS);
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
    }

    @Override public String getId() {
        return getDataString(0);
    }

    @Override public void setId(String id) {
        setDataString(0, id);
    }

    @Override public String getMetricId() {
        return getDataString(1);
    }

    @Override public void setMetricId(String metricId) {
        setDataString(1, metricId);
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
    }

    public int getApplicationId() {
        return getDataInteger(0);
    }

    public void setApplicationId(int applicationId) {
        setDataInteger(0, applicationId);
    }

    public int getInstanceId() {
        return getDataInteger(1);
    }

    public void setInstanceId(int instanceId) {
        setDataInteger(1, instanceId);
    }

    public int getAddressId() {
        return getDataInteger(2);
    }

    public void setAddressId(int addressId) {
        setDataInteger(2, addressId);
    }

    public long getTimeBucket() {
        return getDataLong(0);
    }

    public void setTimeBucket(long timeBucket) {
        setDataLong(0, timeBucket);
    }
100 101 102 103 104 105

    public static class InstanceCreator implements RemoteDataRegisterService.RemoteDataInstanceCreator {
        @Override public RemoteData createInstance() {
            return new InstanceMapping();
        }
    }
106
}