Re: [IronPython] Using Wing IDE with IronPython - autocomplete for .NET objects (PI file generator)

2009-04-30 Thread Davy Mitchell
On Thu, Apr 30, 2009 at 12:43 AM, Jimmie Houchin  wrote:
> This sounds great. I am new to both IronPython, WingIDE and Windows
> development in general.

Interesting to see how much developers want autocomplete! I tried to
start adding this to DIE tonight but was struggling with the code
editor component. Unfortunately the project looks a little stagnant.

Does anyone know of any other good free syntax highlighting .net
editor components?

Thanks,
Davy Mitchell

http://code.google.com/p/davysironpythoneditor/
___
Users mailing list
Users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com


Re: [IronPython] Using Wing IDE with IronPython - autocomplete for .NET objects (PI file generator)

2009-04-29 Thread Jimmie Houchin
This sounds great. I am new to both IronPython, WingIDE and Windows 
development in general.


One of the disappointing things with WingIDE for me is the total absence 
of autocompletion of .NET imports and also the DLL Assembly References 
I've added to access the libraries my app requires.


Unfortunately, for most of what I would like, I believe it would require 
WingIDE to support the use of IronPython. Is this accurate? And if 
WingIDE did support the use of IronPython would it make what you are 
doing easier or possibly unnecessary?


I am exploring my IDE options. So I am somewhat disappointed with 
WingIDE not providing autocompletion or any of the features for which I 
am explicitly needing to use IronPython for. Unfortunately I really 
haven't found anything that does provide autocompletion for the 
libraries I've imported via clr. Oh well. It is possible I've missed 
something.


I would love to see WingIDE support IronPython and enabling 
autocompletion, debugging, etc. on .NET and clr imported libraries and 
modules.


Thanks for doing this Michael. It will be a nice help. And also thanks 
for your book which I am working my way through.


Jimmie Houchin



Michael Foord wrote:

Hello all,

Attached is an updated script for generating PI files to provide 
autocomplete on standard .NET objects.


It now handles all the standard .NET member types (including static 
properties, enumeration fields, indexers, events and so on).


It also recurses into sub-namespaces generating new pi-files for all of 
them.


This script is hardcoded to add references to, and then generate PI 
files for:


   System
   System.Data
   System.Drawing
   System.Windows.Forms

It generates 90 pi files (90 namespaces) taking up 24mb! The 
autocomplete it provides is awesome though. :-)


I had to do a fair bit of violence to the standard generate_pi.py script 
so I *doubt* it is desirable to merge it back in. Obviously very happy 
for this to be included with Wing if you want, or merged if you think it 
is worth it. Is it ok for me to offer this for download from my site? If 
I make further changes I will email this list.


The big thing to add is the return type for methods.

Is it possible to specify return types for properties? (Currently any 
attribute without an obvious parallel in Python I have turned into a 
property in the PI files).


The only real caveat with the current script (that I am aware of - bug 
reports and contributions welcomed) is that None is a common enumeration 
field member. This is invalid syntax in Python, so I rename these to None_.


There are quite a few minor changes sprinkled through the code - plus 
the __main__ part of the script is very different. I have tried to mark 
changes with a # CHANGE: comment, but it should be relatively amenable 
to diffing anyway...


For reference I was using IronPython 2.0.1, with .NET 3.5 installed and 
Wing 3.2beta 1.


All the best,

Michael Foord

Michael Foord wrote:

Hello all,

I've created a modified version of the 'generate_pi.py' which 
generates the interface files for .NET libraries. It is attached.


At the moment it generates PI files for the following assemblies / 
namespaces (hardwired at the bottom of the code):


   System
   System.Data
   System.Drawing
   System.Windows.Forms

To run it, create a new directory and add this to the 'Interface File 
Path' (File menu -> Preferences -> Source Analysis -> Advanced -> 
Insert).


Then from the command line switch to this directory (if you are on 
Vista you will need to run cmd with admin privileges due to a defect 
explained below). Execute the command:


   ipy generate_pi_for_net.py

This generates the pi files. It doesn't work *as well* on 64 bit 
windows because the .NET XML help files (or whatever they are called) 
are in a different location so the docstrings are not always available 
- which is why I am not just distributing the pi files yet.


The script doesn't yet understand static properties on classes - so it 
actually *fetches* static properties rather than looking at the 
descriptor (which is available in the class __dict__ so should be easy 
to fix). This is what causes inadvertent registry lookups etc and 
therefore requires admin privileges.


It doesn't yet understand multiple overloads. This may require a 
change to Wing or may not matter.


It isn't yet able to do anything with the information about return 
types - which would allow Wing to know the type of objects returned by 
methods. This may be easy to add?


It is late so I am going to bed. At some point I will explain the 
simple changes I  had to make to the standard generate_pi.py script 
(although they are mostly straightforward). I will also do further 
work on it as it will be very useful to me...


