Package org.wso2.carbon.governance.api.services

Examples of org.wso2.carbon.governance.api.services.ServiceManager


                                                    newResource.setContent(newContent.toString().getBytes());
//                                                    the above part is the modification of the service resource
                                                }

                                            }
                                            ServiceManager manager = new ServiceManager(requestContext.getSystemRegistry());
                                            XMLStreamReader reader = XMLInputFactory.newInstance()
                                                    .createXMLStreamReader(
                                                            new ByteArrayInputStream((byte[]) newResource.getContent()));
                                            StAXOMBuilder builder = new StAXOMBuilder(reader);
                                            OMElement serviceElement = builder.getDocumentElement();
                                            serviceElement.build();
                                            OMFactory fac = OMAbstractFactory.getOMFactory();
                                            //adding required fields at the top of the xml which will help to easily read in service side
                                            Iterator it = serviceElement.getChildrenWithLocalName("newServicePath");
                                            if (it.hasNext()) {
                                                while (it.hasNext()) {
                                                    OMElement next = (OMElement) it.next();
                                                    next.setText(resourcePath);
                                                    break;
                                                }
                                            } else {
                                                OMElement operation = fac.createOMElement("newServicePath", serviceElement.getNamespace(), serviceElement);
                                                operation.setText(resourcePath);
                                            }
