You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@polygene.apache.org by pa...@apache.org on 2015/07/07 09:33:47 UTC

[1/2] zest-qi4j git commit: ZEST-30 Scala Library: cosmetics

Repository: zest-qi4j
Updated Branches:
  refs/heads/develop 97f9ca00a -> a75cd1f2d


ZEST-30 Scala Library: cosmetics


Project: http://git-wip-us.apache.org/repos/asf/zest-qi4j/repo
Commit: http://git-wip-us.apache.org/repos/asf/zest-qi4j/commit/dafc7ecd
Tree: http://git-wip-us.apache.org/repos/asf/zest-qi4j/tree/dafc7ecd
Diff: http://git-wip-us.apache.org/repos/asf/zest-qi4j/diff/dafc7ecd

Branch: refs/heads/develop
Commit: dafc7ecdd81c3493fd84abf81ba9f156e1e8aae8
Parents: 97f9ca0
Author: Paul Merlin <pa...@apache.org>
Authored: Tue Jul 7 09:01:37 2015 +0200
Committer: Paul Merlin <pa...@apache.org>
Committed: Tue Jul 7 09:01:37 2015 +0200

----------------------------------------------------------------------
 libraries/lang-scala/build.gradle               |  4 +-
 .../org/qi4j/lang/scala/ScalaTraitMixin.java    | 68 ++++++++++++--------
 2 files changed, 42 insertions(+), 30 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/dafc7ecd/libraries/lang-scala/build.gradle
----------------------------------------------------------------------
diff --git a/libraries/lang-scala/build.gradle b/libraries/lang-scala/build.gradle
index f36e1b7..ee3b012 100644
--- a/libraries/lang-scala/build.gradle
+++ b/libraries/lang-scala/build.gradle
@@ -17,9 +17,9 @@
  * under the License.
  */
 
-description = "Qi4j BeanShell Library allows for Mixins to be implemented in BeanShell (Java) scripts instead of directly in compiled Java."
+description = "Qi4j Scala Library allows for Mixins to be implemented in Scala."
 
-jar { manifest { name = "Qi4j Library - Scripting - BeanShell" }}
+jar { manifest { name = "Qi4j Library - Scripting - Scala" }}
 
 apply plugin: 'scala'
 

http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/dafc7ecd/libraries/lang-scala/src/main/java/org/qi4j/lang/scala/ScalaTraitMixin.java
----------------------------------------------------------------------
diff --git a/libraries/lang-scala/src/main/java/org/qi4j/lang/scala/ScalaTraitMixin.java b/libraries/lang-scala/src/main/java/org/qi4j/lang/scala/ScalaTraitMixin.java
index 04c4048..65912d9 100644
--- a/libraries/lang-scala/src/main/java/org/qi4j/lang/scala/ScalaTraitMixin.java
+++ b/libraries/lang-scala/src/main/java/org/qi4j/lang/scala/ScalaTraitMixin.java
@@ -41,24 +41,23 @@ import static org.qi4j.api.util.Classes.interfacesOf;
 /**
  * Generic mixin that handles delegation to Scala trait implementations.
  */
