1 / 4

DSJDB: Distributed System Java Debugger.

DSJDB: Distributed System Java Debugger. Inspired from a paper about Distributed GDB debugger. Goal: Handle the debugging of a distributed System from a single machine with clear information about: What is happening ? Where is it happening ? When is it happening ?. Main difficulties :

Download Presentation

DSJDB: Distributed System Java Debugger.

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. DSJDB: Distributed System Java Debugger. Inspired from a paper about Distributed GDB debugger. • Goal: Handle the debugging of a distributed System from a single machine with clear information about: • What is happening ? • Where is it happening ? • When is it happening ? • Main difficulties : • Interacting JDB and the master. • The network is not real time -> Need to timestamp the data. • Everything should be multithreaded.

  2. Global Overview of our Sytem Our master receive the Data, organize then according to their timestamp, and can send order to the clients. The clients JDB sends the Data to our master.

  3. Overview of our systems: Client part We transmit the data to our master via input and output stream of a socket. Our work We get the input, output, and error thread of JDB with the class Process, in 3 different thread. The data received from JDB are “timestamped”. We have created the JDB process with the class RunCommand. Thus we can interact with it. JDB gets the Java Debugging Data Running Java program

  4. Overview of our systems: Master part Master: Handle the clients and display their data. Orderator: Order the message from the clients according to their data of issue. Thread to output the data to the clients Thread that get the data from the clients

More Related