1 Index: Source/Modules/python.cxx
 
   2 ===================================================================
 
   3 RCS file: /cvsroot/SWIG/Source/Modules/python.cxx,v
 
   4 retrieving revision 1.35
 
   5 diff -u -4 -r1.35 python.cxx
 
   6 --- Source/Modules/python.cxx   13 Dec 2003 23:52:31 -0000      1.35
 
   7 +++ Source/Modules/python.cxx   19 Dec 2003 02:04:45 -0000
 
   9  static  int       have_constructor;
 
  11  static  String   *real_classname;
 
  13 +/* flags for the make_autodoc function */
 
  22  static const char *usage = (char *)"\
 
  23  Python Options (available with -python)\n\
 
  24       -ldflags        - Print runtime libraries to link with\n\
 
  25       -globals <name> - Set <name> used to access C global variable [default: 'cvar']\n\
 
  28     * ------------------------------------------------------------ */
 
  30    void emitFunctionShadowHelper(Node *n, File *f_dest, String *name, int kw) {
 
  31 -    if ( ! have_addtofunc(n) ) {
 
  32 -      /* If there is no addtofunc directive then just assign from the extension module */
 
  33 +    if ( ! have_addtofunc(n) && ! have_docstring(n) ) {
 
  34 +      /* If there is no addtofunc or docstring directive then just assign from the extension module */
 
  35        Printv(f_dest, "\n", name, " = ", module, ".", name, "\n", NIL);
 
  37        /* Otherwise make a wrapper function to insert the code into */
 
  38        Printv(f_dest, "\ndef ", name, "(*args", (kw ? ", **kwargs" : ""), "):\n", NIL);
 
  39 -      Printv(f_dest, tab4, "val = ", funcCallHelper(name, kw), "\n", NIL);
 
  40 -      Printv(f_dest, tab4, addtofunc(n), "\n", NIL);
 
  41 -      Printv(f_dest, tab4, "return val\n", NIL);
 
  42 +      if ( have_docstring(n) )
 
  43 +        Printv(f_dest, tab4, docstring(n, AUTODOC_FUNC, tab4), "\n", NIL);
 
  44 +      if ( have_addtofunc(n) ) {
 
  45 +        Printv(f_dest, tab4, "val = ", funcCallHelper(name, kw), "\n", NIL);
 
  46 +        Printv(f_dest, tab4, addtofunc(n), "\n", NIL);
 
  47 +        Printv(f_dest, tab4, "return val\n", NIL);
 
  49 +        Printv(f_dest, tab4, "return ", funcCallHelper(name, kw), "\n", NIL);
 
  59    /* ------------------------------------------------------------
 
  61 +   *    Check if there is a docstring directive and it has text,
 
  62 +   *    or there is an autodoc flag set
 
  63 +   * ------------------------------------------------------------ */
 
  65 +  bool have_docstring(Node *n) {
 
  66 +    String* str = Getattr(n, "feature:docstring");
 
  67 +    return (str != NULL && Len(str) > 0) ||
 
  68 +        (Getattr(n,"feature:autodoc") && !Getattr(n, "feature:noautodoc"));
 
  71 +  /* ------------------------------------------------------------
 
  73 +   *    Get the docstring text, stripping off {} if neccessary,
 
  74 +   *    and enclose in triple double quotes.  If autodoc is also
 
  75 +   *    set then it will build a combined docstring.
 
  76 +   * ------------------------------------------------------------ */
 
  78 +  String *docstring(Node *n, autodoc_t ad_type, const String* indent) {
 
  79 +    String* str = Getattr(n, "feature:docstring");
 
  80 +    bool have_ds = (str != NULL && Len(str) > 0);
 
  81 +    bool have_auto = (Getattr(n,"feature:autodoc") && !Getattr(n, "feature:noautodoc"));
 
  82 +    char* triple_double = "\"\"\"";
 
  83 +    String* autodoc = NULL;
 
  87 +      char* t = Char(str);
 
  90 +        Delitem(str,DOH_END);
 
  95 +      autodoc = make_autodoc(n, ad_type);
 
  96 +      have_auto = (autodoc != NULL && Len(autodoc) > 0);
 
  99 +//     if ( have_auto && have_ds )
 
 100 +//       doc = NewStringf("%s%s\n\n%s%s", triple_double, autodoc, str, triple_double);
 
 101 +//     else if ( !have_auto && have_ds )
 
 102 +//       doc = NewStringf("%s%s%s", triple_double, str, triple_double);
 
 104 +//       doc = NewStringf("%s%s%s", triple_double, autodoc, triple_double);
 
 107 +    // If there is more than one line then make docstrings like this:
 
 111 +    //      And here is line2 followed by the rest of them
 
 114 +    // otherwise, put it all on a single line
 
 116 +    if ( have_auto && have_ds ) {       // Both autodoc and docstring are present
 
 117 +      doc = NewString("");
 
 118 +      Printv(doc, triple_double, "\n",
 
 119 +                  pythoncode(autodoc, indent), "\n",
 
 120 +                  pythoncode(str, indent), 
 
 121 +                  indent, triple_double, NIL);
 
 123 +    else if ( !have_auto && have_ds ) { // only docstring
 
 124 +      if (Strchr(str, '\n') == NULL) {
 
 125 +        doc = NewStringf("%s%s%s", triple_double, str, triple_double);
 
 128 +      doc = NewString("");
 
 129 +      Printv(doc, triple_double, "\n",
 
 130 +                  pythoncode(str, indent),
 
 131 +                  indent, triple_double, NIL);
 
 134 +    else if ( have_auto && !have_ds ) { // only autodoc
 
 135 +      if (Strchr(autodoc, '\n') == NULL) {
 
 136 +        doc = NewStringf("%s%s%s", triple_double, autodoc, triple_double);
 
 139 +      doc = NewString("");
 
 140 +      Printv(doc, triple_double, "\n",
 
 141 +                  pythoncode(autodoc, indent),
 
 142 +                  indent, triple_double, NIL);
 
 146 +      doc = NewString("");
 
 148 +    // Save the generated strings in the parse tree in case they are used later
 
 149 +    // by post processing tools
 
 150 +    Setattr(n, "python:docstring", doc);
 
 151 +    Setattr(n, "python:autodoc", autodoc);
 
 156 +  /* ------------------------------------------------------------
 
 158 +   *    Build a docstring for the node, using parameter and other
 
 159 +   *    info in the parse tree.  If the value of the autodoc
 
 160 +   *    attribute is "0" then do not include parameter types, if
 
 161 +   *    it is "1" (the default) then do.  If it has some other
 
 162 +   *    value then assume it is supplied by the extension writer
 
 163 +   *    and use it directly.
 
 164 +   * ------------------------------------------------------------ */
 
 166 +  String* make_autodoc(Node *n, autodoc_t ad_type) {
 
 168 +    if (ad_type == AUTODOC_CLASS)
 
 169 +      return NULL;  // No function call to document in this case
 
 171 +    // If the function is overloaded then this funciton is called
 
 172 +    // for the last one.  Rewind to the first so the docstrings are
 
 174 +    while ( Getattr(n, "sym:previousSibling") )
 
 175 +      n = Getattr(n, "sym:previousSibling");
 
 177 +    String* doc  = NewString("");
 
 179 +      bool showTypes = false;
 
 180 +      bool skipAuto = false;
 
 182 +      // check how should the parameters be rendered?
 
 183 +      String* autodoc = Getattr(n, "feature:autodoc");
 
 184 +      if (Strcmp(autodoc, "0") == 0)
 
 186 +      else if (Strcmp(autodoc, "1") == 0)
 
 189 +        // if not "0" or "1" then autodoc is already the string that should be used
 
 190 +        Printf(doc, "%s", autodoc);
 
 195 +        String*   symname = Getattr(n, "sym:name");
 
 196 +        SwigType* type    = Getattr(n, "type");
 
 199 +          if (Strcmp(type, "void") == 0)
 
 202 +            SwigType* qt = SwigType_typedef_resolve_all(type);
 
 203 +            if (SwigType_isenum(qt))
 
 204 +              type = NewString("int");
 
 206 +              type = SwigType_base(type);
 
 207 +              Node* lookup = Swig_symbol_clookup(type, 0);
 
 209 +                type = Getattr(lookup, "sym:name");
 
 214 +        switch ( ad_type ) {
 
 216 +          if ( Strcmp(class_name, symname) == 0)
 
 217 +            Printf(doc, "__init__(%s) -> %s", make_autodocParmList(n, showTypes), class_name);
 
 219 +            Printf(doc, "%s(%s) -> %s", symname, make_autodocParmList(n, showTypes), class_name);
 
 223 +          Printf(doc, "__del__()");
 
 226 +        case AUTODOC_STATICFUNC:
 
 227 +          Printf(doc, "%s.%s(%s)", class_name, symname, make_autodocParmList(n, showTypes));
 
 228 +          if (type) Printf(doc, " -> %s", type);
 
 232 +          Printf(doc, "%s(%s)", symname, make_autodocParmList(n, showTypes));
 
 233 +          if (type) Printf(doc, " -> %s", type);
 
 238 +      // if it's overloaded then get the next decl and loop around again
 
 239 +      n = Getattr(n, "sym:nextSibling");
 
 248 +  String* make_autodocParmList(Node* n, bool showTypes) {
 
 249 +    String*   doc = NewString(""); 
 
 250 +    ParmList* plist = Getattr(n,"parms");
 
 254 +    const int maxwidth = 50;
 
 257 +    for (p = plist; p; p = nextSibling(p)) {
 
 258 +      String*   name =  Getattr(p, "name");
 
 259 +      String*   value = Getattr(p, "value");
 
 262 +        // add a comma to the previous one if any
 
 265 +        // Do we need to wrap a long line?
 
 266 +        if ((Len(doc) - lines*maxwidth) > maxwidth) {
 
 267 +          Printf(doc, "\n%s", tab4);
 
 272 +      // Do the param type too?
 
 274 +        SwigType* type =  SwigType_base(Getattr(p, "type"));
 
 275 +        SwigType* qt = SwigType_typedef_resolve_all(type);
 
 276 +        if (SwigType_isenum(qt))
 
 277 +          type = NewString("int");
 
 279 +          lookup = Swig_symbol_clookup(type, 0);
 
 281 +            type = Getattr(lookup, "sym:name");
 
 283 +        Printf(doc, "%s ", type);
 
 287 +        Printf(doc, "%s", name);
 
 292 +        if (Strcmp(value, "NULL") == 0)
 
 293 +          value = NewString("None");
 
 295 +          lookup = Swig_symbol_clookup(value, 0);
 
 297 +            value = Getattr(lookup, "sym:name");
 
 299 +        Printf(doc, "=%s", value);
 
 307 +  /* ------------------------------------------------------------
 
 309     *    Check if there is a %addtofunc directive and it has text
 
 310     * ------------------------------------------------------------ */
 
 312 @@ -1700,9 +1963,11 @@
 
 313           Printf(f_shadow, modern ? "(object)" : "(_object)");
 
 316        Printf(f_shadow,":\n");
 
 318 +      if ( Getattr(n, "feature:docstring") ) // don't use have_docstring in this case because autodoc doesn't apply
 
 319 +          Printv(f_shadow, tab4, docstring(n, AUTODOC_CLASS, tab4), "\n", NIL);
 
 322          Printv(f_shadow,tab4,"__swig_setmethods__ = {}\n",NIL);
 
 323          if (Len(base_class)) {
 
 324            Printf(f_shadow,"%sfor _s in [%s]: __swig_setmethods__.update(_s.__swig_setmethods__)\n",tab4,base_class);
 
 325 @@ -1835,16 +2100,22 @@
 
 327           Printv(f_shadow,pycode,"\n",NIL);
 
 330 -          Printv(f_shadow, tab4, "def ", symname, "(*args", (allow_kwargs ? ", **kwargs" : ""), "): ", NIL);
 
 331 -          if ( have_addtofunc(n) ) {
 
 332 -            Printv(f_shadow, "\n", NIL);
 
 333 -            Printv(f_shadow, tab8, "val = ", funcCallHelper(Swig_name_member(class_name,symname), allow_kwargs), "\n", NIL);
 
 334 -            Printv(f_shadow, tab8, addtofunc(n), "\n", NIL);
 
 335 -            Printv(f_shadow, tab8, "return val\n", NIL);
 
 336 +          Printv(f_shadow, tab4, "def ", symname, "(*args", (allow_kwargs ? ", **kwargs" : ""), "):", NIL);
 
 337 +          if ( ! have_addtofunc(n) && ! have_docstring(n)) {
 
 338 +            Printv(f_shadow, " return ", funcCallHelper(Swig_name_member(class_name,symname), allow_kwargs), "\n", NIL);
 
 340 -            Printv(f_shadow, "return ", funcCallHelper(Swig_name_member(class_name,symname), allow_kwargs), "\n", NIL);
 
 341 +            Printv(f_shadow, "\n", NIL);
 
 342 +            if ( have_docstring(n) )
 
 343 +              Printv(f_shadow, tab8, docstring(n, AUTODOC_FUNC, tab8), "\n", NIL);
 
 344 +            if ( have_addtofunc(n) ) {
 
 345 +              Printv(f_shadow, tab8, "val = ", funcCallHelper(Swig_name_member(class_name,symname), allow_kwargs), "\n", NIL);
 
 346 +              Printv(f_shadow, tab8, addtofunc(n), "\n", NIL);
 
 347 +              Printv(f_shadow, tab8, "return val\n\n", NIL);
 
 349 +              Printv(f_shadow, tab8, "return ", funcCallHelper(Swig_name_member(class_name,symname), allow_kwargs), "\n\n", NIL);
 
 355 @@ -1859,14 +2130,20 @@
 
 356    virtual int staticmemberfunctionHandler(Node *n) {
 
 357      String *symname = Getattr(n,"sym:name");
 
 358      Language::staticmemberfunctionHandler(n);
 
 360 -      if ( !classic && have_addtofunc(n) ) {
 
 361 +      if ( !classic && (have_addtofunc(n) || have_docstring(n)) ) {
 
 362          int kw = (check_kwargs(n) && !Getattr(n,"sym:overloaded")) ? 1 : 0;
 
 363          Printv(f_shadow, tab4, "def ", symname, "(*args", (kw ? ", **kwargs" : ""), "):\n", NIL);
 
 364 -        Printv(f_shadow, tab8, "val = ", funcCallHelper(Swig_name_member(class_name, symname), kw), "\n", NIL);
 
 365 -        Printv(f_shadow, tab8, addtofunc(n), "\n", NIL);
 
 366 -        Printv(f_shadow, tab8, "return val\n", NIL);
 
 367 +        if ( have_docstring(n) )
 
 368 +          Printv(f_shadow, tab8, docstring(n, AUTODOC_STATICFUNC, tab8), "\n", NIL);
 
 369 +        if ( have_addtofunc(n) ) {
 
 370 +          Printv(f_shadow, tab8, "val = ", funcCallHelper(Swig_name_member(class_name, symname), kw), "\n", NIL);
 
 371 +          Printv(f_shadow, tab8, addtofunc(n), "\n", NIL);
 
 372 +          Printv(f_shadow, tab8, "return val\n\n", NIL);
 
 374 +          Printv(f_shadow, tab8, "return ", funcCallHelper(Swig_name_member(class_name, symname), kw), "\n\n", NIL);
 
 376          Printv(f_shadow, tab4, modern ? "" : "if _newclass:",  symname,
 
 377                 " = staticmethod(", symname, ")\n", NIL);
 
 380 @@ -1951,8 +2228,10 @@
 
 383              Printv(f_shadow, tab4, "def __init__(self, *args",
 
 384                     (allow_kwargs ? ", **kwargs" : ""), "):\n", NIL);
 
 385 +            if ( have_docstring(n) )
 
 386 +              Printv(f_shadow, tab8, docstring(n, AUTODOC_CTOR, tab8), "\n", NIL);
 
 387              Printv(f_shadow, pass_self, NIL);
 
 389                Printv(f_shadow, tab8, "_swig_setattr(self, ", rclassname, ", 'this', ", 
 
 390                       funcCallHelper(Swig_name_construct(symname), allow_kwargs), ")\n", NIL);
 
 391 @@ -1966,9 +2245,9 @@
 
 392                Printv(f_shadow, tab8, "self.thisown = 1\n", NIL);
 
 393                Printv(f_shadow, tab8, "del newobj.thisown\n", NIL);
 
 395              if ( have_addtofunc(n) )
 
 396 -              Printv(f_shadow, tab8, addtofunc(n), "\n", NIL);
 
 397 +              Printv(f_shadow, tab8, addtofunc(n), "\n\n", NIL);
 
 400           have_constructor = 1;
 
 402 @@ -1984,8 +2263,10 @@
 
 405              Printv(f_shadow_stubs, "\ndef ", symname, "(*args",
 
 406                     (allow_kwargs ? ", **kwargs" : ""), "):\n", NIL);
 
 407 +            if ( have_docstring(n) )
 
 408 +              Printv(f_shadow_stubs, tab4, docstring(n, AUTODOC_CTOR, tab4), "\n", NIL);
 
 409              Printv(f_shadow_stubs, tab4, "val = ",
 
 410                     funcCallHelper(Swig_name_construct(symname), allow_kwargs), "\n", NIL);
 
 411             Printv(f_shadow_stubs, tab4, "val.thisown = 1\n", NIL);
 
 412              if ( have_addtofunc(n) )
 
 413 @@ -2017,13 +2298,15 @@
 
 415         Printv(f_shadow,pycode,"\n", NIL);
 
 417         Printv(f_shadow, tab4, "def __del__(self, destroy=", module, ".", Swig_name_destroy(symname), "):\n", NIL);
 
 418 +        if ( have_docstring(n) )
 
 419 +              Printv(f_shadow, tab8, docstring(n, AUTODOC_DTOR, tab8), "\n", NIL);
 
 420         if ( have_addtofunc(n) )
 
 421           Printv(f_shadow, tab8, addtofunc(n), "\n", NIL);
 
 422         Printv(f_shadow, tab8, "try:\n", NIL);
 
 423 -       Printv(f_shadow, tab4, tab8, "if self.thisown: destroy(self)\n", NIL);
 
 424 -       Printv(f_shadow, tab8, "except: pass\n", NIL);
 
 425 +       Printv(f_shadow, tab8, tab4, "if self.thisown: destroy(self)\n", NIL);
 
 426 +       Printv(f_shadow, tab8, "except: pass\n\n", NIL);