Source: josm.mjs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/**
 * This modules exports an objects with a set of properties and methods
 * to access JOSMs internals.
 *
 * @example
 *   import josm from 'josm'
 *
 * @module josm
 */
/* global Java */

const Version = Java.type('org.openstreetmap.josm.data.Version')
const JOptionPane = Java.type('javax.swing.JOptionPane')
const HelpAwareOptionPane = Java.type('org.openstreetmap.josm.gui.HelpAwareOptionPane')
const MainApplication = Java.type('org.openstreetmap.josm.gui.MainApplication')

import * as util from 'josm/util'
import * as console from 'josm/scriptingconsole'
import layers from 'josm/layers'
import {MenuBar} from 'josm/ui/menu'
import {CommandHistory} from 'josm/command'


const josm = {}
export default josm

/**
 * Replies the current JOSM version string.
 *
 * @example
 * import josm from 'josm'
 * josm.alert(josm.version)
 *
 * @property {string} version the JOSM version
 * @readOnly
 * @static
 * @name version
 * @summary JOSM version string
 */
Object.defineProperty(josm, 'version', {
  enumerable: true,
  get: function () {
    return Version.getInstance().getVersionString()
  }
})

/**
 * Replies the layers object.
 *
 * @example
 * import josm from 'josm'
 * josm.alert('num layers: ' + josm.layers.length)
 *
 * // name of first layer
 * josm.alert('num layers: ' + josm.layers.get(0).name)
 *
 * @readOnly
 * @name layers
 * @static
 * @property {module:josm/layers} layers  the layers object
 * @summary accessor for JOSM layers
 */
Object.defineProperty(josm, 'layers', {
  enumerable: true,
  get: function () {
    return layers
  }
})

/**
 * Displays an alert window with a message
 *
 * <strong>Signatures</strong>
 * <dl>
 *   <dt><code class="signature">alert(message)</code><dt>
 *   <dd class="param-desc">Displays an information message with an OK button.</dd>
 *
 *   <dt><code class="signature">alert(message, ?options)</code><dt>
 *   <dd class="param-desc">Displays a message. The look and feel of the alert window depends on
 *   the <var>options</var>. The following options are supported:
 *   <dl>
 *      <dt><code>title</code>:string</dt>
 *      <dd class="param-desc">(optional) the window title. A string is expected. Empty string
 *      if missing.</dt>
 *
 *      <dt class="param-desc"><code>messageType</code></dt>
 *      <dd class="param-desc">(optional) the message type. Use one of the following values:
 *         <ul>
 *            <li>{@class javax.swing.JOptionPane}.INFORMATION_MESSAGE,
 *            "info","information"</li>
 *            <li>{@class javax.swing.JOptionPane}.ERROR_MESSAGE,
 *                     "error"</li>
 *            <li>{@class javax.swing.JOptionPane}.WARNING_MESSAGE,
 *                    "warning", "warn"</li>
 *            <li>{@class javax.swing.JOptionPane}.QUESTION_MESSAGE,
 *                    "question"</li>
 *            <li>{@class javax.swing.JOptionPane}.PLAIN_MESSAGE,
 *                    "plain"</li>
 *         </ul>
 *         Default value is
 *         {@class javax.swing.JOptionPane}.INFORMATION_MESSAGE.
 *         String values are not case sensitive and leading and
 *         trailing white space is removed.
 *      </dd>
 *   </dl>
 *   </dd>
 * </dl>
 *
 * @example
 * import josm from 'josm'
 * 
 * // display an information alert
 * josm.alert('Hello World!')
 *
 * // display an error alert
 * josm.alert('Got an error', {
 *    title: 'Error Alert',
 *    messageType: 'error'
 * })
 *
 * @summary display a message
 * @param {string} message  the message
 * @function
 * @static
 */
