Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

CountTheEntities Class Reference

Inheritance diagram for CountTheEntities:

XmlRpc::XmlRpcServerMethod List of all members.

Public Member Functions

 CountTheEntities (XmlRpcServer *s)
void execute (XmlRpcValue &params, XmlRpcValue &result)
 Execute the method. Subclasses must provide a definition for this method.
virtual std::string help ()
std::string & name ()
 Returns the name of the method.

Protected Attributes

std::string _name
XmlRpcServer * _server

Constructor & Destructor Documentation

CountTheEntities::CountTheEntities XmlRpcServer s  )  [inline]
 

00042 : XmlRpcServerMethod("validator1.countTheEntities", s) {}


Member Function Documentation

void CountTheEntities::execute XmlRpcValue params,
XmlRpcValue result
[inline, virtual]
 

Execute the method. Subclasses must provide a definition for this method.

Implements XmlRpc::XmlRpcServerMethod.

00045   {
00046     std::cerr << "CountTheEntities\n";
00047     std::string& arg = params[0];
00048     int ctLeftAngleBrackets = 0;
00049     int ctRightAngleBrackets = 0;
00050     int ctAmpersands = 0;
00051     int ctApostrophes = 0;
00052     int ctQuotes = 0;
00053 
00054     int n = int(arg.length());
00055     for (int i=0; i<n; ++i)
00056       switch (arg[i])
00057       {
00058         case '<': ++ctLeftAngleBrackets; break;
00059         case '>': ++ctRightAngleBrackets; break;
00060         case '&': ++ctAmpersands; break;
00061         case '\'': ++ctApostrophes; break;
00062         case '\"': ++ctQuotes; break;
00063       }
00064 
00065     result["ctLeftAngleBrackets"] = ctLeftAngleBrackets;
00066     result["ctRightAngleBrackets"] = ctRightAngleBrackets;
00067     result["ctAmpersands"] = ctAmpersands;
00068     result["ctApostrophes"] = ctApostrophes;
00069     result["ctQuotes"] = ctQuotes;
00070   }

virtual std::string XmlRpc::XmlRpcServerMethod::help  )  [inline, virtual, inherited]
 

Returns a help string for the method. Subclasses should define this method if introspection is being used.

Reimplemented in ListMethods, MethodHelp, and Hello.

00039 { return std::string(); }

std::string& XmlRpc::XmlRpcServerMethod::name void   )  [inline, inherited]
 

Returns the name of the method.

00032 { return _name; }


Member Data Documentation

std::string XmlRpc::XmlRpcServerMethod::_name [protected, inherited]
 

XmlRpcServer* XmlRpc::XmlRpcServerMethod::_server [protected, inherited]
 


The documentation for this class was generated from the following file:
Generated on Wed Feb 2 15:56:37 2011 for BOSS6.5.5 by  doxygen 1.3.9.1