Constrictor: Immutability as a Design Concept (Artifact)

Authors Elad Kinsbruner , Shachar Itzhaky , Hila Peleg



PDF
Thumbnail PDF

Artifact Description

DARTS.10.2.9.pdf
  • Filesize: 0.55 MB
  • 4 pages

Document Identifiers

Author Details

Elad Kinsbruner
  • Technion, Haifa, Israel
Shachar Itzhaky
  • Technion, Haifa, Israel
Hila Peleg
  • Technion, Haifa, Israel

Cite AsGet BibTex

Elad Kinsbruner, Shachar Itzhaky, and Hila Peleg. Constrictor: Immutability as a Design Concept (Artifact). In Special Issue of the 38th European Conference on Object-Oriented Programming (ECOOP 2024). Dagstuhl Artifacts Series (DARTS), Volume 10, Issue 2, pp. 9:1-9:4, Schloss Dagstuhl – Leibniz-Zentrum für Informatik (2024)
https://doi.org/10.4230/DARTS.10.2.9

Artifact

Artifact Evaluation Policy

The artifact has been evaluated as described in the ECOOP 2024 Call for Artifacts and the ACM Artifact Review and Badging Policy.

Abstract

Many object-oriented applications in algorithm design rely on objects never changing during their lifetime. This is often tackled by marking object references as read-only, e.g., using the const keyword in C++. In other languages like Python or Java where such a concept does not exist, programmers rely on best practices that are entirely unenforced. While reliance on best practices is obviously too permissive, const-checking is too restrictive: it is possible for a method to mutate the internal state while still satisfying the property we expect from an "immutable" object in this setting. We would therefore like to enforce the immutability of an object’s abstract state. We check an object’s immutability through a view of its abstract state: for instances of an immutable class, the view does not change when running any of the class’s methods, even if some of the internal state does change. If all methods of a class are verified as non-mutating, we can deem the entire class view-immutable. We present an SMT-based algorithm to check view-immutability, and implement it in our linter/verifier, Constrictor. We evaluate Constrictor on 51 examples of immutability-related design violations. Our evaluation shows that Constrictor is effective at catching a variety of prototypical design violations, and does so in seconds. We also explore Constrictor with two real-world case studies.

Subject Classification

ACM Subject Classification
  • Software and its engineering → Software design engineering
  • Software and its engineering → Software defect analysis
Keywords
  • Immutability
  • Design Enforcement
  • SMT
  • Liskov Substitution Principle
  • Object-oriented Programming

Metrics

Questions / Remarks / Feedback
X

Feedback for Dagstuhl Publishing


Thanks for your feedback!

Feedback submitted

Could not send message

Please try again later or send an E-mail