//                                            this is here to override the default path
                                            serviceElement.build();
                                            newResource.setContent(new String(serviceElement.toString().getBytes()));
                                            newResource.setMediaType(org.wso2.carbon.registry.extensions.utils.CommonConstants.SERVICE_MEDIA_TYPE);
                                            Properties properties = new Properties(resource.getProperties());
                                            newResource.setProperties(properties);

                                            Service service = manager.newService(serviceElement);
                                            manager.addService(service);
                                            resourcePath = CommonUtil.computeServicePathWithVersion(resourcePath, parameterMap.get(currentResourcePath));
                                            changed = true;

                                        } else if (action.equals("Demote")) {
                                            return;
View Full Code Here


public class ListServiceUtil {
    private static final Log log = LogFactory.getLog(ListServiceUtil.class);
    public static String[] filterServices(String criteria, Registry governanceRegistry) throws RegistryException {
        try {
            ServiceManager serviceManger = new ServiceManager(governanceRegistry);
            final Service referenceService;
            if (criteria != null) {
                XMLStreamReader reader = XMLInputFactory.newInstance().createXMLStreamReader(new StringReader(criteria));
                StAXOMBuilder builder = new StAXOMBuilder(reader);
                OMElement referenceServiceElement = builder.getDocumentElement();
                referenceService = serviceManger.newService(referenceServiceElement);
            } else {
                referenceService = null;
            }
            //ListServiceFilter listServiceFilter = new ListServiceFilter(referenceService);
            ServiceFilter listServiceFilter = new ServiceFilter() {
                GovernanceArtifactFilter filter = new GovernanceArtifactFilter(referenceService);
                public boolean matches(Service service) throws GovernanceException {
                    return filter.matches(service);
                }
            };
            Service[] services = serviceManger.findServices(listServiceFilter);

            List<String> servicePaths = new ArrayList<String>();
            if (services != null) {
                for (Service service: services) {
                    servicePaths.add(service.getPath());
View Full Code Here

     * @param probe a WS-D probe describing the search criteria
     * @return an array of TargetService instances matching the probe or null
     * @throws Exception if an error occurs while accessing the registry
     */
    public static TargetService[] findServices(Probe probe) throws Exception {       
        ServiceManager serviceManager = new ServiceManager(getRegistry());
        DiscoveryServiceFilter filter = new DiscoveryServiceFilter(probe);

        // Check whether the inactive services should be skipped when searching
        AxisConfiguration axisConfig;
        String tenantDomain = SuperTenantCarbonContext.getCurrentContext().getTenantDomain(true);
        ConfigurationContext mainCfgCtx = ConfigHolder.getInstance().getServerConfigurationContext();
        if (tenantDomain != null) {
            axisConfig = TenantAxisUtils.getTenantAxisConfiguration(tenantDomain, mainCfgCtx);
        } else {
            axisConfig = mainCfgCtx.getAxisConfiguration();
        }
       
        Parameter parameter = axisConfig.getParameter(DiscoveryConstants.SKIP_INACTIVE_SERVICES);
        if (parameter != null && "true".equals(parameter.getValue())) {
            filter.setSkipInactiveServices(true);
        }

        Service[] services = serviceManager.findServices(filter);
        if (services != null && services.length > 0) {
            TargetService[] targetServices = new TargetService[services.length];
            for (int i = 0; i < services.length; i++) {
                targetServices[i] = getTargetService(services[i]);
            }
View Full Code Here

public class ImpactAnalysisAdminService extends RegistryAbstractAdmin {

  public ImpactBean getImpactAnalysisBean() throws GovernanceException {
    Registry registry = getGovernanceRegistry();
    ServiceManager manager = new ServiceManager(registry);
    return BeanUtils.populateImpactBean(manager);
  }
View Full Code Here

import java.io.FileInputStream;

public class ServiceTest extends BaseTestCase {
   
    public void testAddService() throws Exception {
        ServiceManager serviceManager = new ServiceManager(registry);

        Service service = serviceManager.newService(new QName("http://bang.boom.com/mnm/beep", "MyService"));
        service.addAttribute("testAttribute", "somevalue");
        serviceManager.addService(service);

        String serviceId = service.getId();
        Service newService = serviceManager.getService(serviceId);

        assertEquals(newService.getAttribute("testAttribute"), "somevalue");

        service.addAttribute("testAttribute", "somevalue2");
        serviceManager.updateService(service);

        newService = serviceManager.getService(serviceId);

        String[] values = newService.getAttributes("testAttribute");

        assertEquals(values.length, 2);
    }
View Full Code Here

        byte[] fileContents = new byte[(int)file.length()];
        fileInputStream.read(fileContents);

        OMElement contentElement = GovernanceUtils.buildOMElement(fileContents);

        ServiceManager serviceManager = new ServiceManager(registry);                                      
        Service service = serviceManager.newService(contentElement);

        service.addAttribute("custom-attribute", "custom-value");
        serviceManager.addService(service);


        // so retrieve it back
        String serviceId = service.getId();
        Service newService = serviceManager.getService(serviceId);

        assertEquals(newService.getAttribute("custom-attribute")"custom-value");
        assertEquals(newService.getAttribute("interface_wsdlURL"),
                "/_system/governance/wsdls/com/foo/abc.wsdl");
        assertEquals(service.getQName(), newService.getQName());

        Service service2 = serviceManager.newService(new QName("http://baps.paps.mug/done", "meep"));
        service2.addAttribute("custom-attribute", "custom-value2");
        serviceManager.addService(service2);

        Service service3 =  serviceManager.newService(new QName("http://baps.paps.mug/jug", "peem"));
        service3.addAttribute("custom-attribute", "not-custom-value");
        serviceManager.addService(service3);

        Service service4 =  serviceManager.newService(new QName("http://baps.dadan.mug/jug", "doon"));
        service4.addAttribute("not-custom-attribute", "custom-value3");
        serviceManager.addService(service4);

        Service[] services = serviceManager.findServices(new ServiceFilter() {
            public boolean matches(Service service) throws GovernanceException {
                String attributeVal = service.getAttribute("custom-attribute");
                if (attributeVal != null && attributeVal.startsWith("custom-value")) {
                    return true;
                }
                return false;
            }
        });

        assertEquals(services.length, 2);
        assertTrue(services[0].getQName().equals(service.getQName()) ||
                services[0].getQName().equals(service2.getQName()));
        assertTrue(services[1].getQName().equals(service.getQName()) ||
                services[1].getQName().equals(service2.getQName()));

        // update the service2
        service2.setQName(new QName("http://bom.bom.com/baaaang", "bingo"));
        serviceManager.updateService(service2);

        newService = serviceManager.getService(service2.getId());
        assertEquals(service2.getAttribute("custom-attribute"), "custom-value2");


        // do the test again
        services = serviceManager.findServices(new ServiceFilter() {
            public boolean matches(Service service) throws GovernanceException {
                String attributeVal = service.getAttribute("custom-attribute");
                if (attributeVal != null && attributeVal.startsWith("custom-value")) {
                    return true;
                }
View Full Code Here

        WsdlManager wsdlManager = new WsdlManager(registry);

        Wsdl wsdl = wsdlManager.newWsdl("http://svn.wso2.org/repos/wso2/trunk/carbon/components/governance/org.wso2.carbon.governance.api/src/test/resources/test-resources/wsdl/BizService.wsdl");
         wsdlManager.addWsdl(wsdl);

        ServiceManager serviceManager = new ServiceManager(registry);
        Service service = serviceManager.newService(new QName("http://test/org/bang", "myservice"));
        serviceManager.addService(service);

        service.attachWSDL(wsdl);

        Wsdl[] wsdls = service.getAttachedWsdls();

        assertEquals(wsdls.length, 1);
        assertEquals(wsdls[0].getQName(), new QName("http://foo.com", "BizService.wsdl"));

        Schema[] schemas = wsdls[0].getAttachedSchemas();

        assertEquals(schemas.length, 1);
        assertEquals(schemas[0].getQName(), new QName("http://bar.org/purchasing", "purchasing.xsd"));
        assertNotNull(schemas[0].getId());

        // now add a policy.
        PolicyManager policyManager = new PolicyManager(registry);

        Policy policy = policyManager.newPolicy(
                "http://svn.wso2.org/repos/wso2/tags/wsf/php/2.1.0/samples/security/" +
                        "complete/policy.xml");
        policy.setName("mypolicy.xml");
        policyManager.addPolicy(policy);

        service.attachPolicy(policy);

        Policy[] policies = service.getAttachedPolicies();
        assertEquals(policies.length, 1);
        assertEquals(policies[0].getQName(), new QName("mypolicy.xml"));

        File file = new File("src/test/resources/service.metadata.xml");
        FileInputStream fileInputStream = new FileInputStream(file);
        byte[] fileContents = new byte[(int)file.length()];
        fileInputStream.read(fileContents);

        OMElement contentElement = GovernanceUtils.buildOMElement(fileContents);

        service = serviceManager.newService(contentElement);
        //serviceManager.addService(service);

        String[] serviceIds = serviceManager.getAllServiceIds();
        for (String serviceId: serviceIds) {
            Service servicex = serviceManager.getService(serviceId);
            Policy[] policiesx = servicex.getAttachedPolicies();
            if (policiesx != null && policiesx.length != 0) {
                assertEquals(policiesx[0].getQName(), new QName("mypolicy.xml"));
            }
        }
View Full Code Here

        }

    }

    public void testServiceRename() throws Exception {
        ServiceManager serviceManager = new ServiceManager(registry);

        Service service = serviceManager.newService(new QName("http://banga.queek.queek/blaa", "sfosf"));
        serviceManager.addService(service);

        service.setQName(new QName("http://doc.x.ge/yong", "almdo"));
        serviceManager.updateService(service);

        Service exactServiceCopy = serviceManager.getService(service.getId());
        QName qname = exactServiceCopy.getQName();

        assertEquals(new QName("http://doc.x.ge/yong", "almdo"), qname);
        assertEquals(RegistryUtils.getRelativePathToOriginal(registry.getRegistryContext().getServicePath(),
                RegistryConstants.GOVERNANCE_REGISTRY_BASE_PATH) +
                "/ge/x/doc/yong/almdo/1.0.0-SNAPSHOT/service", exactServiceCopy.getPath());


        // doing the same for a meta data service
        File file = new File("src/test/resources/service.metadata.xml");
        FileInputStream fileInputStream = new FileInputStream(file);
        byte[] fileContents = new byte[(int)file.length()];
        fileInputStream.read(fileContents);

        OMElement contentElement = GovernanceUtils.buildOMElement(fileContents);

        service = serviceManager.newService(contentElement);
        serviceManager.addService(service);

        service.setQName(new QName("http://doc.x.ge/yong", "almdo"));
        serviceManager.updateService(service);

        exactServiceCopy = serviceManager.getService(service.getId());
        qname = exactServiceCopy.getQName();

        assertEquals(new QName("http://doc.x.ge/yong", "almdo"), qname);
        assertEquals(RegistryUtils.getRelativePathToOriginal(registry.getRegistryContext().getServicePath(),
                RegistryConstants.GOVERNANCE_REGISTRY_BASE_PATH) +
View Full Code Here

                "/ge/x/doc/yong/almdo/1.0.0-SNAPSHOT/service", exactServiceCopy.getPath());
               
    }

    public void testServiceDelete() throws Exception {
        ServiceManager serviceManager = new ServiceManager(registry);

        Service service = serviceManager.newService(new QName("http://banga.doom.queek/blaa", "lmnop"));
        serviceManager.addService(service);

        Service newService = serviceManager.getService(service.getId());
        assertNotNull(newService);

        serviceManager.removeService(newService.getId());
        newService = serviceManager.getService(service.getId());
        assertNull(newService);


        service = serviceManager.newService(new QName("http://banga.bang.queek/blaa", "basss"));
        serviceManager.addService(service);

        newService = serviceManager.getService(service.getId());
        assertNotNull(newService);

        registry.delete(newService.getPath());
        newService = serviceManager.getService(service.getId());
        assertNull(newService);
    }
View Full Code Here

                currentNamespaceElement.detach();
            } else {
                currentNamespace = CommonUtil.getServiceNamespace(serviceElement);
            }

            ServiceManager serviceManager = new ServiceManager(registry);
            Service service = serviceManager.newService(serviceElement);
            String lifeCycleName = service.getAttribute("serviceLifecycle_lifecycleName");

            String finalPath="";

            if ("Edit".equals(operation)) {
                // this is an edit operation, retrieve the old namespace and name

                String currentPath = "";
                if (serviceElement.getChildrenWithLocalName("newServicePath").hasNext()) {
                    Iterator OmElementIterator = serviceElement.getChildrenWithLocalName("newServicePath");

                    while (OmElementIterator.hasNext()) {
                        OMElement next = (OMElement) OmElementIterator.next();
                        currentPath = next.getText();
                        break;
                    }
                }else{
                    currentPath = registry.getRegistryContext().getServicePath() +
                            CommonUtil.derivePathFragmentFromNamespace(currentNamespace) + currentName;
                }
                currentPath = RegistryUtils.getRelativePathToOriginal(currentPath,
                        RegistryConstants.GOVERNANCE_REGISTRY_BASE_PATH);
                finalPath = new String(currentPath);
                String version = service.getAttribute("overview_version");
                if (version == null ) {
                    currentPath = CommonUtil.computeServicePathWithVersion(currentPath, "1.0.0-SNAPSHOT");
                }else{
                    currentPath = CommonUtil.computeServicePathWithVersion(currentPath, version);
                }
                if (registry.resourceExists(currentPath)) {
                    GovernanceArtifact oldArtifact =
                            GovernanceUtils.retrieveGovernanceArtifactByPath(registry, currentPath);
                    if (!(oldArtifact instanceof Service)) {
                        String msg = "The updated path is occupied by a non-service. path: " +
                                currentPath + ".";
                        log.error(msg);
                        throw new Exception(msg);
                    }
                    // id is used to differentiate the service
                    String id = oldArtifact.getId();
                    service.setId(id);
                    serviceManager.updateService(service);
                    Resource serviceResource = registry.get(service.getPath());
                    String oldLifeCycleName = serviceResource.getProperty("registry.LC.name");
                    if (lifeCycleName == null) {
                        removeAspect(registry, service.getPath(), oldLifeCycleName);
                    }
                    if (lifeCycleName != null) {
                        if (oldLifeCycleName == null || !oldLifeCycleName.equals(lifeCycleName)) {
                            // if user select a different lifecycle for the service, first delete
                            // the previous one and then associate the new one.
                            removeAspect(registry, service.getPath(), oldLifeCycleName);
                            registry.associateAspect(service.getPath(), lifeCycleName);
                        }
                    }
                    return true;
                }
            }
            serviceManager.addService(service);
            if (lifeCycleName != null) {
                registry.associateAspect(service.getPath(), lifeCycleName);
            }
            /*if (!"".equals(finalPath)) {
                if(service.getPath().startsWith(RegistryConstants.PATH_SEPARATOR+ TRUNK)){
View Full Code Here

TOP

Related Classes of org.wso2.carbon.governance.api.services.ServiceManager

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.