You are tasked with designing and implementing a data structure that efficiently manages a dynamic set of integer intervals and computes the total coverage length (i.e., the length of the union of all intervals).
Problem Description:
Each interval is represented as a pair [start, end] (inclusive). Intervals may overlap.
Implement the following operations:
For example, if the following intervals are added in order:
Then, getTotalCoverage() should return 9 (since the union covers from 1 to 7 and from 10 to 12, with overlapping segments counted only once).
Requirements:
Implement your solution in the programming language of your choice.