00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #ifndef SERVICE_H
00031 #define SERVICE_H
00032
00033 #include "includes.h"
00034 #include "wsdlH.h"
00035
00036 class Message
00037 { public:
00038 const char *name;
00039 const char *URI;
00040 soap__useChoice use;
00041 const char *encodingStyle;
00042 wsdl__message *message;
00043 wsdl__part *part;
00044 vector<soap__header> header;
00045 const char *documentation;
00046 const char *ext_documentation;
00047 void generate(Types&, const char *sep, bool anonymous, bool remark);
00048 };
00049
00050 typedef map<const char*, Message*, ltstr> MapOfStringToMessage;
00051
00052 class Operation
00053 { public:
00054 const char *prefix;
00055 const char *URI;
00056 const char *name;
00057 soap__styleChoice style;
00058 const char *parameterOrder;
00059 const char *soapAction;
00060 const char *input_name;
00061 const char *output_name;
00062 Message *input;
00063 Message *output;
00064 vector<Message*> fault;
00065 const char *documentation;
00066 const char *operation_documentation;
00067 void generate(Types&);
00068 };
00069
00070 class Service
00071 { public:
00072 const char *prefix;
00073 const char *URI;
00074 const char *name;
00075 const char *type;
00076 SetOfString location;
00077 vector<Operation*> operation;
00078 MapOfStringToMessage header;
00079 MapOfStringToMessage headerfault;
00080 MapOfStringToMessage fault;
00081 MapOfStringToString service_documentation;
00082 MapOfStringToString port_documentation;
00083 MapOfStringToString binding_documentation;
00084 Service();
00085 void generate(Types&);
00086 };
00087
00088 typedef map<const char*, Service*, ltstr> MapOfStringToService;
00089
00090 class Definitions
00091 { public:
00092 Types types;
00093 MapOfStringToService services;
00094 Definitions();
00095 void collect(const wsdl__definitions&);
00096 void compile(const wsdl__definitions&);
00097 private:
00098 void analyze(const wsdl__definitions&);
00099 void generate();
00100 };
00101
00102 #endif