Python in Time Cockpit 1.7

Sunday, January 22, 2012 by Simon Opelt

With the release of time cockpit 1.7 we are happy to ship IronPython 2.7.1 as our scripting environment. This release significantly simplifies the use of LINQ by fixing an issue we identified and reported about ten months ago. It is now possible to import, transparently use and chain together calls to extension methods which LINQ heavily relies on.

Just add the following lines to your script to use methods typically required for processing .net collections:

clr.AddReference("System.Core")
import System
clr.ImportExtensions(System.Linq)

The example I previously wrote about can be simplified to look like the following:

clr.AddReference("System.Core")
import System
clr.ImportExtensions(System.Linq)

# get all projects
projects = Context.Select("From P In Project Select P")

# filter (in memory) all projects with a name beginning with T
resultProjectsWithT = projects.Where(lambda p: p.ProjectName.StartsWith("T")).ToList[EntityObject]()

# sort a collection
resultSorted = resultProjectsWithT.OrderBy(lambda p: p.StartDate).ToList[EntityObject]()

# pretty print a list of project names
print String.Join(", ", resultSorted.Select(lambda p: p.ProjectName))

# determine a minimum and maximum
print resultSorted.Min[EntityObject, Nullable[DateTime]](lambda p: p.StartDate), resultSorted.Max[EntityObject, Nullable[DateTime]](lambda p: p.StartDate)

Note that all the calls to extension methods (e.g. the use of Enumerable.Where or Enumerable.Select) can now be written as expected. The calls to ToList[EntityObject] are only required to correctly type the results for showing them in a UI result grid.

Please also note that there are still situations where the dynamic nature of Python and our data layer requires to include some type hints to determine the correct method calls but these situations are quite rare now.

comments powered by Disqus

Simon Opelt

Simon Opelt

Senior Software Developer

profile for Simon at Stack Overflow, Q&A for professional and enthusiast programmers

Follow

Google+

Authors