wiki:DevelopersGuide

Version 51 (modified by Hb---, 5 years ago) ( diff )

"Misc" combined out ouf SVN, Help, Shortcuts and Translations

Developers Guide

This page explains how to create a patch, modify the core JOSM application or existing plugins.

At least basic Java programming skills are necessary. See WikiStart how you could improve JOSM without Java skills.

Source code and JOSM builds

Developer guidelines

IDEs

Eclipse

IntelliJ IDEA

Some developers are using IntelliJ IDEA for development. JetBrains supports open source projects by granting developers free licenses.

YourKit

add YourKit logo to get free open source license as per https://www.yourkit.com/purchase/#os_license JOSM core developers are using the YourKit Java Profiler, as we found other tools lacking required functionality for profiling. YourKit supports open source projects by granting developers free licenses.

To enable the YourKit Java agent, add the following JVM parameter:

-agentpath:<yourkit_path>/yjpagent.dll=delay=10000

VisualVM

VisualVM may be used to find memory leaks or generate heap dumps from a josm instance running concurrently. Heap dumps can be structurally examined. VisualVM organizes the dump data e.g. by number and type of objects, memory used and cpu time consumed in an explorable tree view. Heap dump and garbage collection of the target instance is requestable using button clicks. Be aware that the default configuration of the memory sampler will sample VisualVM generated objects as well, which may be confused as a memory leak. The memory profiler can be set to profile specific classes only, it tracks allocations once started.

If an autonomous instance of josm should be debuggable from within eclipse at the same time, command line parameters must be supplied to open a transport socket that the debugger can connect to:

# run JOSM with remote debug options; connect a debugger to 127.0.0.1 and port 9988
java -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:9988,server=y,suspend=n -Xmx1200m -jar josm-latest.jar

This is not necessary if the internals of JOSM are to be explored by VisualVM exclusively.

JOSM core

JOSM plugins

Misc

Developers

Dirk Stöcker is currently the lead maintainer of JOSM. Developers of JOSM with SVN commit privileges active in the past several months include:

Trac usernameName
akks Alexei Kasatkin
bastiK Paul Hartmann
Don-vip Vincent Privat
Klumbumbus Stefan Volke
michael2402 Michael Zangl
simon04 Simon Legner
stoecker Dirk Stöcker
wiktorn Wiktor Niesiobędzki

Immanuel Scholz was the original creator of JOSM, and previous maintainers include Frederik Ramm.

Previous developers include Frederik Ramm (framm) and Jiri Klement (jttt).

Many others have contributed through bug reports, patches, translations, and documentation work.

Attachments (2)

Download all attachments as: .zip

Note: See TracWiki for help on using the wiki.