Java tutorial
/* * 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.servicecomb.core.definition.loader; import java.util.List; import org.apache.commons.io.FilenameUtils; import org.apache.commons.io.IOUtils; import org.apache.servicecomb.core.Handler; import org.apache.servicecomb.core.SCBEngine; import org.apache.servicecomb.core.definition.MicroserviceMeta; import org.apache.servicecomb.core.definition.SchemaMeta; import org.apache.servicecomb.core.definition.SchemaUtils; import org.apache.servicecomb.core.handler.ConsumerHandlerManager; import org.apache.servicecomb.core.handler.ProducerHandlerManager; import org.apache.servicecomb.serviceregistry.RegistryUtils; import org.apache.servicecomb.serviceregistry.api.Const; import org.apache.servicecomb.serviceregistry.api.registry.BasePath; import org.apache.servicecomb.serviceregistry.api.registry.Microservice; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.core.io.Resource; import org.springframework.stereotype.Component; import org.springframework.util.StringUtils; import com.netflix.config.DynamicPropertyFactory; import io.swagger.models.Swagger; @Component public class SchemaLoader { private static final Logger LOGGER = LoggerFactory.getLogger(SchemaLoader.class); /* * resource??schemaId.yaml */ public SchemaMeta registerSchema(String microserviceName, Resource resource) { try { String schemaId = FilenameUtils.getBaseName(resource.getFilename()); String swaggerContent = IOUtils.toString(resource.getURL()); SchemaMeta schemaMeta = registerSchema(microserviceName, schemaId, swaggerContent); return schemaMeta; } catch (Throwable e) { throw new Error(e); } } public SchemaMeta registerSchema(String microserviceName, String schemaId, String swaggerContent) { Swagger swagger = SchemaUtils.parseSwagger(swaggerContent); if (swagger == null) { throw new Error(String.format("Parse the swagger for %s:%s failed", microserviceName, schemaId)); } return registerSchema(schemaId, swagger); } public SchemaMeta registerSchema(String schemaId, Swagger swagger) { MicroserviceMeta microserviceMeta = SCBEngine.getInstance().getProducerMicroserviceMeta(); return registerSchema(microserviceMeta, schemaId, swagger); } public SchemaMeta registerSchema(MicroserviceMeta microserviceMeta, String schemaId, Swagger swagger) { String microserviceName = microserviceMeta.getName(); LOGGER.info("register schema {}/{}/{}", microserviceMeta.getAppId(), microserviceName, schemaId); SchemaMeta schemaMeta = new SchemaMeta(swagger, microserviceMeta, schemaId); List<Handler> producerHandlerChain = ProducerHandlerManager.INSTANCE.getOrCreate(microserviceName); schemaMeta.setProviderHandlerChain(producerHandlerChain); List<Handler> consumerHandlerChain = ConsumerHandlerManager.INSTANCE.getOrCreate(microserviceName); schemaMeta.setConsumerHandlerChain(consumerHandlerChain); microserviceMeta.regSchemaMeta(schemaMeta); addSchemaPath2Microservice(microserviceName, swagger.getBasePath()); return schemaMeta; } void addSchemaPath2Microservice(String microserviceName, String basePath) { if (DynamicPropertyFactory.getInstance().getBooleanProperty(Const.REGISTER_SERVICE_PATH, false).get()) { putSelfBasePathIfAbsent(microserviceName, basePath); } } void putSelfBasePathIfAbsent(String microserviceName, String basePath) { if (basePath == null || basePath.length() == 0) { return; } Microservice microservice = RegistryUtils.getMicroservice(); if (!microservice.getServiceName().equals(microserviceName)) { return; } String urlPrefix = System.getProperty(Const.URL_PREFIX); if (!StringUtils.isEmpty(urlPrefix) && !basePath.startsWith(urlPrefix)) { basePath = urlPrefix + basePath; } List<BasePath> paths = microservice.getPaths(); for (BasePath path : paths) { if (path.getPath().equals(basePath)) { return; } } BasePath basePathObj = new BasePath(); basePathObj.setPath(basePath); paths.add(basePathObj); } }