You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ma...@apache.org on 2007/04/25 12:11:03 UTC

svn commit: r532293 - in /webservices/axis2/scratch/c/neethi/axis2c/neethi: include/rp_secpolicy_builder.h src/secpolicy/builder/secpolicy_builder.c

Author: manjula
Date: Wed Apr 25 03:11:02 2007
New Revision: 532293

URL: http://svn.apache.org/viewvc?view=rev&rev=532293
Log:
Commiting secpolicy builder.

Added:
    webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_secpolicy_builder.h
    webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/secpolicy_builder.c

Added: webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_secpolicy_builder.h
URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_secpolicy_builder.h?view=auto&rev=532293
==============================================================================
--- webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_secpolicy_builder.h (added)
+++ webservices/axis2/scratch/c/neethi/axis2c/neethi/include/rp_secpolicy_builder.h Wed Apr 25 03:11:02 2007
@@ -0,0 +1,43 @@
+/*
+ * Copyright 2004,2005 The Apache Software Foundation.
+ *
+ * Licensed 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.
+ */
+
+#ifndef RP_SECPOLICY_BUILDER_H
+#define RP_SECPOLICY_BUILDER_H
+
+/** @defgroup rp_secpolicy_builder
+ * @ingroup rp_secpolicy_builder
+ * @{
+ */
+
+#include <rp_includes.h>
+#include <rp_property.h>
+#include <rp_secpolicy.h>
+#include <neethi_policy.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+    AXIS2_EXTERN rp_secpolicy_t *AXIS2_CALL
+    rp_secpolicy_builder_build(
+        const axutil_env_t *env,
+        neethi_policy_t *policy);
+ 
+#ifdef __cplusplus
+}
+#endif
+#endif

Added: webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/secpolicy_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/secpolicy_builder.c?view=auto&rev=532293
==============================================================================
--- webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/secpolicy_builder.c (added)
+++ webservices/axis2/scratch/c/neethi/axis2c/neethi/src/secpolicy/builder/secpolicy_builder.c Wed Apr 25 03:11:02 2007
@@ -0,0 +1,152 @@
+/*
+ * 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.
+ */
+
+#include <rp_secpolicy_builder.h>
+#include <neethi_operator.h>
+#include <neethi_exactlyone.h>
+#include <neethi_all.h>
+#include <neethi_engine.h>
+#include <neethi_assertion.h>
+
+/*private functions*/
+
+axis2_status_t AXIS2_CALL
+secpolicy_process_alternatives(
+        const axutil_env_t *env,
+        neethi_all_t *all,
+        rp_secpolicy_t *transport_binding);
+
+/***********************************/
+
+
+AXIS2_EXTERN rp_secpolicy_t *AXIS2_CALL 
+rp_secpolicy_builder_build(
+        const axutil_env_t *env,
+        neethi_policy_t *policy)
+
+{
+    axutil_array_list_t *alternatives = NULL;
+    neethi_operator_t *component = NULL;
+    neethi_all_t *all = NULL;
+    rp_secpolicy_t *secpolicy = NULL;
+
+    policy = neethi_engine_get_normalize(env, AXIS2_FALSE, policy); 
+    alternatives = neethi_policy_get_alternatives(policy, env);
+
+    component = (neethi_operator_t *)axutil_array_list_get(alternatives, env, 0);            
+    all = (neethi_all_t *)neethi_operator_get_value(component ,env);
+    
+    if(secpolicy_process_alternatives(env, all, secpolicy)==AXIS2_FAILURE)
+    {
+        printf("Cannot create secpolicy\n");
+        return NULL;
+    }        
+    return secpolicy;
+}
+
+axis2_status_t AXIS2_CALL
+secpolicy_process_alternatives(
+        const axutil_env_t *env,
+        neethi_all_t *all,
+        rp_secpolicy_t *secpolicy)
+{
+
+    neethi_operator_t *operator = NULL;
+    axutil_array_list_t *arraylist = NULL;
+    neethi_assertion_t *assertion = NULL;
+    neethi_assertion_type_t type;    
+    void *value = NULL;
+
+    int i = 0;
+
+    arraylist = neethi_all_get_policy_components(all, env);
+
+    for(i=0; i<axutil_array_list_size(arraylist, env); i++)
+    {
+        operator = (neethi_operator_t *)axutil_array_list_get(arraylist, env, i);
+        assertion = (neethi_assertion_t *)neethi_operator_get_value(operator, env);
+        value = neethi_assertion_get_value(assertion, env);
+        type = neethi_assertion_get_type(assertion, env);
+
+        if(value)
+        {
+            if(type == ASSERTION_TYPE_TRANSPORT_BINDING)
+            {
+                rp_property_t *binding = NULL;    
+                rp_transport_binding_t *transport_binding = NULL;
+
+                transport_binding = (rp_transport_binding_t *)neethi_assertion_get_value(assertion, env);
+                if(!transport_binding)
+                {
+                    printf("Transport Binding not set\n");
+                    return AXIS2_FAILURE;
+                }                    
+                binding = rp_property_create(env);
+                rp_property_set_value(binding, env, transport_binding, RP_BINDING_TRANSPORT);             
+                rp_secpolicy_set_binding(secpolicy, env, binding);
+            }
+            else if(type == ASSERTION_TYPE_SUPPORTING_TOKENS)
+            {
+                rp_supporting_tokens_t *supporting_tokens = NULL;
+                supporting_tokens = (rp_supporting_tokens_t *)neethi_assertion_get_value(assertion, env);
+                if(supporting_tokens)
+                {
+                    int type = 0;
+                    type = rp_supporting_tokens_get_type(supporting_tokens, env);
+                    if(type == RP_SUPPORTING_SIGNED_SUPPORTING)
+                    {
+                        rp_secpolicy_set_signed_supporting_tokens(secpolicy, env, supporting_tokens);
+                    }    
+                    else if(type == RP_SUPPORTING_SIGNED_ENDORSING_SUPPORTING)
+                    {
+                        rp_secpolicy_set_endorsing_supporting_tokens(secpolicy, env, supporting_tokens);
+                    }                       
+                    else return AXIS2_FAILURE;
+                }                    
+                else return AXIS2_FAILURE;
+            }
+            else if(type == ASSERTION_TYPE_WSS10)
+            {
+                rp_wss10_t *wss10 = NULL;
+                rp_property_t *wss = NULL;
+                wss10 = (rp_wss10_t *)neethi_assertion_get_value(assertion, env);
+                if(!wss10)
+                {
+                    printf("WSS not set\n");
+                    return AXIS2_FAILURE;
+                }                    
+                wss = rp_property_create(env);
+                rp_property_set_value(wss, env, wss10, RP_WSS_WSS10);
+                rp_secpolicy_set_wss(secpolicy, env, wss);
+            }
+            else if(type == ASSERTION_TYPE_RAMPART_CONFIG)
+            {
+                rp_rampart_config_t *rampart_config = NULL;
+                rampart_config = (rp_rampart_config_t *)neethi_assertion_get_value(assertion, env);
+                if(!rampart_config)
+                {
+                    printf("Rampart_config not set\n");
+                    return AXIS2_FAILURE;
+                }    
+                rp_secpolicy_set_rampart_config(secpolicy, env, rampart_config);
+            }                
+            else return AXIS2_FAILURE;
+        }        
+        else return AXIS2_FAILURE;
+    }
+    return AXIS2_SUCCESS;
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org