File: PolicyDeployer.java

package info (click to toggle)
libjboss-web-services-java 0.0%2Bsvn5660%2Bdak2-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,276 kB
  • sloc: java: 79,207; xml: 29; makefile: 19; sh: 16
file content (260 lines) | stat: -rw-r--r-- 9,535 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2005, JBoss Inc., and individual contributors as indicated
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.jboss.ws.extensions.policy.deployer;

import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;

import org.apache.ws.policy.AndCompositeAssertion;
import org.apache.ws.policy.Assertion;
import org.apache.ws.policy.Policy;
import org.apache.ws.policy.PrimitiveAssertion;
import org.apache.ws.policy.XorCompositeAssertion;
import org.jboss.logging.Logger;
import org.jboss.ws.WSException;
import org.jboss.ws.extensions.policy.deployer.domainAssertion.AssertionDeployer;
import org.jboss.ws.extensions.policy.deployer.domainAssertion.NopAssertionDeployer;
import org.jboss.ws.extensions.policy.deployer.domainAssertion.WSSecurityAssertionDeployer;
import org.jboss.ws.extensions.policy.deployer.exceptions.UnsupportedAlternative;
import org.jboss.ws.extensions.policy.deployer.exceptions.UnsupportedAssertion;
import org.jboss.ws.extensions.policy.deployer.exceptions.UnsupportedPolicy;
import org.jboss.ws.extensions.wsrm.policy.RM10PolicyAssertionDeployer;
import org.jboss.ws.extensions.wsrm.policy.RM11PolicyAssertionDeployer;
import org.jboss.ws.metadata.umdm.ExtensibleMetaData;

/**
 * @author Stefano Maestri <mailto:stefano.maestri@javalinux.it>
 *
 * since 27/04/2007
 */
public class PolicyDeployer
{
   private final static Logger log = Logger.getLogger(PolicyDeployer.class);
   private static PolicyDeployer me;
   private Map<String, Class> domainDeployerMap = new HashMap<String, Class>();

   static
   {
      me = new PolicyDeployer();
      me.domainDeployerMap.put("http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd", WSSecurityAssertionDeployer.class);
      me.domainDeployerMap.put("http://docs.oasis-open.org/ws-rx/wsrmp/200702", RM11PolicyAssertionDeployer.class);
      me.domainDeployerMap.put("http://schemas.xmlsoap.org/ws/2005/02/rm/policy", RM10PolicyAssertionDeployer.class);
   }

   //hide constructor
   PolicyDeployer()
   {
   }

   public static PolicyDeployer getInstance()
   {
      return me;
   }

   //for test
   public static PolicyDeployer newInstance(Map<String, Class> customDomainMap)
   {
      PolicyDeployer instance = new PolicyDeployer();
      instance.domainDeployerMap = customDomainMap;
      return instance;

   }

   //for tools
   public static PolicyDeployer newInstanceForTools()
   {
      PolicyDeployer instance = new PolicyDeployer();
      instance.domainDeployerMap.put("http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd", NopAssertionDeployer.class);
      instance.domainDeployerMap.put("http://docs.oasis-open.org/ws-rx/wsrmp/200702", NopAssertionDeployer.class);
      instance.domainDeployerMap.put("http://schemas.xmlsoap.org/ws/2005/02/rm/policy", NopAssertionDeployer.class);
      return instance;

   }

   @SuppressWarnings("unchecked")
   public Policy deployServerside(Policy policy, ExtensibleMetaData extMetaData) throws UnsupportedPolicy
   {
      if (policy == null)
         throw new WSException("Cannot deploy null policy!");

      List<Assertion> returnedPolicyTerms = new LinkedList<Assertion>();

      if (!policy.isNormalized())
      {
         policy = (Policy)policy.normalize();
      }

      //in normal form we have just one wsp:ExactlyOne element containg unbounded wsp:All (alternative)
      XorCompositeAssertion exactlyOne = (XorCompositeAssertion)policy.getTerms().get(0);
      log.debug("####" + exactlyOne.getClass());
      log.debug("####" + exactlyOne.getTerms());
      for (AndCompositeAssertion alternative : (List<AndCompositeAssertion>)exactlyOne.getTerms())
      {
         log.debug("alternative");
         try
         {
            deployAlternativeServerSide(alternative, extMetaData);
            returnedPolicyTerms.add(alternative);
         }
         catch (UnsupportedAlternative e)
         {
            log.debug("Unsupported Alternative");
            //policy is unsupported only if it have all alternative unsupported
         }

      }
      if (returnedPolicyTerms.size() == 0)
      {
         if (log.isDebugEnabled())
         {
            log.debug("XorComposite zero element...Policy not supported");
         }
         throw new UnsupportedPolicy();
      }
      policy.getTerms().clear();
      policy.addTerms(returnedPolicyTerms);
      return policy;
   }

