Function Curry in Java8




One of the important features of a functional program is Function Currying.As we know java8 introduce lambda which brings some functional nature in java programming. We are blessed that by an intelligent use of Lambda we can create Function currying by own. Although Java8 does not have Currying facilities we can create it by ourselves. In this section, I will discuss the detail step How to create Currying in Java 8.



What is a Function Currying?
To understand the function currying let first understand what is a Partial function.

A partial function is the application of a part of a function.

To be very simple, Suppose I have a java method called add which takes two arguments as input then capability of applying one argument is called the Partial function.

Maybe you are astonished in this moment why the hell we need to do that?

Let me tell you, This is a very rich concept and it helps you to write a rich API and reduce the Repeating of yourself (DRY). It actually eliminates the conceptual duplication.

Now I am trying to describe it with a example so you can understand the above paragraph well.

Suppose, I want to write a generic compute function which takes two inputs and takes a BiFunction (Java 8 functional Interface) so I can pass behavior on the fly which will be applied to the two inputs argument.

Example

public  Integer compute(Integer a, Integer b,BiFunction<Integer,Integer,Integer> function){      
       return function.apply(a,b);
    }


By this compute method I can apply add, multiply, division whatever on these passing parameters a and b.

So I will call the Compute function in following way
BiFunction<Integer,Integer,Integer> addFunction =  (a,b)-> a+b;
Integer summation = fc.compute(50, 20, addFunction);
System.out.println("Summation is " + summation);

The output will be 70, as BiFunction called addFunction which do the adding.

Now suppose we have to build another logic, Say I pass a number then a base will automatically apply to it. The base value is  10.

So if the base is 10 and I pass 20 then the output will be 10 + 20 =30(base + actual parameter).

How would you write this function?

Very easy isn’t it, we should write it in the following manner

public Integer baseCompute(Integer value,Function<Integer,Integer> function){
       return function.apply(value);
    }


It takes a value and a Function which takes one Integer as input and return another Integer So that this function takes the passing value apply base to it and return the resultant value.

We call this baseCompute method by the following call,

Function<Integer,Integer> baseFunction =  (value)-> 10 + value;//declare base
      Integer baseResult = fc.baseCompute(20,baseFunction);
      System.out.println("Base computation " + baseResult);


The output will be 30.
So far so good, But if you are a Clean coder you are not happy with it because you observe

BiFunction<Integer,Integer,Integer> addFunction =  (a,b)-> a+b;
Function<Integer,Integer> baseFunction =  (value)-> 10 + value;

The addFunction and baseFunction body are same, so you duplicate your code breaking the DRY principle. So you must search for an option where you can reuse the same addFunction instead of writing a new baseFunction, But the problem is the Structure of addFunction is different from the base function. addFunction takes two parameters and base takes one, But conceptually both are doing same work,

addFunction add two parameters, baseFunction takes one parameter and add base value internally.

Think How you can solve the problem while I taking a short break for breakfast.

We can solve this problem, by fixing a parameter in the bi-function. As we know the base value is 10 so if we apply that value and take another value from caller then we can reuse the BiFunction.

So we could rewrite the baseCompute method like following

 public Integer applyPartialInternalCompute(Integer value,BiFunction<Integer,Integer,Integer> function){
       return function.apply(10,value);
    }


And calls the above method like following

BiFunction<Integer,Integer,Integer> addFunction =  (a,b)-> a+b;
Integer baseInternal = fc.applyPartialInternalCompute(20, addFunction);
 System.out.println("Base Internal " + baseInternal);



Congrats you have written your first partial function, Where you fixed you first parameter and takes a parameter from Caller.

It is the essence of Partial function apply a partial part of the function and returns a new function which can take remaining arguments. So it is consists of two thing



  1. Applying a part.
  2. Return a new function after applying one argument.

Mathametically

f ( x , y ) = x+y
After applying the  first parameter of function
f(2,y)=N(y)=2+y; where N(Y) is a new function returned after currying.


But what we did in our applyPartialInternalCompute method is not returning a new function or the intermediate function after partial applying the first value- Which is base value,  so it is not properly curryed this is very basic version, Let see how can we improve the function so we can get the new intermediate function after applying the first argument base.

public Function<Integer,Integer> applyPartialExternalCompute(Integer base,BiFunction<Integer,Integer,Integer> function){
       return value->function.apply(base,value);
    }


This is a more sophisticated version, It takes a Bi-function and a base value, Then apply the base value to the BiFunction and return a new Function which takes One parameter from the caller and returns another Integer.

So this function works as an adapter, It takes Bi-function applying a parameter or fixing a parameter and returns new Intermediate function to work upon,


BiFunction<Integer,Integer,Integer> = Fixed Base value + Function<Integer,Integer>

Please note that the returning function is looks  like of our baseFunction   Function<Integer,Integer> baseFunction =  (value)-> 10 + value;//declare base

This is called Function Currying, so we can use the BiFunction at fullest, So a BiFunction can take two parameters also it serves any functionality which takes one argument by fixing the first one.

How to call the applyPartialExternalCompute method,

Integer basepartial= fc.applyPartialExternalCompute(10, addFunction).apply(20);
System.out.println("Base External " + basepartial);