-@AppliesTo(ScalaTraitMixin.TraitFilter.class)
+@AppliesTo( ScalaTraitMixin.TraitFilter.class )
 public class ScalaTraitMixin
     implements InvocationHandler
 {
-    private static Map<Class<?>, Map<Method, InvocationHandler>> methods = new HashMap<Class<?>, Map<Method, InvocationHandler>>();
+    private static Map<Class<?>, Map<Method, InvocationHandler>> methods = new HashMap<>();
 
     private Class<?> compositeType;
 
     public ScalaTraitMixin( @This Composite composite )
     {
-        compositeType = Qi4j.FUNCTION_DESCRIPTOR_FOR.map( composite).primaryType();
+        compositeType = Qi4j.FUNCTION_DESCRIPTOR_FOR.map( composite ).primaryType();
     }
 
     @Override
     public Object invoke( Object composite, Method method, Object[] args ) throws Throwable
     {
         InvocationHandler handler = methods.get( compositeType ).get( method );
-
         return handler.invoke( composite, method, args );
     }
 
@@ -68,35 +67,37 @@ public class ScalaTraitMixin
         @Override
         public boolean appliesTo( Method method, Class<?> mixin, Class<?> compositeType, Class<?> fragmentClass )
         {
-            if (isScalaTrait(method.getDeclaringClass()))
+            if( isScalaTrait( method.getDeclaringClass() ) )
             {
                 // Service injection
-                if (method.getAnnotation( Service.class ) != null)
+                if( method.getAnnotation( Service.class ) != null )
                 {
-                    if (method.getReturnType().equals( ServiceReference.class ))
+                    if( method.getReturnType().equals( ServiceReference.class ) )
                     {
                         InvocationHandler handler = new InvocationHandler()
                         {
                             @Override
                             public Object invoke( Object composite, Method method, Object[] objects ) throws Throwable
                             {
-                                return ((CompositeInstance)Proxy.getInvocationHandler( composite )).module().findService( method.getReturnType() );
+                                return ( (CompositeInstance) Proxy.getInvocationHandler( composite ) ).module()
+                                    .findService( method.getReturnType() );
                             }
                         };
                         getHandlers( compositeType ).put( method, handler );
-                    } else
+                    }
+                    else
                     {
                         InvocationHandler handler = new InvocationHandler()
                         {
                             @Override
                             public Object invoke( Object composite, Method method, Object[] objects ) throws Throwable
                             {
-                                return ((CompositeInstance)Proxy.getInvocationHandler( composite )).module().findService( method.getReturnType() ).get();
+                                return ( (CompositeInstance) Proxy.getInvocationHandler( composite ) ).module()
+                                    .findService( method.getReturnType() ).get();
                             }
                         };
                         getHandlers( compositeType ).put( method, handler );
                     }
-
                     return true;
                 }
 
@@ -109,17 +110,22 @@ public class ScalaTraitMixin
                     @Override
                     public Class map( Class aClass )
                     {
-                        if ( declaringClass.isAssignableFrom(aClass))
+                        if( declaringClass.isAssignableFrom( aClass ) )
                         {
                             try
                             {
-                                aClass.getClassLoader().loadClass( aClass.getName()+"$class" );
+                                aClass.getClassLoader().loadClass( aClass.getName() + "$class" );
 
-                                if (current == null)
+                                if( current == null )
+                                {
                                     current = aClass;
+                                }
                                 else
+                                {
                                     current = current.isAssignableFrom( aClass ) ? aClass : current;
-                            } catch( ClassNotFoundException e )
+                                }
+                            }
+                            catch( ClassNotFoundException e )
                             {
                                 // Ignore - no trait implementation found
                             }
@@ -129,14 +135,16 @@ public class ScalaTraitMixin
                     }
                 }, Iterables.map( Classes.RAW_CLASS, interfacesOf( compositeType ) ) ) );
 
-                if (traitClass == null)
+                if( traitClass == null )
+                {
                     return false;
+                }
 
                 try
                 {
-                    Class traitMixin = traitClass.getClassLoader().loadClass( traitClass.getName()+"$class" );
+                    Class traitMixin = traitClass.getClassLoader().loadClass( traitClass.getName() + "$class" );
                     Class<?>[] methodParameterTypes = method.getParameterTypes();
-                    Class[] parameterTypes = new Class[1+ methodParameterTypes.length];
+                    Class[] parameterTypes = new Class[1 + methodParameterTypes.length];
                     parameterTypes[0] = traitClass;
                     System.arraycopy( methodParameterTypes, 0, parameterTypes, 1, methodParameterTypes.length );
                     final Method traitMethod = traitMixin.getMethod( method.getName(), parameterTypes );
@@ -148,7 +156,6 @@ public class ScalaTraitMixin
                         @Override
                         public Object invoke( Object composite, Method method, Object[] args ) throws Throwable
                         {
-
                             if( args != null )
                             {
                                 Object[] params = new Object[args.length + 1];
@@ -156,20 +163,26 @@ public class ScalaTraitMixin
                                 System.arraycopy( args, 0, params, 1, args.length );
 
                                 return traitMethod.invoke( null, params );
-                            } else
+                            }
+                            else
+                            {
                                 return traitMethod.invoke( null, composite );
+                            }
                         }
                     } );
 
                     return true;
