Ticket Booking System

Simulation Concurrency Object Oriented

You are tasked with designing and implementing a ticket booking system for a movie theatre. The system should allow for the following functionalities:

  • Screening Setup: Add movie screenings with seating configurations (e.g., a number of rows and seats per row).

  • Booking: Allow users to book one or more seats for a specific screening. Ensure that two users cannot book the same seat simultaneously.

  • Cancellation: Allow users to cancel their bookings.

  • Querying: Provide a way to query available seats for any given screening.

Requirements:

  1. Object-Oriented Design: Use classes and appropriate data structures to encapsulate the system's functionality.

  2. Concurrency Considerations: Design the system in such a way that it can safely handle concurrent bookings (for example, simulate or explain how you would manage locking or race conditions if multiple users are booking seats at the same time).

  3. Robustness: Consider edge cases such as booking an already booked seat or attempting to cancel a non-existent booking.

  4. Efficiency: Optimize the system for efficient lookup and management of available seats.

Implement the system in your language of choice using only standard libraries. Write clean, maintainable code with appropriate documentation and comments where necessary.