Our above solution is very good, and we properly use function Currying to remove conceptual duplication but wait there is still some glitch in the method we have written.

It takes Bi-function and a value and returns a Function, So every time we invoke this method it applies the parameter to BiFunction and return a new Function, But why should we perform two steps every time if we got the readymade intermediate function then we just apply our values,
Suppose there is a function which takes three arguments then we have to write two adapter functions one takes tri-function and return a Bi-function and another takes Bi-function and return a function,

So if parameter values are n we have to write n-1 adaptor methods. Which is again a duplication, So if the Curry function itself generates all intermediate structures then it will be a full proof solution lets implement this,

public   Function<Integer,Function<Integer,Integer>> applyCurryingCompute(BiFunction<Integer,Integer,Integer> function){
       return value->(base->function.apply(base,value));
    }


Yes, we are waiting for this implementation, and it is the Crux of this article, By above Curry function we should have every intermediate function and we can do any functionality by fixing others,

It takes a Bi-Function which returns an Intermediate function which takes an argument and returns a function which again takes another argument and lastly returns an Integer.

Hard to understand,

Then see the following transformation to understand what actually going on

(x,y)->z = x->(y->z)   BiFunction changes it structure after currying and create a new structure
(Integer,Integer)=Integer - > Integer =Integer->( Integer->Integer)

f(y)=x->f(x,y)=z where x->f(x,y) means x applied on Bifunction creates a function of y which is equivalent to Z

So (x->y)->z = x->(y->z).


How to call above applyCurryingCompute method

Integer baseCurry= fc.applyCurryingCompute(addFunction).apply(10).apply(20);
System.out.println("Base Curry " + baseCurry);


The full version of the program

package com.example.function.curry;

import java.util.function.BiFunction;
import java.util.function.Function;

public class FunctionCurrying {
   
    public  Integer compute(Integer a, Integer b,BiFunction<Integer,Integer,Integer> function){      
       return function.apply(a,b);
    }
    public Integer baseCompute(Integer value,Function<Integer,Integer> function){
       return function.apply(value);
    }
   
    public Integer applyPartialInternalCompute(Integer value,BiFunction<Integer,Integer,Integer> function){
       return function.apply(10,value);
    }
    public Function<Integer,Integer> applyPartialExternalCompute(Integer base,BiFunction<Integer,Integer,Integer> function){
       return value->function.apply(base,value);
    }
   
    public   Function<Integer,Function<Integer,Integer>> applyCurryingCompute(BiFunction<Integer,Integer,Integer> function){
       return value->(base->function.apply(base,value));
    }
   
   
    public static void main(String[] args) {
       FunctionCurrying fc = new FunctionCurrying();
       BiFunction<Integer,Integer,Integer> addFunction =  (a,b)-> a+b;
       Function<Integer,Integer> baseFunction =  (value)-> 10 + value;
       Integer summation = fc.compute(50, 20, addFunction);
       System.out.println("Summation is " + summation);
       Integer baseResult = fc.baseCompute(20,baseFunction);
       System.out.println("Base computation " + baseResult);
       Integer baseInternal = fc.applyPartialInternalCompute(20, addFunction);
       System.out.println("Base Internal " + baseInternal);
       Integer basepartial= fc.applyPartialExternalCompute(10, addFunction).apply(20);
       System.out.println("Base External " + basepartial);
       Integer baseCurry= fc.applyCurryingCompute(addFunction).apply(10).apply(20);
       System.out.println("Base Curry " + baseCurry); 
     
     
   }  
   

}




Conclusion: Function Currying is a rich technique, In the functional program we use it often to get rid of conceptual duplication. You can use it in Java 8 now so Please use the concept wisely.

Techniques for reducing Tight Coupling

“Tight Coupling is Bad” How many times you have heard this word from your seniors. Probably many many times.
But why Coupling is bad what are the implications comes if you do tight coupling?
What is actually a Tight coupling?
How we can fight with it.?
In this tutorials, we will dig the answers.

Coupling: In a simple term coupling is when a Class or Interface dependent on another class/interface i.e has a HAS-A relationship.

Example :

Class Vehicle{

private Wheel wheel =new Wheel();

}

In above example, Vehicle is dependent on Wheel, Which means without creating Wheel Object we can’t create Vehicle Object if anything goes wrong while creating Wheel Object vehicle will never be created. Also if we need to test Vehicle, first Wheel Object has to be created then Vehicle can be tested. Without, Wheel Vehicle has no existence. This type of coupling is called Tight Coupling, We know Vehicle must contain Wheel, To make the statement more generic sometimes we have requirements where a class must have to contains other classes to fulfill its purpose, they can't-do thing independently. So Coupling is inevitable, it can not be avoided but by programming technique we can make it pluggable in such a way so that we can reduce the degree of coupling so Dependable and Dependent class/interface can be changed without impacting each other. We called this technique as Loose coupling. I will show you some techniques which reduce the coupling between Objects.

