You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2010/03/03 21:23:32 UTC

svn commit: r918673 - in /qpid/trunk/qpid/cpp: configure.ac src/tests/Makefile.am src/tests/testagent/ src/tests/testagent/Makefile.am src/tests/testagent/schema.xml src/tests/testagent/testagent.cpp

Author: aconway
Date: Wed Mar  3 20:23:32 2010
New Revision: 918673

URL: http://svn.apache.org/viewvc?rev=918673&view=rev
Log:
Added tests/testagent, a simple QMF agent for use in tests.

Added:
    qpid/trunk/qpid/cpp/src/tests/testagent/
    qpid/trunk/qpid/cpp/src/tests/testagent/Makefile.am
    qpid/trunk/qpid/cpp/src/tests/testagent/schema.xml
    qpid/trunk/qpid/cpp/src/tests/testagent/testagent.cpp
Modified:
    qpid/trunk/qpid/cpp/configure.ac
    qpid/trunk/qpid/cpp/src/tests/Makefile.am

Modified: qpid/trunk/qpid/cpp/configure.ac
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/configure.ac?rev=918673&r1=918672&r2=918673&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/configure.ac (original)
+++ qpid/trunk/qpid/cpp/configure.ac Wed Mar  3 20:23:32 2010
@@ -525,6 +525,7 @@
   src/Makefile
   src/tests/Makefile
   src/tests/test_env.sh
+  src/tests/testagent/Makefile
   docs/man/Makefile
   docs/api/Makefile
   docs/api/user.doxygen

Modified: qpid/trunk/qpid/cpp/src/tests/Makefile.am
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/tests/Makefile.am?rev=918673&r1=918672&r2=918673&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/tests/Makefile.am (original)
+++ qpid/trunk/qpid/cpp/src/tests/Makefile.am Wed Mar  3 20:23:32 2010
@@ -17,6 +17,8 @@
 # under the License.
 #
 
+SUBDIRS = . testagent
+
 AM_CXXFLAGS = $(WARNING_CFLAGS) -DBOOST_TEST_DYN_LINK
 INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_srcdir)/src -I$(top_builddir)/src
 PUBLIC_INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include # Use public API only

Added: qpid/trunk/qpid/cpp/src/tests/testagent/Makefile.am
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/tests/testagent/Makefile.am?rev=918673&view=auto
==============================================================================
--- qpid/trunk/qpid/cpp/src/tests/testagent/Makefile.am (added)
+++ qpid/trunk/qpid/cpp/src/tests/testagent/Makefile.am Wed Mar  3 20:23:32 2010
@@ -0,0 +1,49 @@
+#
+# 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.
+#
+
+# Build a simple qmf agent for test purposes.
+
+QMF_GEN=$(top_srcdir)/managementgen/qmf-gen
+GEN_SRC= \
+	gen/qmf/org/apache/qpid/agent/example/Parent.h			\
+	gen/qmf/org/apache/qpid/agent/example/Child.h			\
+	gen/qmf/org/apache/qpid/agent/example/Parent.cpp		\
+	gen/qmf/org/apache/qpid/agent/example/Child.cpp			\
+	gen/qmf/org/apache/qpid/agent/example/ArgsParentCreate_child.h	\
+	gen/qmf/org/apache/qpid/agent/example/EventChildCreated.h	\
+	gen/qmf/org/apache/qpid/agent/example/EventChildDestroyed.h	\
+	gen/qmf/org/apache/qpid/agent/example/EventChildCreated.cpp	\
+	gen/qmf/org/apache/qpid/agent/example/EventChildDestroyed.cpp	\
+	gen/qmf/org/apache/qpid/agent/example/Package.h			\
+	gen/qmf/org/apache/qpid/agent/example/Package.cpp
+
+$(GEN_SRC): gen.timestamp
+
+gen.timestamp: schema.xml
+	$(QMF_GEN) -o gen/qmf $(srcdir)/schema.xml
+	touch gen.timestamp
+
+CLEANFILES=$(GEN_SRC)
+
+INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_srcdir)/src -I$(top_builddir)/src -Igen
+
+noinst_PROGRAMS=testagent
+testagent_SOURCES=testagent.cpp $(GEN_SRC)
+testagent_LDADD=$(top_builddir)/src/libqmf.la
+