   /**
    * Policy deployer method for client side: delegates to the right domain deployer
    * and fails if one or more policy assertions are not supported.
    * 
    * @param policy
    * @param extMetaData
    * @throws UnsupportedPolicy
    */
   @SuppressWarnings("unchecked")
   public void deployClientSide(Policy policy, ExtensibleMetaData extMetaData) throws UnsupportedPolicy
   {
      if (policy == null)
         throw new WSException("Cannot deploy null policy!");

      if (!policy.isNormalized())
      {
         policy = (Policy)policy.normalize();
      }
      //in normal form we have just one wsp:ExactlyOne element containg unbounded wsp:All (alternative)
      XorCompositeAssertion exactlyOne = (XorCompositeAssertion)policy.getTerms().get(0);
      for (AndCompositeAssertion alternative : (List<AndCompositeAssertion>)exactlyOne.getTerms())
      {
         for (Assertion assertion : (List<Assertion>)alternative.getTerms())
         {
            if (assertion instanceof PrimitiveAssertion)
            {
               try
               {
                  deployAssertionClientSide((PrimitiveAssertion)assertion, extMetaData);
               }
               catch (UnsupportedAssertion e)
               {
                  log.error("Unsupported assertion!");
                  throw new UnsupportedPolicy();
               }
            }
            else if (assertion instanceof Policy) //inner policy to be verified
            {
               deployClientSide((Policy)assertion, extMetaData);
            }
         }
      }
   }

   @SuppressWarnings("unchecked")
   private void deployAlternativeServerSide(AndCompositeAssertion alternative, ExtensibleMetaData extMetaData) throws UnsupportedAlternative
   {
      for (Assertion assertion : (List<Assertion>)alternative.getTerms())
      {

         try
         {
            if (assertion instanceof PrimitiveAssertion)
            {
               deployAssertionServerSide((PrimitiveAssertion)assertion, extMetaData);
            }
            else if (assertion instanceof Policy) //inner policy to be verified
            {
               deployServerside((Policy)assertion, extMetaData);
            }
            else
            {
               if (log.isDebugEnabled())
               {
                  log.debug("Unknown Alternative type....Alternative not supported");
               }
               throw new UnsupportedAlternative();
            }

         }
         catch (UnsupportedAssertion e)
         {
            //If there is al least one unsupported assertion the alternative isn't supported
            throw new UnsupportedAlternative();
         }
         catch (UnsupportedPolicy ep)
         {
            //If there is al least one unsupported assertion the alternative isn't supported
            throw new UnsupportedAlternative();
         }
      }
   }

   private void deployAssertionServerSide(PrimitiveAssertion assertion, ExtensibleMetaData extMetaData) throws UnsupportedAssertion
   {
      AssertionDeployer deployer = getDomainDeployerInstance(assertion.getName().getNamespaceURI());
      deployer.deployServerSide(assertion, extMetaData);
   }

   private void deployAssertionClientSide(PrimitiveAssertion assertion, ExtensibleMetaData extMetaData) throws UnsupportedAssertion
   {
      AssertionDeployer deployer = getDomainDeployerInstance(assertion.getName().getNamespaceURI());
      deployer.deployClientSide(assertion, extMetaData);
   }

   /**
    * 
    * @param namespace
    * @return the correct AssertionDeployer instance, or null if namespace not supported
    */
   private AssertionDeployer getDomainDeployerInstance(String namespace) throws UnsupportedAssertion
   {
      try
      {
         if (!domainDeployerMap.containsKey(namespace))
         {
            if (log.isDebugEnabled())
            {
               log.debug("Unknown namespace:" + namespace + "...Assertion not supported");
            }
            throw new UnsupportedAssertion();
         }
         return (AssertionDeployer)(domainDeployerMap.get(namespace)).newInstance();
      }
      catch (Exception e)
      {

         throw new UnsupportedAssertion();
      }
   }
}