Creation of Objects : Often while we doing coding we direct create the dependable Object instance, either in a init method or in Constructor or supply it through setter/constructor. But it is always risky. Once you have done that, Then you lose the flexibility if requirement changes in future you have to change the Dependent Object to accommodate the change in dependable Object. Let say All Ford cars use MRF Wheel So they are dependent on MRF wheel, Now if they change the mind and want to use Another company’s wheel then they have to change all car's Wheel Object creation so it is against the Open-Close principle.

Ex.
public Class Ford{
MRFWheel wheel;
Ford(MRFWheel wheel){
this.wheel =wheel;// replaced by new JKWheel()
}




}

So the best practices would be If you think dependent object will be changed frequently or may have multiple implementations always create an Interface and use that interface as a reference so anytime you can change the implementation without affecting the dependent class. But if you are sure about the dependent Objects behavior will not change then unnecessary don’t create interface it again against YAGNI and KISS.

IWheel{
//wheel related methods
}

public class Ford{
IWheel wheel;
Ford(IWheel wheel){
this.wheel =wheel;// replaced by new JKWheel()
}




}

Assuming MRFWheel and JKWheel are the subclasses of the IWheel

new Ford(new MRFWheel());
new Ford(new JKWheel())



Use Static factory method for creating Object : While creating an Interface for multiple implementations is good as you can change implementation dynamically. But if the dependable Object implementation is changed then again you have to change the all dependant Object which again breaks the Open/close principle.

Say Now Wheel take Air Pressure as a Constructor arguments then the caller of the Ford car has to change its logic, as multiple cars have dependencies on Wheel every implementation will break due to this change.


new Ford(new MRFWheel(AirPressure pressure));
new Ford(new JKWheel(AirPressure pressure))

The problem is we do not centralize the Object creation so all the caller has a responsibility to create the Objects and when the project grows it is a tedious job to find all references and fix them in case of a change in business logic in dependable Object. We certainly reduce our effort, if we use a Static Factory method to create the instances, So we centralize the creation of dependable object all dependent objects refer static factory method to get the dependable Object.So if any implementation details change it will only affect the Static factory method, Unless the method signature of the Static factory method is changed.

public static IWheel createWheel(WHEEL wheel){
if(WHEEL.mrf.equals(wheel)
new MRFWheel(AirPressure pressure)
}
else if(WHEEL.JK.equals(wheel)
new JKWheel(AirPressure pressure)
}else{
New DumyWheel(AirPressure pressure)
}

calling:

new Ford(WheelFactory.createWheel(WHEEL.mrf)));
new Ford(WheelFactory.createWheel(WHEEL.JK)));



Don’t take dependable Object Responsibility : Often knowingly or unknowingly, caller take the responsibility of dependable Object, which is breaking the encapsulation and it is the most common coding mistake I have seen, Not judging the Cohesion properly and it breaks another principle Tell Don’t Ask. Which increases unnecessary coupling and gradually your code not welcoming any future changes. Let's take a Simple example how we take dependable Object responsibility.  Say Ford car has a method which shows the specifications of the car in very detail manner. So when it shows the Wheels Specifications often we do code like this in Ford Class.



public void FordSpecification(){
//Ford car specific specifications
//then
wheel.getAirPressure();
wheel.getManufactureDate();
wheel.getBrandName();

}

But it has a severe problem if in future Wheel specification is changed if it adds or removes any attribute it has a direct impact on Ford class, So all Ford Car classes have to be changed to incorporate the specification changes of the wheel.

It is wheel specification changes so why Ford class would be the sufferer?
Because while coding we did not understand the Wheel class responsibility, It is wheel class responsibility to provide specification through a specification method which uses by the Ford.

In Wheel class

public void specification(){
wheel.getAirPressure();
wheel.getManufactureDate();
wheel.getBrandname();

}

In Ford Class

public void FordSpecification(){
//Ford car specific specifications
//then
wheel.specification();

}


If wheel specification changes it does not impact the Ford class.


Try to reduce Hide-coupling :

Hide Coupling means from the API, you can’t understand there is and Dependency inside it.

It is a common programming technique where we hide the coupling from the user, Like create necessary Objects inside init method or constructor. I am not saying this is bad but , When you hide a Coupling think very carefully , If the Object is a kind of Utility, Connection pools, Worker thread that is fine but if it is a normal business Object, always provide an option for setting the Object from Outside, So user can set a Dummy or Mock Object while testing, Unless as a developer it is very hard to track down why the Object is not created as user does not aware of hiding coupling



Take the first example again

Public Class Ford{
MRFWheel wheel;
Ford(){
this.wheel =new MRFWheel();
}




}


From the API of Ford, it is impossible to say Ford has a dependency on MRFWheel. You will discover it in runtime if  MRFWheel Object is not created from the stack trace. But if you change the implementation.


Public Class Ford{
IWheel wheel;
Ford(IWheel wheel){
this.wheel =wheel;// replaced by new JKWheel()
}




}

Then we can inject a DummyWheel while unit testing the Ford specific method.


Conclusion : Tight Coupling always creates a Big Ball of Mud. And gradually loses the flexibility to incorporate changes. Always take a closer look for coupling while writing code-- A silly mistake can cost you very much in near future. If you take above best practices most of the time you will be on safer side.