Added: qpid/trunk/qpid/cpp/src/tests/testagent/schema.xml
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/tests/testagent/schema.xml?rev=918673&view=auto
==============================================================================
--- qpid/trunk/qpid/cpp/src/tests/testagent/schema.xml (added)
+++ qpid/trunk/qpid/cpp/src/tests/testagent/schema.xml Wed Mar  3 20:23:32 2010
@@ -0,0 +1,64 @@
+<schema package="org.apache.qpid.agent.example">
+
+<!--
+  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.
+-->
+
+  <!--
+  ===============================================================
+  Parent
+  ===============================================================
+  -->
+  <class name="Parent">
+
+    This class represents a parent object
+
+    <property name="name"      type="sstr" access="RC" index="y"/>
+
+    <statistic name="state" type="sstr"                desc="Operational state of the link"/>
+    <statistic name="count" type="count64" unit="tick" desc="Counter that increases monotonically"/>
+
+    <method name="create_child" desc="Create child object">
+      <arg name="name"     dir="I" type="sstr"/>
+      <arg name="childRef" dir="O" type="objId"/>
+    </method>
+  </class>
+
+
+  <!--
+  ===============================================================
+  Child
+  ===============================================================
+  -->
+  <class name="Child">
+    <property name="ParentRef" type="objId"  references="Parent" access="RC" index="y" parentRef="y"/>
+    <property name="name"      type="sstr"                       access="RC" index="y"/>
+
+    <statistic name="count" type="count64" unit="tick" desc="Counter that increases monotonically"/>
+
+    <method name="delete"/>
+  </class>
+
+  <eventArguments>
+    <arg name="childName" type="sstr"/>
+  </eventArguments>
+
+  <event name="ChildCreated"   args="childName"/>
+  <event name="ChildDestroyed" args="childName"/>
+</schema>
+

