1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
<?xml version="1.0" ?>
<!--
Copyright (c) 1996-2010 iMatix Corporation
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
For information on alternative licensing for OEMs, please contact
iMatix Corporation.
-->
<application title = "ggpars messages"
script = "smtmesg.gsl"
module = "ggparsm" >
<!-- ------------------------------------------------------------------
Messages for gslgen parser agent
------------------------------------------------------------------ -->
<agent name = "ggpars" title = "gslgen parser agent" >
<message name = "parse" >
<field name = "job" title = "job id"
type = "pointer" />
<method name = "template" title = "parse template line"
type = "internal" />
<method name = "gsl" title = "parse gsl line"
type = "internal" />
<method name = "expression" title = "parse expression"
type = "internal" />
</message>
<message name = "ok" >
<field name = "job" title = "job id"
type = "pointer" />
<field name = "parse_root" title = "parse tree root"
type = "pointer" />
<field name = "parse_memtrn" title = "Memory transaction"
type = "pointer" />
<field name = "size" title = "Data size"
type = "long" />
<method name = "ok" title = "ok reply"
type = "reply" />
</message>
<message name = "eof" >
<field name = "job" title = "job id"
type = "pointer" />
<method name = "eof" title = "eof reply"
type = "reply" />
</message>
<message name = "error" >
<field name = "job" title = "job id"
type = "pointer" />
<field name = "error_text" title = "error message text"
type = "string" />
<method name = "error" title = "error reply"
type = "reply" />
</message>
</agent>
</application>
|