All the best,

Michael



_
Wing IDE users list
http://wingware.com/lists/wingide






[IronPython] Using Wing IDE with IronPython - autocomplete for .NET objects (PI file generator)

2009-04-28 Thread Michael Foord

Hello all,

I've created a modified version of the 'generate_pi.py' which generates
the interface files for .NET libraries. It is attached.

At the moment it generates PI files for the following assemblies /
namespaces (hardwired at the bottom of the code):

System
System.Data
System.Drawing
System.Windows.Forms

To run it, create a new directory and add this to the 'Interface File
Path' (File menu -> Preferences -> Source Analysis -> Advanced -> Insert).

Then from the command line switch to this directory (if you are on Vista
you will need to run cmd with admin privileges due to a defect explained
below). Execute the command:

ipy generate_pi_for_net.py

This generates the pi files. It doesn't work *as well* on 64 bit windows
because the .NET XML help files (or whatever they are called) are in a
different location so the docstrings are not always available - which is
why I am not just distributing the pi files yet.

The script doesn't yet understand static properties on classes - so it
actually *fetches* static properties rather than looking at the
descriptor (which is available in the class __dict__ so should be easy
to fix). This is what causes inadvertent registry lookups etc and
therefore requires admin privileges.

It doesn't yet understand multiple overloads. This may require a change
to Wing or may not matter.

It isn't yet able to do anything with the information about return types
- which would allow Wing to know the type of objects returned by
methods. This may be easy to add?

It is late so I am going to bed. At some point I will explain the simple
changes I  had to make to the standard generate_pi.py script (although
they are mostly straightforward). I will also do further work on it as
it will be very useful to me...

All the best,

Michael

--
http://www.ironpythoninaction.com/
http://www.voidspace.org.uk/blog



""" generate_pi.py -- Generate Python interface by inspecting a module
  at runtime

Copyright (c) 2001-2008, Archaeopteryx Software, Inc.  All rights reserved.

Written by John P. Ehresman and Stephan R.A. Deibel

Simple utility to generate a python interface file from inspecting a module
at run time.  First argument is the name of the module.  Subsequent arguments
are name:expression pairs -- a class with given name will be created in the
interface file with methods & attributes matching the methods & attributes
of the object that results from the expression. The expression will be 
evaluated within the context of the module. The interface will be written
to stdout.

This contains some code specific to Python standard library code because it
parses the docstring standards used there to determine information about
return values. However, it works also with code that does not contain those
type hints in docstrings (but return value type cannot be determined).

"""

# IMPORTANT:  This code has to run under all Python versions!

import sys
import os
import string
import stat
try:
  import inspect
except:
  inspect = None

try:
  ascii_letters = string.ascii_letters
except:
  ascii_letters = string.letters
  
version = ((sys.hexversion & 0xff00) >> 24,
   (sys.hexversion & 0x00ff) >> 16)

def string_split(s, sep=' '):
  return s.split(sep)
def string_join(s, sep):
  return sep.join(s)
def string_find(s, t):
  return s.find(t)
def string_strip(s):
  return s.strip()
def string_replace(s, f, t, count=-1):
  return s.replace(f, t, count)
def string_lower(s):
  return s.lower()
def string_rfind(s, x):
  return s.rfind(x)
def has_key(o, key):
  if version >= (3, 0):
return key in o
  else:
return o.has_key(key)
if version >= (3, 0):
  def callable(o):
return hasattr(o, '__call__')
  
if version[0] == 1:
  printable_chars = 
'0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?...@[\\]^_`{|}~
  \t\n\r\x0b\x0c'
else:
  printable_chars = string.printable
  
kOneLevelIndent = '  '
kNoValue = []

kStringTypes = [type('')]
import types
try:
  kStringTypes = types.StringTypes
except:
  pass
kLiteralTypes = [type(1), type(1.0), type(None)]
try:
  kLiteralTypes.append(types.EllipsisType)
  kLiteralTypes.append(types.BooleanType)
except:
  pass
kStructureTypes = [type([]), type(()), type({})]
kFileTypes = [type(sys.stdout)]
if version >= (3, 0):
  kListType = type([])
  kTupleType = type(())
  kDictType = type({})
else:
  kListType = types.ListType
  kTupleType = types.TupleType
  kDictType = types.DictType
  
# Property support contributed by Nigel Rowe, Aug 10, 2007
kPropertyTypes = []
try:
  kPropertyTypes.append(type(property()))
except:
  pass
import types
try:
  # types.GetSetDescriptorType only exists in python versions >= 2.5
  # and would otherwise need to be extracted from an extension module
  kPropertyTypes.append(types.GetSetDescriptorType)
except:
  pass


# Types of type, old-style class -- use C api names to be a bit clearer
PyType_Type = type(type(''))
class _OldStyleClass:
  pass
Py