josm.alert = function () {
  const map = {
    information: JOptionPane.INFORMATION_MESSAGE,
    info: JOptionPane.INFORMATION_MESSAGE,
    error: JOptionPane.ERROR_MESSAGE,
    warning: JOptionPane.WARNING_MESSAGE,
    warn: JOptionPane.INFORMATION_MESSAGE,
    question: JOptionPane.QUESTION_MESSAGE,
    plain: JOptionPane.PLAIN_MESSAGE
  }

  function titleFromOptions (options) {
    return util.isString(options.title) ? options.title : ''
  }

  function messageTypeFromOptions (options) {
    if (util.isNumber(options.messageType)) {
      const mt = options.messageType
      for (const key in map) {
        if (!util.hasProp(map, key)) continue
        if (mt === map[key]) return mt
      }
      return JOptionPane.INFORMATION_MESSAGE
    } else if (util.isString(options.messageType)) {
      const opt = util.trim(options.messageType).toLowerCase()
      const ret = map[opt]
      return ret !== undefined ? ret : JOptionPane.INFORMATION_MESSAGE
    }
    return JOptionPane.INFORMATION_MESSAGE
  }

  switch (arguments.length) {
    case 0: return
    case 1:
      HelpAwareOptionPane.showOptionDialog(MainApplication.getMainFrame(),
        arguments[0], '', JOptionPane.INFORMATION_MESSAGE, null)
      return

    default: {
      if (typeof arguments[1] !== 'object') {
        HelpAwareOptionPane.showOptionDialog(MainApplication.getMainFrame(),
          arguments[0], '', JOptionPane.INFORMATION_MESSAGE, null)
        return
      }
      const title = titleFromOptions(arguments[1])
      const messageType = messageTypeFromOptions(arguments[1])
      HelpAwareOptionPane.showOptionDialog(MainApplication.getMainFrame(),
        arguments[0], title, messageType, null)
    }
  }
}

/**
 * Opens one or more files in JOSM.
 *
 * Accepts a variable number of files. Each argument is either a string
 * (a file name) or a {@class java.io.File}.
 *
 * Creates and opens layers in JOSM, depending on the kind of file opened:
 *
 * <ul>
 *   <li>creates a data layer for data files</li>
 *   <li>creates a gpx layer for gpx files</li>
 *   <li>creates an image layer for a directory with images</li>
 *   <li>etc.</li>
 * </ul>
 *
 * @example
 * import josm from 'josm'
 * 
 * // open a data file in a new data layer
 * josm.open('/my/data/file.osm')
 *
 * @summary Opens one or more files in JOSM
 * @param {...(java.io.File | string)} files files to open
 * @function
 * @static
 */
josm.open = function () {
  const OpenFileAction = Java.type('org.openstreetmap.josm.actions.OpenFileAction')
  const File = Java.type('java.io.File')

  const files = []
  for (let i = 0; i < arguments.length; i++) {
    const file = arguments[i]
    if (util.isNothing(file)) {
      continue
    } else if (util.isString(file)) {
      files.push(new File(file))
    } else if (file instanceof File) {
      files.push(file)
    } else {
      util.assert(false, 'expected java.io.File or string, got {0}', file)
    }
  }
  // openFiles is async
  OpenFileAction.openFiles(files)
}

/**
 * Replies the global command history.
 *
 *
 * Use this object to undo/redo commands, or to clear the command
 * history.
 *
 * @example
 * import josm from 'josm'
 * 
 * // undoes the last command
 * josm.commands.undo()
 *
 * // redoes two commands
 * josm.commands.redo(2)
 *
 * @readOnly
 * @name commands
 * @property {module:josm/command.CommandHistory} commands
 * @summary the global command history
 * @static
 */
Object.defineProperty(josm, 'commands', {
  enumerable: true,
  value: CommandHistory
})

/**
 * Replies an accessor for JOSMs menu bar.
 *
 * Use this object to inspect or modify the menu bar, i.e. to add additional
 * menu items.
 *
 * @readOnly
 * @property {module:josm/ui/menu~MenuBar} menu accessor for JOSMs menu bar
 * @name menu
 * @static
 * @summary Replies an accessor for JOSMs menu bar.
 */
Object.defineProperty(josm, 'menu', {
  enumerable: true,
  value: MenuBar
})


/**
 * Replies an accessor to the JOSM scripting console.
 *
 * Use this object to write messages to the scripting console
 *
 * @readOnly
 * @property {module:josm/scriptingconsole} console accessor to the JOSM scripting console
 * @name console
 * @static
 * @summary Replies an accessor to the JOSM scripting console.
 */
Object.defineProperty(josm,  'console', {
  enumerable: true,
  value: console
})