Search in sources :

Example 1 with MethodDispatcher

use of org.apache.cxf.jaxrs.model.MethodDispatcher in project tomee by apache.

the class CxfRsHttpListener method logEndpoints.

private void logEndpoints(final Application application, final String prefix, final Map<String, EJBRestServiceInfo> restEjbs, final JAXRSServerFactoryBean factory, final String base) {
    final List<Logs.LogResourceEndpointInfo> resourcesToLog = new ArrayList<>();
    int classSize = 0;
    int addressSize = 0;
    final JAXRSServiceImpl service = (JAXRSServiceImpl) factory.getServiceFactory().getService();
    final List<ClassResourceInfo> resources = service.getClassResourceInfos();
    for (final ClassResourceInfo info : resources) {
        if (info.getResourceClass() == null) {
            // possible?
            continue;
        }
        final String address = Logs.singleSlash(base, info.getURITemplate().getValue());
        final String clazz = info.getResourceClass().getName();
        final String type;
        if (restEjbs.containsKey(clazz)) {
            type = "EJB";
        } else {
            type = "Pojo";
        }
        classSize = Math.max(classSize, clazz.length());
        addressSize = Math.max(addressSize, address.length());
        int methodSize = 7;
        int methodStrSize = 0;
        final List<Logs.LogOperationEndpointInfo> toLog = new ArrayList<>();
        final MethodDispatcher md = info.getMethodDispatcher();
        for (final OperationResourceInfo ori : md.getOperationResourceInfos()) {
            final String httpMethod = ori.getHttpMethod();
            final String currentAddress = Logs.singleSlash(address, ori.getURITemplate().getValue());
            final String methodToStr = Logs.toSimpleString(ori.getMethodToInvoke());
            toLog.add(new Logs.LogOperationEndpointInfo(httpMethod, currentAddress, methodToStr));
            if (httpMethod != null) {
                methodSize = Math.max(methodSize, httpMethod.length());
            }
            addressSize = Math.max(addressSize, currentAddress.length());
            methodStrSize = Math.max(methodStrSize, methodToStr.length());
        }
        Collections.sort(toLog);
        resourcesToLog.add(new Logs.LogResourceEndpointInfo(type, address, clazz, toLog, methodSize, methodStrSize));
    }
    // effective logging
    LOGGER.info("REST Application: " + Logs.forceLength(prefix, addressSize, true) + " -> " + (InternalApplication.class.isInstance(application) && InternalApplication.class.cast(application).getOriginal() != null ? InternalApplication.class.cast(application).getOriginal() : application));
    Collections.sort(resourcesToLog);
    for (final Logs.LogResourceEndpointInfo resource : resourcesToLog) {
        // Init and register MBeans
        final ObjectNameBuilder jmxName = new ObjectNameBuilder("openejb.management").set("j2eeType", "JAX-RS").set("J2EEServer", "openejb").set("J2EEApplication", base).set("EndpointType", resource.type).set("name", resource.classname);
        final ObjectName jmxObjectName = jmxName.build();
        LocalMBeanServer.registerDynamicWrapperSilently(new RestServiceMBean(resource), jmxObjectName);
        jmxNames.add(jmxObjectName);
        LOGGER.info("     Service URI: " + Logs.forceLength(resource.address, addressSize, true) + " -> " + Logs.forceLength(resource.type, 4, false) + " " + Logs.forceLength(resource.classname, classSize, true));
        for (final Logs.LogOperationEndpointInfo log : resource.operations) {
            LOGGER.info("          " + Logs.forceLength(log.http, resource.methodSize, false) + " " + Logs.forceLength(log.address, addressSize, true) + " ->      " + Logs.forceLength(log.method, resource.methodStrSize, true));
        }
        resource.operations.clear();
    }
    resourcesToLog.clear();
}
Also used : InternalApplication(org.apache.openejb.server.rest.InternalApplication) CopyOnWriteArrayList(java.util.concurrent.CopyOnWriteArrayList) ArrayList(java.util.ArrayList) ClassResourceInfo(org.apache.cxf.jaxrs.model.ClassResourceInfo) ManagedEndpoint(org.apache.cxf.endpoint.ManagedEndpoint) Endpoint(org.apache.cxf.endpoint.Endpoint) ObjectName(javax.management.ObjectName) JAXRSServiceImpl(org.apache.cxf.jaxrs.JAXRSServiceImpl) ObjectNameBuilder(org.apache.openejb.monitoring.ObjectNameBuilder) OperationResourceInfo(org.apache.cxf.jaxrs.model.OperationResourceInfo) MethodDispatcher(org.apache.cxf.jaxrs.model.MethodDispatcher)

Aggregations

ArrayList (java.util.ArrayList)1 CopyOnWriteArrayList (java.util.concurrent.CopyOnWriteArrayList)1 ObjectName (javax.management.ObjectName)1 Endpoint (org.apache.cxf.endpoint.Endpoint)1 ManagedEndpoint (org.apache.cxf.endpoint.ManagedEndpoint)1 JAXRSServiceImpl (org.apache.cxf.jaxrs.JAXRSServiceImpl)1 ClassResourceInfo (org.apache.cxf.jaxrs.model.ClassResourceInfo)1 MethodDispatcher (org.apache.cxf.jaxrs.model.MethodDispatcher)1 OperationResourceInfo (org.apache.cxf.jaxrs.model.OperationResourceInfo)1 ObjectNameBuilder (org.apache.openejb.monitoring.ObjectNameBuilder)1 InternalApplication (org.apache.openejb.server.rest.InternalApplication)1