com.alibaba.nacos.istio.mcp.ServiceEntryMcpGenerator Maven / Gradle / Ivy
/*
* Copyright 1999-2018 Alibaba Group Holding Ltd.
*
* 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.
*/
package com.alibaba.nacos.istio.mcp;
import com.alibaba.nacos.istio.api.ApiGenerator;
import com.alibaba.nacos.istio.common.ResourceSnapshot;
import com.alibaba.nacos.istio.model.ServiceEntryWrapper;
import com.google.protobuf.Any;
import istio.mcp.v1alpha1.MetadataOuterClass;
import istio.mcp.v1alpha1.ResourceOuterClass.Resource;
import istio.networking.v1alpha3.ServiceEntryOuterClass;
import java.util.ArrayList;
import java.util.List;
import static com.alibaba.nacos.istio.api.ApiConstants.SERVICE_ENTRY_PROTO;
/**
* @author special.fy
*/
public class ServiceEntryMcpGenerator implements ApiGenerator {
private volatile static ServiceEntryMcpGenerator singleton = null;
public static ServiceEntryMcpGenerator getInstance() {
if (singleton == null) {
synchronized (ServiceEntryMcpGenerator.class) {
if (singleton == null) {
singleton = new ServiceEntryMcpGenerator();
}
}
}
return singleton;
}
@Override
public List generate(ResourceSnapshot resourceSnapshot) {
List result = new ArrayList<>();
List serviceEntries = resourceSnapshot.getServiceEntries();
for (ServiceEntryWrapper serviceEntryWrapper : serviceEntries) {
MetadataOuterClass.Metadata metadata = serviceEntryWrapper.getMetadata();
ServiceEntryOuterClass.ServiceEntry serviceEntry = serviceEntryWrapper.getServiceEntry();
Any any = Any.newBuilder().setValue(serviceEntry.toByteString()).setTypeUrl(SERVICE_ENTRY_PROTO).build();
result.add(Resource.newBuilder().setBody(any).setMetadata(metadata).build());
}
return result;
}
}