-                } catch( ClassNotFoundException e )
+                }
+                catch( ClassNotFoundException e )
                 {
                     return false;
-                } catch( NoSuchMethodException e )
+                }
+                catch( NoSuchMethodException e )
                 {
                     return false;
                 }
-            } else
+            }
+            else
             {
                 return false;
             }
@@ -179,7 +192,7 @@ public class ScalaTraitMixin
         {
             for( Annotation annotation : declaringClass.getAnnotations() )
             {
-                if (annotation.annotationType().getSimpleName().equals( "ScalaSignature" ))
+                if( annotation.annotationType().getSimpleName().equals( "ScalaSignature" ) )
                 {
                     return true;
                 }
@@ -187,15 +200,14 @@ public class ScalaTraitMixin
             return false;
         }
 
-        private Map<Method, InvocationHandler> getHandlers(Class<?> compositeType)
+        private Map<Method, InvocationHandler> getHandlers( Class<?> compositeType )
         {
             Map<Method,InvocationHandler> handlerMap = methods.get( compositeType );
-            if (handlerMap == null)
+            if( handlerMap == null )
             {
-                handlerMap = new HashMap<Method, InvocationHandler>();
+                handlerMap = new HashMap<>();
                 methods.put( compositeType, handlerMap );
             }
-
             return handlerMap;
         }
     }


[2/2] zest-qi4j git commit: Minor: fix typo in lang-jruby README

Posted by pa...@apache.org.
Minor: fix typo in lang-jruby README


Project: http://git-wip-us.apache.org/repos/asf/zest-qi4j/repo
Commit: http://git-wip-us.apache.org/repos/asf/zest-qi4j/commit/a75cd1f2
Tree: http://git-wip-us.apache.org/repos/asf/zest-qi4j/tree/a75cd1f2
Diff: http://git-wip-us.apache.org/repos/asf/zest-qi4j/diff/a75cd1f2

Branch: refs/heads/develop
Commit: a75cd1f2da1217cde6f940f1fff70def42bcfb64
Parents: dafc7ec
Author: Paul Merlin <pa...@apache.org>
Authored: Tue Jul 7 09:33:23 2015 +0200
Committer: Paul Merlin <pa...@apache.org>
Committed: Tue Jul 7 09:33:23 2015 +0200

----------------------------------------------------------------------
 libraries/lang-jruby/README.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/a75cd1f2/libraries/lang-jruby/README.txt
----------------------------------------------------------------------
diff --git a/libraries/lang-jruby/README.txt b/libraries/lang-jruby/README.txt
index 4cb1b55..a78ec2a 100644
--- a/libraries/lang-jruby/README.txt
+++ b/libraries/lang-jruby/README.txt
@@ -1,5 +1,5 @@
 
-BeanShell is licensed under LGPL, and Apache Software Foundation
+JRuby is licensed under LGPL, and Apache Software Foundation
 doesn't allow the use of LGPL in Apache projects.
 
 Therefor, Apache Zest had to drop this library component, but
@@ -7,4 +7,4 @@ it is still available for separate download at
 
 https://github.com/Qi4j/qi4j-sdk
 
-in the libraries/lang-beanshell directory.
+in the libraries/lang-jruby directory.