You are viewing a plain text version of this content. The canonical link for it is here.
Posted to sandesha-dev@ws.apache.org by da...@apache.org on 2006/12/08 11:50:50 UTC

svn commit: r483929 - in /webservices/sandesha/trunk/c/src/storage: create_seq_mgr.c invoker_mgr.c next_msg_mgr.c sender_mgr.c seq_property_mgr.c

Author: damitha
Date: Fri Dec  8 02:50:50 2006
New Revision: 483929

URL: http://svn.apache.org/viewvc?view=rev&rev=483929
Log:
added missing file

Added:
    webservices/sandesha/trunk/c/src/storage/create_seq_mgr.c
    webservices/sandesha/trunk/c/src/storage/invoker_mgr.c
    webservices/sandesha/trunk/c/src/storage/next_msg_mgr.c
    webservices/sandesha/trunk/c/src/storage/sender_mgr.c
    webservices/sandesha/trunk/c/src/storage/seq_property_mgr.c

Added: webservices/sandesha/trunk/c/src/storage/create_seq_mgr.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/storage/create_seq_mgr.c?view=auto&rev=483929
==============================================================================
--- webservices/sandesha/trunk/c/src/storage/create_seq_mgr.c (added)
+++ webservices/sandesha/trunk/c/src/storage/create_seq_mgr.c Fri Dec  8 02:50:50 2006
@@ -0,0 +1,86 @@
+/*
+ * 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.
+ */
+ 
+#include <sandesha2_create_seq_mgr.h>
+#include <sandesha2_constants.h>
+#include <sandesha2_error.h>
+#include <axis2_log.h>
+#include <axis2_hash.h>
+#include <axis2_thread.h>
+#include <axis2_property.h>
+
+axis2_status_t AXIS2_CALL 
+sandesha2_create_seq_mgr_free(
+    sandesha2_create_seq_mgr_t *seq_mgr,
+    const axis2_env_t *env)
+{
+    return seq_mgr->ops.free(seq_mgr, env);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_create_seq_mgr_insert(
+    sandesha2_create_seq_mgr_t *seq_mgr,
+    const axis2_env_t *env,
+    sandesha2_create_seq_bean_t *bean)
+{
+    return seq_mgr->ops.insert(seq_mgr, env, bean);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_create_seq_mgr_remove(
+    sandesha2_create_seq_mgr_t *seq_mgr,
+    const axis2_env_t *env,
+    axis2_char_t *msg_id)
+{
+    return seq_mgr->ops.remove(seq_mgr, env, msg_id);
+}
+
+sandesha2_create_seq_bean_t *AXIS2_CALL
+sandesha2_create_seq_mgr_retrieve(
+    sandesha2_create_seq_mgr_t *seq_mgr,
+    const axis2_env_t *env,
+    axis2_char_t *msg_id)
+{
+    return seq_mgr->ops.retrieve(seq_mgr, env, msg_id);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_create_seq_mgr_update(
+    sandesha2_create_seq_mgr_t *seq_mgr,
+    const axis2_env_t *env,
+    sandesha2_create_seq_bean_t *bean)
+{
+    return seq_mgr->ops.update(seq_mgr, env, bean);
+}
+
+axis2_array_list_t *AXIS2_CALL
+sandesha2_create_seq_mgr_find(
+    sandesha2_create_seq_mgr_t *seq_mgr,
+    const axis2_env_t *env,
+    sandesha2_create_seq_bean_t *bean)
+{
+    return seq_mgr->ops.find(seq_mgr, env, bean);
+}
+
+sandesha2_create_seq_bean_t *AXIS2_CALL
+sandesha2_create_seq_mgr_find_unique(
+    sandesha2_create_seq_mgr_t *seq_mgr,
+    const axis2_env_t *env,
+    sandesha2_create_seq_bean_t *bean)
+{
+    return seq_mgr->ops.find_unique(seq_mgr, env, bean);
+}
+ 

Added: webservices/sandesha/trunk/c/src/storage/invoker_mgr.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/storage/invoker_mgr.c?view=auto&rev=483929
==============================================================================
--- webservices/sandesha/trunk/c/src/storage/invoker_mgr.c (added)
+++ webservices/sandesha/trunk/c/src/storage/invoker_mgr.c Fri Dec  8 02:50:50 2006
@@ -0,0 +1,86 @@
+/*
+ * 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.
+ */
+ 
+#include <sandesha2_invoker_mgr.h>
+#include <sandesha2_constants.h>
+#include <sandesha2_error.h>
+#include <axis2_log.h>
+#include <axis2_hash.h>
+#include <axis2_thread.h>
+#include <axis2_property.h>
+
+axis2_status_t AXIS2_CALL
+sandesha2_invoker_mgr_free(
+    sandesha2_invoker_mgr_t *invoker,
+    const axis2_env_t *env)
+{
+    return invoker->ops.free(invoker, env);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_invoker_mgr_insert(
+    sandesha2_invoker_mgr_t *invoker,
+    const axis2_env_t *env,
+    sandesha2_invoker_bean_t *bean)
+{
+    return invoker->ops.insert(invoker, env, bean);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_invoker_mgr_remove(
+    sandesha2_invoker_mgr_t *invoker,
+    const axis2_env_t *env,
+    axis2_char_t *key)
+{
+    return invoker->ops.remove(invoker, env, key);
+}
+
+sandesha2_invoker_bean_t *AXIS2_CALL
+sandesha2_invoker_mgr_retrieve(
+    sandesha2_invoker_mgr_t *invoker,
+    const axis2_env_t *env,
+    axis2_char_t *key)
+{
+    return invoker->ops.retrieve(invoker, env, key);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_invoker_mgr_update(
+    sandesha2_invoker_mgr_t *invoker,
+    const axis2_env_t *env,
+    sandesha2_invoker_bean_t *bean)
+{
+    return invoker->ops.update(invoker, env, bean);
+}
+
+axis2_array_list_t *AXIS2_CALL
+sandesha2_invoker_mgr_find(
+    sandesha2_invoker_mgr_t *invoker,
+    const axis2_env_t *env,
+    sandesha2_invoker_bean_t *bean)
+{
+    return invoker->ops.find(invoker, env, bean);
+}
+
+sandesha2_invoker_bean_t *AXIS2_CALL
+sandesha2_invoker_mgr_find_unique(
+    sandesha2_invoker_mgr_t *invoker,
+    const axis2_env_t *env,
+    sandesha2_invoker_bean_t *bean)
+{
+    return invoker->ops.find_unique(invoker, env, bean);
+}
+

Added: webservices/sandesha/trunk/c/src/storage/next_msg_mgr.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/storage/next_msg_mgr.c?view=auto&rev=483929
==============================================================================
--- webservices/sandesha/trunk/c/src/storage/next_msg_mgr.c (added)
+++ webservices/sandesha/trunk/c/src/storage/next_msg_mgr.c Fri Dec  8 02:50:50 2006
@@ -0,0 +1,95 @@
+/*
+ * 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.
+ */
+ 
+#include <sandesha2_next_msg_mgr.h>
+#include <sandesha2_constants.h>
+#include <sandesha2_error.h>
+#include <sandesha2_utils.h>
+#include <axis2_log.h>
+#include <axis2_hash.h>
+#include <axis2_thread.h>
+#include <axis2_property.h>
+
+axis2_status_t AXIS2_CALL
+sandesha2_next_msg_mgr_free(
+    sandesha2_next_msg_mgr_t *next_msg,
+    const axis2_env_t *env)
+{
+    return next_msg->ops->free(next_msg, env);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_next_msg_mgr_insert(
+    sandesha2_next_msg_mgr_t *next_msg,
+    const axis2_env_t *env,
+    sandesha2_next_msg_bean_t *bean)
+{
+    return next_msg->ops->insert(next_msg, env, bean);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_next_msg_mgr_remove(
+    sandesha2_next_msg_mgr_t *next_msg,
+    const axis2_env_t *env,
+    axis2_char_t *seq_id)
+{
+    return next_msg->ops->remove(next_msg, env, seq_id);
+}
+
+sandesha2_next_msg_bean_t *AXIS2_CALL
+sandesha2_next_msg_mgr_retrieve(
+    sandesha2_next_msg_mgr_t *next_msg,
+    const axis2_env_t *env,
+    axis2_char_t *seq_id)
+{
+    return next_msg->ops->retrieve(next_msg, env, seq_id);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_next_msg_mgr_update(
+    sandesha2_next_msg_mgr_t *next_msg,
+    const axis2_env_t *env,
+    sandesha2_next_msg_bean_t *bean)
+{
+    return next_msg->ops->update(next_msg, env, bean);
+}
+
+axis2_array_list_t *AXIS2_CALL
+sandesha2_next_msg_mgr_find(
+    sandesha2_next_msg_mgr_t *next_msg,
+    const axis2_env_t *env,
+    sandesha2_next_msg_bean_t *bean)
+{
+    return next_msg->ops->find(next_msg, env, bean);
+}
+
+sandesha2_next_msg_bean_t *AXIS2_CALL
+sandesha2_next_msg_mgr_find_unique(
+    sandesha2_next_msg_mgr_t *next_msg,
+    const axis2_env_t *env,
+    sandesha2_next_msg_bean_t *bean)
+{
+    return next_msg->ops->find_unique(next_msg, env, bean);
+}
+
+axis2_array_list_t *AXIS2_CALL
+sandesha2_next_msg_mgr_retrieve_all(
+    sandesha2_next_msg_mgr_t *next_msg,
+    const axis2_env_t *env)
+{
+    return next_msg->ops->retrieve_all(next_msg, env);
+}
+

Added: webservices/sandesha/trunk/c/src/storage/sender_mgr.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/storage/sender_mgr.c?view=auto&rev=483929
==============================================================================
--- webservices/sandesha/trunk/c/src/storage/sender_mgr.c (added)
+++ webservices/sandesha/trunk/c/src/storage/sender_mgr.c Fri Dec  8 02:50:50 2006
@@ -0,0 +1,117 @@
+/*
+ * 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.
+ */
+ 
+#include <sandesha2_sender_mgr.h>
+#include <sandesha2_constants.h>
+#include <sandesha2_error.h>
+#include <sandesha2_utils.h>
+#include <sandesha2_sender_bean.h>
+#include <axis2_log.h>
+#include <axis2_hash.h>
+#include <axis2_thread.h>
+#include <axis2_property.h>
+
+axis2_status_t AXIS2_CALL
+sandesha2_sender_mgr_free(
+    sandesha2_sender_mgr_t *sender,
+    const axis2_env_t *env)
+{
+    return sender->ops->free(sender, env);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_sender_mgr_insert(
+    sandesha2_sender_mgr_t *sender,
+    const axis2_env_t *env,
+    sandesha2_sender_bean_t *bean)
+{
+    return sender->ops->insert(sender, env, bean);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_sender_mgr_remove(
+    sandesha2_sender_mgr_t *sender,
+    const axis2_env_t *env,
+    axis2_char_t *msg_id)
+{
+    return sender->ops->remove(sender, env, msg_id);
+}
+
+sandesha2_sender_bean_t *AXIS2_CALL
+sandesha2_sender_mgr_retrieve(
+    sandesha2_sender_mgr_t *sender,
+    const axis2_env_t *env,
+    axis2_char_t *msg_id)
+{
+    return sender->ops->retrieve(sender, env, msg_id);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_sender_mgr_update(
+    sandesha2_sender_mgr_t *sender,
+    const axis2_env_t *env,
+    sandesha2_sender_bean_t *bean)
+{
+    return sender->ops->update(sender, env, bean);
+}
+
+axis2_array_list_t *AXIS2_CALL
+sandesha2_sender_mgr_find_by_internal_seq_id(
+    sandesha2_sender_mgr_t *sender,
+    const axis2_env_t *env,
+    axis2_char_t *internal_seq_id)
+{
+    return sender->ops->find_by_internal_seq_id(sender, env, internal_seq_id);
+}
+
+axis2_array_list_t *AXIS2_CALL
+sandesha2_sender_mgr_find_by_sender_bean(
+    sandesha2_sender_mgr_t *sender,
+    const axis2_env_t *env,
+    sandesha2_sender_bean_t *bean)
+{
+    return sender->ops->find_by_sender_bean(sender, env, bean);
+}
+
+sandesha2_sender_bean_t *AXIS2_CALL
+sandesha2_sender_mgr_find_unique(
+    sandesha2_sender_mgr_t *sender,
+    const axis2_env_t *env,
+    sandesha2_sender_bean_t *bean)
+{
+    return sender->ops->find_unique(sender, env, bean);
+}
+
+sandesha2_sender_bean_t *AXIS2_CALL
+sandesha2_sender_mgr_get_next_msg_to_send(
+    sandesha2_sender_mgr_t *sender,
+    const axis2_env_t *env)
+{
+    return sender->ops->get_next_msg_to_send(sender, env);
+}
+
+sandesha2_sender_bean_t *AXIS2_CALL
+sandesha2_sender_mgr_retrieve_from_msg_ref_key(
+    sandesha2_sender_mgr_t *sender,
+    const axis2_env_t *env,
+    axis2_char_t *msg_ctx_ref_key)
+{
+    return sender->ops->retrieve_from_msg_ref_key(sender, env, msg_ctx_ref_key);
+}
+
+
+
+

Added: webservices/sandesha/trunk/c/src/storage/seq_property_mgr.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/storage/seq_property_mgr.c?view=auto&rev=483929
==============================================================================
--- webservices/sandesha/trunk/c/src/storage/seq_property_mgr.c (added)
+++ webservices/sandesha/trunk/c/src/storage/seq_property_mgr.c Fri Dec  8 02:50:50 2006
@@ -0,0 +1,106 @@
+/*
+ * 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.
+ */
+ 
+#include <sandesha2_seq_property_mgr.h>
+#include <sandesha2_constants.h>
+#include <sandesha2_error.h>
+#include <sandesha2_utils.h>
+#include <axis2_log.h>
+#include <axis2_hash.h>
+#include <axis2_thread.h>
+#include <axis2_property.h>
+
+axis2_status_t AXIS2_CALL
+sandesha2_seq_property_mgr_free(
+    sandesha2_seq_property_mgr_t *seq_prop_mgr,
+    const axis2_env_t *env)
+{
+    return seq_prop_mgr->ops->free(seq_prop_mgr, env);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_seq_property_mgr_insert(
+    sandesha2_seq_property_mgr_t *seq_prop_mgr,
+    const axis2_env_t *env,
+    sandesha2_seq_property_bean_t *bean)
+{
+    return seq_prop_mgr->ops->insert(seq_prop_mgr, env, bean);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_seq_property_mgr_remove(
+        sandesha2_seq_property_mgr_t *seq_prop_mgr,
+        const axis2_env_t *env,
+        axis2_char_t *seq_id,
+        axis2_char_t *name)
+{
+    return seq_prop_mgr->ops->remove(seq_prop_mgr, env, seq_id, name);
+}
+
+sandesha2_seq_property_bean_t *AXIS2_CALL
+sandesha2_seq_property_mgr_retrieve(
+    sandesha2_seq_property_mgr_t *seq_prop_mgr,
+    const axis2_env_t *env,
+    axis2_char_t *seq_id,
+    axis2_char_t *name)
+{
+    return seq_prop_mgr->ops->retrieve(seq_prop_mgr, env, seq_id, name);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_seq_property_mgr_update(
+    sandesha2_seq_property_mgr_t *seq_prop_mgr,
+    const axis2_env_t *env,
+    sandesha2_seq_property_bean_t *bean)
+{
+    return seq_prop_mgr->ops->update(seq_prop_mgr, env, bean);
+}
+
+axis2_array_list_t *AXIS2_CALL
+sandesha2_seq_property_mgr_find(
+    sandesha2_seq_property_mgr_t *seq_prop_mgr,
+    const axis2_env_t *env,
+    sandesha2_seq_property_bean_t *bean)
+{
+    return seq_prop_mgr->ops->find(seq_prop_mgr, env, bean);
+}
+
+sandesha2_seq_property_bean_t *AXIS2_CALL
+sandesha2_seq_property_mgr_find_unique(
+    sandesha2_seq_property_mgr_t *seq_prop_mgr,
+    const axis2_env_t *env,
+    sandesha2_seq_property_bean_t *bean)
+{
+    return seq_prop_mgr->ops->find_unique(seq_prop_mgr, env, bean);
+}
+
+axis2_array_list_t *AXIS2_CALL
+sandesha2_seq_property_mgr_retrieve_all(
+    sandesha2_seq_property_mgr_t *seq_prop_mgr,
+    const axis2_env_t *env)
+{
+    return seq_prop_mgr->ops->retrieve_all(seq_prop_mgr, env);
+}
+
+axis2_bool_t AXIS2_CALL
+sandesha2_seq_property_mgr_update_or_insert(
+    sandesha2_seq_property_mgr_t *seq_prop_mgr,
+    const axis2_env_t *env,
+    sandesha2_seq_property_bean_t *bean)
+{
+    return seq_prop_mgr->ops->update_or_insert(seq_prop_mgr, env, bean);
+}
+



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