In computer programming, the flyweight software design pattern refers to an object that minimizes memory usage by sharing some of its data with other similar objects. The flyweight pattern is one of twenty-three well-known GoF design patterns.[1] These patterns promote flexible object-oriented software design, which is easier to implement, change, test, and reuse.
In other contexts, the idea of sharing data structures is called hash consing.
The term was first coined, and the idea extensively explored, by Paul Calder and Mark Linton in 1990[2] to efficiently handle glyph information in a WYSIWYG document editor.[3] Similar techniques were already used in other systems, however, as early as 1988.[4]
The flyweight pattern is useful when dealing large numbers of objects with simple repeated elements that would use a large amount of memory if individually stored. It is common to hold shared data in external data structures and pass it to the objects temporarily when they are used.
A classic example are the data structures used representing characters in a word processor. Naively, each character in a document might have a glyph object containing its font outline, font metrics, and other formatting data. However, this would use hundreds or thousands of bytes of memory for each character. Instead, each character can have a reference to a glyph object shared by every instance of the same character in the document. This way, only the position of each character needs to be stored internally.
As a result, flyweight objects can:[5]
Clients can reuse Flyweight
objects and pass in extrinsic state as necessary, reducing the number of physically created objects.
The above UML class diagram shows:
Client
class, which uses the flyweight patternFlyweightFactory
class, which creates and shares Flyweight
objectsFlyweight
interface, which takes in extrinsic state and performs an operationFlyweight1
class, which implements Flyweight
and stores intrinsic stateThe sequence diagram shows the following run-time interactions:
Client
object calls getFlyweight(key)
on the FlyweightFactory
, which returns a Flyweight1
object.operation(extrinsicState)
on the returned Flyweight1
object, the Client
again calls getFlyweight(key)
on the FlyweightFactory
.FlyweightFactory
returns the already-existing Flyweight1
object.There are multiple ways to implement the flyweight pattern. One example is mutability: whether the objects storing extrinsic flyweight state can change.
Immutable objects are easily shared, but require creating new extrinsic objects whenever a change in state occurs. In contrast, mutable objects can share state. Mutability allows better object reuse via the caching and re-initialization of old, unused objects. Sharing is usually nonviable when state is highly variable.
Other primary concerns include retrieval (how the end-client accesses the flyweight), caching and concurrency.
The factory interface for creating or reusing flyweight objects is often a facade for a complex underlying system. For example, the factory interface is commonly implemented as a singleton to provide global access for creating flyweights.
Generally speaking, the retrieval algorithm begins with a request for a new object via the factory interface.
The request is typically forwarded to an appropriate cache based on what kind of object it is. If the request is fulfilled by an object in the cache, it may be reinitialized and returned. Otherwise, a new object is instantiated. If the object is partitioned into multiple extrinsic sub-components, they will be pieced together before the object is returned.
There are two ways to cache flyweight objects: maintained and unmaintained caches.
Objects with highly variable state can be cached with a FIFO structure. This structure maintains unused objects in the cache, with no need to search the cache.
In contrast, unmaintained caches have less upfront overhead: objects for the caches are initialized in bulk at compile time or startup. Once objects populate the cache, the object retrieval algorithm might have more overhead associated than the push/pop operations of a maintained cache.
When retrieving extrinsic objects with immutable state one must simply search the cache for an object with the state one desires. If no such object is found, one with that state must be initialized. When retrieving extrinsic objects with mutable state, the cache must be searched for an unused object to reinitialize if no used object is found. If there is no unused object available, a new object must be instantiated and added to the cache.
Separate caches can be used for each unique subclass of extrinsic object. Multiple caches can be optimized separately, associating a unique search algorithm with each cache. This object caching system can be encapsulated with the chain of responsibility pattern, which promotes loose coupling between components.
Special consideration must be taken into account where flyweight objects are created on multiple threads. If the list of values is finite and known in advance, the flyweights can be instantiated ahead of time and retrieved from a container on multiple threads with no contention. If flyweights are instantiated on multiple threads, there are two options:
To enable safe sharing between clients and threads, flyweight objects can be made into immutable value objects, where two instances are considered equal if their values are equal.
This example from C# 9 uses records[7] to create a value object representing flavours of coffee:
public record CoffeeFlavours(string flavour);
In this example, the FlyweightPointer
creates a static member used for every instance of the MyObject
class.
// Defines Flyweight object that repeats itself.
public class Flyweight
{
public string CompanyName { get; set; }
public string CompanyLocation { get; set; }
public string CompanyWebsite { get; set; }
// Bulky data
public byte[] CompanyLogo { get; set; }
}
public static class FlyweightPointer
{
public static readonly Flyweight Company = new Flyweight
{
CompanyName = "Abc",
CompanyLocation = "XYZ",
CompanyWebsite = "www.example.com"
// Load CompanyLogo here
};
}
public class MyObject
{
public string Name { get; set; }
public string Company => FlyweightPointer.Company.CompanyName;
}
Attributes can be defined at the class-level instead of only for instances in Python because classes are first-class objects in the language—meaning there are no restrictions on their use as they are the same as any other object. New-style class instances store instance data in a special attribute dictionary instance.__dict__
. By default, accessed attributes are first looked up in this __dict__
, and then fall back to the instance's class attributes next.[8] In this way, a class can effectively be a kind of Flyweight container for its instances.
Although Python classes are mutable by default, immutability can be emulated by overriding the class's __setattr__
method so that it disallows changes to any Flyweight attributes.
# Instances of CheeseBrand will be the Flyweights
class CheeseBrand:
def __init__(self, brand: str, cost: float) -> None:
self.brand = brand
self.cost = cost
self._immutable = True # Disables future attributions
def __setattr__(self, name, value):
if getattr(self, "_immutable", False): # Allow initial attribution
raise RuntimeError("This object is immutable")
else:
super().__setattr__(name, value)
class CheeseShop:
menu = {} # Shared container to access the Flyweights
def __init__(self) -> None:
self.orders = {} # per-instance container with private attributes
def stock_cheese(self, brand: str, cost: float) -> None:
cheese = CheeseBrand(brand, cost)
self.menu[brand] = cheese # Shared Flyweight
def sell_cheese(self, brand: str, units: int) -> None:
self.orders.setdefault(brand, 0)
self.orders[brand] += units # Instance attribute
def total_units_sold(self):
return sum(self.orders.values())
def total_income(self):
income = 0
for brand, units in self.orders.items():
income += self.menu[brand].cost * units
return income
shop1 = CheeseShop()
shop2 = CheeseShop()
shop1.stock_cheese("white", 1.25)
shop1.stock_cheese("blue", 3.75)
# Now every CheeseShop have 'white' and 'blue' on the inventory
# The SAME 'white' and 'blue' CheeseBrand
shop1.sell_cheese("blue", 3) # Both can sell
shop2.sell_cheese("blue", 8) # But the units sold are stored per-instance
assert shop1.total_units_sold() == 3
assert shop1.total_income() == 3.75 * 3
assert shop2.total_units_sold() == 8
assert shop2.total_income() == 3.75 * 8
The C++ Standard Template Library provides several containers that allow unique objects to be mapped to a key. The use of containers helps further reduce memory usage by removing the need for temporary objects to be created.
#include <iostream>
#include <map>
#include <string>
// Instances of Tenant will be the Flyweights
class Tenant {
public:
Tenant(const std::string& name = "") : m_name(name) {}
std::string name() const {
return m_name;
}
private:
std::string m_name;
};
// Registry acts as a factory and cache for Tenant flyweight objects
class Registry {
public:
Registry() : tenants() {}
Tenant findByName(const std::string& name) {
if (tenants.count(name) != 0) return tenants[name];
auto newTenant = Tenant(name);
tenants[name] = newTenant;
return newTenant;
}
private:
std::map<std::string,Tenant> tenants;
};
// Apartment maps a unique tenant to their room number.
class Apartment {
public:
Apartment() : m_occupants(), m_registry() {}
void addOccupant(const std::string& name, int room) {
m_occupants[room] = m_registry.findByName(name);
}
void tenants() {
for (auto i : m_occupants) {
const int room = i.first;
const Tenant tenant = i.second;
std::cout << tenant.name() << " occupies room " << room << std::endl;
}
}
private:
std::map<int,Tenant> m_occupants;
Registry m_registry;
};
int main() {
Apartment apartment;
apartment.addOccupant("David", 1);
apartment.addOccupant("Sarah", 3);
apartment.addOccupant("George", 2);
apartment.addOccupant("Lisa", 12);
apartment.addOccupant("Michael", 10);
apartment.tenants();
return 0;
}
<?php
class CoffeeFlavour {
private string $name;
private static array $CACHE = [];
private function __construct(string $name){
$this->name = $name;
}
public static function intern(string $name) : \WeakReference {
if(!isset(self::$CACHE[$name])){
self::$CACHE[$name] = new self($name);
}
return \WeakReference::create(self::$CACHE[$name]);
}
public static function flavoursInCache() : int {
return count(self::$CACHE);
}
public function __toString() : string {
return $this->name;
}
}
class Order {
public static function of(string $flavourName, int $tableNumber) : callable {
$flavour = CoffeeFlavour::intern($flavourName)->get();
return fn() => print("Serving $flavour to table $tableNumber ".PHP_EOL);
}
}
class CoffeeShop {
private array $orders = [];
public function takeOrder(string $flavour, int $tableNumber) {
$this->orders[] = Order::of($flavour, $tableNumber);
}
public function service() {
array_walk($this->orders, fn($v) => $v());
}
}
$shop = new CoffeeShop();
$shop->takeOrder("Cappuccino", 2);
$shop->takeOrder("Frappe", 1);
$shop->takeOrder("Espresso", 1);
$shop->takeOrder("Frappe", 897);
$shop->takeOrder("Cappuccino", 97);
$shop->takeOrder("Frappe", 3);
$shop->takeOrder("Espresso", 3);
$shop->takeOrder("Cappuccino", 3);
$shop->takeOrder("Espresso", 96);
$shop->takeOrder("Frappe", 552);
$shop->takeOrder("Cappuccino", 121);
$shop->takeOrder("Espresso", 121);
$shop->service();
print("CoffeeFlavor objects in cache: ". CoffeeFlavour::flavoursInCache());
By: Wikipedia.org
Edited: 2021-06-18 19:29:06
Source: Wikipedia.org