Added: qpid/trunk/qpid/cpp/src/tests/testagent/testagent.cpp
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/tests/testagent/testagent.cpp?rev=918673&view=auto
==============================================================================
--- qpid/trunk/qpid/cpp/src/tests/testagent/testagent.cpp (added)
+++ qpid/trunk/qpid/cpp/src/tests/testagent/testagent.cpp Wed Mar  3 20:23:32 2010
@@ -0,0 +1,207 @@
+/*
+ *
+ * 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 <qpid/management/Manageable.h>
+#include <qpid/management/ManagementObject.h>
+#include <qpid/agent/ManagementAgent.h>
+#include <qpid/sys/Mutex.h>
+#include <qpid/sys/Time.h>
+#include "qmf/org/apache/qpid/agent/example/Parent.h"
+#include "qmf/org/apache/qpid/agent/example/Child.h"
+#include "qmf/org/apache/qpid/agent/example/ArgsParentCreate_child.h"
+#include "qmf/org/apache/qpid/agent/example/EventChildCreated.h"
+#include "qmf/org/apache/qpid/agent/example/Package.h"
+
+#include <signal.h>
+#include <cstdlib>
+#include <iostream>
+
+#include <sstream>
+
+static bool running = true;
+
+using namespace std;
+using qpid::management::ManagementAgent;
+using qpid::management::ManagementObject;
+using qpid::management::Manageable;
+using qpid::management::Args;
+using qpid::sys::Mutex;
+namespace _qmf = qmf::org::apache::qpid::agent::example;
+
+class ChildClass;
+
+//==============================================================
+// CoreClass is the operational class that corresponds to the
+// "Parent" class in the management schema.
+//==============================================================
+class CoreClass : public Manageable
+{
+    string           name;
+    ManagementAgent* agent;
+    _qmf::Parent* mgmtObject;
+    std::vector<ChildClass*> children;
+    Mutex vectorLock;
+
+public:
+
+    CoreClass(ManagementAgent* agent, string _name);
+    ~CoreClass() { mgmtObject->resourceDestroy(); }
+
+    ManagementObject* GetManagementObject(void) const
+    { return mgmtObject; }
+
+    void doLoop();
+    status_t ManagementMethod (uint32_t methodId, Args& args, string& text);
+};
+
+class ChildClass : public Manageable
+{
+    string name;
+    _qmf::Child* mgmtObject;
+
+public:
+
+    ChildClass(ManagementAgent* agent, CoreClass* parent, string name);
+    ~ChildClass() { mgmtObject->resourceDestroy(); }
+
+    ManagementObject* GetManagementObject(void) const
+    { return mgmtObject; }
+
+    void doWork()
+    {
+        mgmtObject->inc_count(2);
+    }
+};
+
+CoreClass::CoreClass(ManagementAgent* _agent, string _name) : name(_name), agent(_agent)
+{
+    static uint64_t persistId = 0x111222333444555LL;
+    mgmtObject = new _qmf::Parent(agent, this, name);
+
+    agent->addObject(mgmtObject, persistId++);
+    mgmtObject->set_state("IDLE");
+}
+
+void CoreClass::doLoop()
+{
+    // Periodically bump a counter to provide a changing statistical value
+    while (running) {
+        qpid::sys::sleep(1);
+        mgmtObject->inc_count();
+        mgmtObject->set_state("IN_LOOP");
+
+        {
+            Mutex::ScopedLock _lock(vectorLock);
+
+            for (std::vector<ChildClass*>::iterator iter = children.begin();
+                 iter != children.end();
+                 iter++) {
+                (*iter)->doWork();
+            }
+        }
+    }
+}
+
+Manageable::status_t CoreClass::ManagementMethod(uint32_t methodId, Args& args, string& /*text*/)
+{
+    Mutex::ScopedLock _lock(vectorLock);
+
+    switch (methodId) {
+    case _qmf::Parent::METHOD_CREATE_CHILD:
+        _qmf::ArgsParentCreate_child& ioArgs = (_qmf::ArgsParentCreate_child&) args;
+
+        ChildClass *child = new ChildClass(agent, this, ioArgs.i_name);
+        ioArgs.o_childRef = child->GetManagementObject()->getObjectId();
+
+        children.push_back(child);
+
+        agent->raiseEvent(_qmf::EventChildCreated(ioArgs.i_name));
+
+        return STATUS_OK;
+    }
+
+    return STATUS_NOT_IMPLEMENTED;
+}
+
+ChildClass::ChildClass(ManagementAgent* agent, CoreClass* parent, string name)
+{
+    mgmtObject = new _qmf::Child(agent, this, parent, name);
+
+    agent->addObject(mgmtObject);
+}
+
+
+//==============================================================
+// Main program
+//==============================================================
+
+ManagementAgent::Singleton* singleton;
+
+void shutdown(int)
+{
+    running = false;
+}
+
+int main_int(int argc, char** argv)
+{
+    singleton = new ManagementAgent::Singleton();
+    const char* host = argc>1 ? argv[1] : "127.0.0.1";
+    int port = argc>2 ? atoi(argv[2]) : 5672;
+    qpid::client::ConnectionSettings settings;
+
+    settings.host = host;
+    settings.port = port;
+
+    signal(SIGINT, shutdown);
+
+    // Create the qmf management agent
+    ManagementAgent* agent = singleton->getInstance();
+
+    // Register the Qmf_example schema with the agent
+    _qmf::Package packageInit(agent);
+
+    // Start the agent.  It will attempt to make a connection to the
+    // management broker
+    agent->init(settings, 5, false, ".magentdata");
+
+    // Allocate some core objects
+    CoreClass core1(agent, "Example Core Object #1");
+    CoreClass core2(agent, "Example Core Object #2");
+    CoreClass core3(agent, "Example Core Object #3");
+
+    core1.doLoop();
+
+    // done, cleanup and exit
+    delete singleton;
+
+    return 0;
+}
+
+int main(int argc, char** argv)
+{
+    try {
+        return main_int(argc, argv);
+    } catch(std::exception& e) {
+        cerr << "Top Level Exception: " << e.what() << endl;
+        return 1;
+    }
+}
+



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org