Package org.rioproject.monitor.service

Examples of org.rioproject.monitor.service.InstantiatorResource$Result


        InstantiatorResource[] known = getInstantiatorResources(provisionRequest.getServiceElement(), true);
       
        List<ServiceResource> candidateList = new ArrayList<ServiceResource>();
        candidateList.addAll(Arrays.asList(candidates));
        for (ServiceResource candidate1 : candidates) {
            InstantiatorResource candidate = (InstantiatorResource) candidate1.getResource();
            if (!AssociationMatcher.meetsIsolatedRequirements(provisionRequest.getServiceElement(), candidate, known)) {
                candidateList.remove(candidate1);
            }
        }
        if(logger.isDebugEnabled() && candidateList.isEmpty()) {
View Full Code Here


         * 3. Remove table entries that exceed the count per host
         */
        Map<String, List<ServiceResource>> table = new HashMap<String, List<ServiceResource>>();

        for (ServiceResource candidate : candidates) {
            InstantiatorResource ir = (InstantiatorResource)candidate.getResource();
            List<ServiceResource> list = table.get(ir.getHostAddress());
            if(list==null)
                list = new ArrayList<ServiceResource>();
            list.add(candidate);
            table.put(ir.getHostAddress(), list);
        }

        List<String> remove = new ArrayList<String>();
        for(Map.Entry<String, List<ServiceResource>> entry : table.entrySet()) {
            List<ServiceResource> list = entry.getValue();
            int serviceCount = 0;
            for(ServiceResource sr : list) {
                InstantiatorResource ir = (InstantiatorResource)sr.getResource();
                serviceCount += ir.getInProcessCounter(elem) + ir.getServiceElementCount(elem);
                if(serviceCount>=maxPerMachine) {
                    remove.add(ir.getHostAddress());
                    break;
                }
            }
        }
        for(String s : remove) {
View Full Code Here

     */
    public ServiceResource[] getServiceResources(final ProvisionRequest provisionRequest) throws ProvisionException {
        ServiceResource[] svcResources = getServiceResources();
        ArrayList<ServiceResource> list = new ArrayList<ServiceResource>();
        for (ServiceResource svcResource : svcResources) {
            InstantiatorResource ir = (InstantiatorResource) svcResource.getResource();
            try {
                if (ir.canProvision(provisionRequest)) {
                    list.add(svcResource);
                }
            } catch (Exception e) {
                logger.warn("[{}] during canProvision check for [{}/{}]",
                            ir.getName(),
                            provisionRequest.getServiceElement().getOperationalStringName(),
                            provisionRequest.getServiceElement().getName(),
                            e);
                if(e instanceof ProvisionException)
                    throw (ProvisionException)e;
View Full Code Here

     */
    ServiceResource[] getServiceResources(final Uuid uuid, final boolean inclusive) {
        ServiceResource[] svcResources = getServiceResources();
        ArrayList<ServiceResource> list = new ArrayList<ServiceResource>();
        for (ServiceResource svcResource : svcResources) {
            InstantiatorResource ir = (InstantiatorResource) svcResource.getResource();
            if (ir.getInstantiatorUuid().equals(uuid)) {
                if (inclusive)
                    list.add(svcResource);
            } else {
                if (!inclusive)
                    list.add(svcResource);
View Full Code Here

     * @return Array of ServiceResource instances that match the host address
     */
    ServiceResource[] getServiceResources(final ServiceResource[] svcResources, final String hostAddress, final boolean inclusive) {
        ArrayList<ServiceResource> list = new ArrayList<ServiceResource>();
        for (ServiceResource svcResource : svcResources) {
            InstantiatorResource ir = (InstantiatorResource) svcResource.getResource();
            if (ir.getHostAddress().equals(hostAddress)) {
                if (inclusive)
                    list.add(svcResource);
            } else {
                if (!inclusive)
                    list.add(svcResource);
View Full Code Here

     */
    InstantiatorResource[] getInstantiatorResources(final ServiceElement sElem, final boolean includeInProcess) {
        ServiceResource[] svcResources = getServiceResources();
        ArrayList<InstantiatorResource> list = new ArrayList<InstantiatorResource>();
        for (ServiceResource svcResource : svcResources) {
            InstantiatorResource ir = (InstantiatorResource) svcResource.getResource();
            if (includeInProcess) {
                if (ir.getServiceElementCount(sElem) > 0 ||
                    ir.getInProcessCounter(sElem) > 0)
                    list.add(ir);
            } else {
                if (ir.getServiceElementCount(sElem) > 0)
                    list.add(ir);
            }
        }           
        return list.toArray(new InstantiatorResource[list.size()]);
    }
View Full Code Here

            } else {
                resource = selector.getServiceResource(request);
            }

            if (resource != null) {
                InstantiatorResource ir = (InstantiatorResource) resource.getResource();
                ir.incrementProvisionCounter(request.getServiceElement());
            }
        } catch (ProvisionException e) {
            if (e.isUninstantiable()) {
                request.setType(ProvisionRequest.Type.UNINSTANTIABLE);
                request.getListener().uninstantiable(request);
View Full Code Here

        private DispositionReport getSuccessMessage() {
                DispositionReport r = new DispositionReport();
                r.setGeneric("2.0");
                r.setTruncated(Truncated.FALSE);
                Result x = new Result();
                r.setOperator(getNodeID());
                r.getResult().add(x);
                return r;
        }
View Full Code Here

                List<Result> r = new ArrayList<Result>();
                if (result == null) {
                        return r;
                }
                for (int i = 0; i < result.size(); i++) {
                        Result x = new Result();
                        x.setErrno(result.get(i).getErrno());
                        x.setErrno(result.get(i).getErrno());
                        if (result.get(i).getKeyType() != null) {
                                switch (result.get(i).getKeyType()) {
                                        case BINDING_KEY:
                                                x.setKeyType(KeyType.BINDING_KEY);
                                                break;
                                        case BUSINESS_KEY:
                                                x.setKeyType(KeyType.BUSINESS_KEY);
                                                break;
                                        case SERVICE_KEY:
                                                x.setKeyType(KeyType.SERVICE_KEY);
                                                break;
                                        case T_MODEL_KEY:
                                                x.setKeyType(KeyType.T_MODEL_KEY);
                                                break;
                                }
                        }
                        x.setErrInfo(new ErrInfo());
                        x.getErrInfo().setErrCode(result.get(i).getErrInfo().getErrCode());
                        x.getErrInfo().setValue(result.get(i).getErrInfo().getValue());
                        r.add(x);
                }
               
                return r;
        }
View Full Code Here

   
   
    new ValidateSubscriptionListener().validateNotification(body);
     
    DispositionReport dr = new DispositionReport();
    Result res = new Result();
    dr.getResult().add(res);
    return dr;
  }
View Full Code Here

TOP

Related Classes of org.rioproject.monitor.service.InstantiatorResource$Result

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.