-
Notifications
You must be signed in to change notification settings - Fork 56
/
Analyser.elm
481 lines (402 loc) · 14.7 KB
/
Analyser.elm
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
module Analyser exposing (main)
import Analyser.CodeBase as CodeBase exposing (CodeBase)
import Analyser.Configuration as Configuration exposing (Configuration)
import Analyser.ContextLoader as ContextLoader exposing (Context)
import Analyser.DependencyLoadingStage as DependencyLoadingStage
import Analyser.FileContext as FileContext exposing (FileContext)
import Analyser.FileWatch as FileWatch exposing (FileChange(..))
import Analyser.Files.Types exposing (LoadedSourceFile)
import Analyser.Fixer as Fixer
import Analyser.Messages.Util as Messages
import Analyser.Modules
import Analyser.SourceLoadingStage as SourceLoadingStage
import Analyser.State as State exposing (State)
import Analyser.State.Dependencies as Dependencies
import AnalyserPorts
import Elm.Project
import Elm.Version
import Inspection
import Json.Decode
import Json.Encode exposing (Value)
import Maybe.Extra as Maybe
import Platform exposing (worker)
import Registry exposing (Registry)
import Time
import Util.Logger as Logger
type alias Model =
{ codeBase : CodeBase
, context : Context
, configuration : Configuration
, stage : Stage
, state : State
, changedFiles : List String
, server : Bool
, registry : Registry
, project : Elm.Project.Project
}
type Msg
= OnContext Context
| DependencyLoadingStageMsg DependencyLoadingStage.Msg
| SourceLoadingStageMsg SourceLoadingStage.Msg
| Change (Maybe FileChange)
| ReloadTick
| Reset
| OnFixMessage Int
| OnQuickFixMessage Int
| FixerMsg Fixer.Msg
type Stage
= ContextLoadingStage
| DependencyLoadingStage DependencyLoadingStage.Model
| SourceLoadingStage SourceLoadingStage.Model
| FixerStage Fixer.Model
| Finished
type alias Flags =
{ server : Bool
, registry : Value
, project : Value
}
main : Program Flags Model Msg
main =
worker
{ init = init
, update = update
, subscriptions = subscriptions
}
init : Flags -> ( Model, Cmd Msg )
init flags =
let
project =
Json.Decode.decodeValue Elm.Project.decoder flags.project
base =
( { context = ContextLoader.emptyContext
, stage = Finished
, configuration = Configuration.defaultConfiguration
, codeBase = CodeBase.init
, state = State.initialState
, changedFiles = []
, server = flags.server
, registry = Registry.fromValue flags.registry
, project =
Elm.Project.Application
{ elm = Elm.Version.one
, dirs = []
, depsDirect = []
, depsIndirect = []
, testDepsDirect = []
, testDepsIndirect = []
}
}
, Cmd.none
)
in
case project of
Err _ ->
( Tuple.first base, Logger.error "Could not read project file (./elm.json)" )
Ok v ->
reset
( { context = ContextLoader.emptyContext
, stage = Finished
, configuration = Configuration.defaultConfiguration
, codeBase = CodeBase.init
, state = State.initialState
, changedFiles = []
, server = flags.server
, registry = Registry.fromValue flags.registry
, project = v
}
, Logger.info "Started..."
)
reset : ( Model, Cmd Msg ) -> ( Model, Cmd Msg )
reset ( model, cmds ) =
( { model
| stage = ContextLoadingStage
, state = State.initialState
, codeBase = CodeBase.init
}
, Cmd.batch [ ContextLoader.loadContext (), cmds ]
)
|> doSendState
update : Msg -> Model -> ( Model, Cmd Msg )
update msg model =
case msg of
OnFixMessage messageId ->
( { model | state = State.addFixToQueue messageId model.state }
, Cmd.none
)
|> handleNextStep
OnQuickFixMessage messageId ->
let
applyFix message =
getFileContext message.file.path model.codeBase
|> Maybe.map (Fixer.getFixedFile message)
|> Maybe.withDefault
(Err ("Unable to fix messageId: " ++ String.fromInt messageId))
in
case State.getMessage messageId model.state of
Just message ->
case applyFix message of
Ok fixedFile ->
( model
, AnalyserPorts.sendFixedFile
{ path = message.file.path
, content = fixedFile
}
)
Err err ->
( model
, Logger.error err
)
Nothing ->
( model
, Logger.info
("Unable to apply fix, unable to find messageId: "
++ String.fromInt messageId
)
)
Reset ->
reset ( model, Cmd.none )
OnContext context ->
let
( configuration, messages ) =
Configuration.fromString context.configuration
( stage, cmds ) =
DependencyLoadingStage.init model.project
in
( { model
| context = context
, configuration = configuration
, stage = DependencyLoadingStage stage
}
, Cmd.batch <|
Cmd.map DependencyLoadingStageMsg cmds
:: List.map Logger.info messages
)
|> doSendState
DependencyLoadingStageMsg x ->
case model.stage of
DependencyLoadingStage stage ->
onDependencyLoadingStageMsg x stage model
_ ->
( model, Cmd.none )
SourceLoadingStageMsg x ->
case model.stage of
SourceLoadingStage stage ->
onSourceLoadingStageMsg x stage model
_ ->
( model
, Cmd.none
)
FixerMsg x ->
case model.stage of
FixerStage stage ->
onFixerMsg x stage model
_ ->
( model, Cmd.none )
Change (Just (Update path maybeContent)) ->
case maybeContent of
Just content ->
let
finishQuick ( sourceModel, sourceCmds ) =
finishProcess sourceModel
sourceCmds
{ model | state = State.outdateMessagesForFile path model.state }
in
SourceLoadingStage.initWithContent content
|> finishQuick
Nothing ->
startSourceLoading (path :: model.changedFiles)
( { model
| state = State.outdateMessagesForFile path model.state
, changedFiles = []
}
, Cmd.none
)
ReloadTick ->
if model.stage == Finished && model.changedFiles /= [] then
startSourceLoading
model.changedFiles
( { model | changedFiles = [] }
, Cmd.none
)
else
( model
, Cmd.none
)
Change Nothing ->
( model, Cmd.none )
Change (Just (Remove x)) ->
doSendState
( { model
| state = State.removeMessagesForFile x model.state
, changedFiles = List.filter (not << (==) x) model.changedFiles
}
, Logger.info ("File was removed: '" ++ x ++ "'. Removing known messages.")
)
onFixerMsg : Fixer.Msg -> Fixer.Model -> Model -> ( Model, Cmd Msg )
onFixerMsg x stage model =
let
( newFixerModel, fixerCmds ) =
Tuple.mapSecond (Cmd.map FixerMsg) (Fixer.update model.codeBase x stage)
in
if Fixer.isDone newFixerModel then
if Fixer.succeeded newFixerModel then
( { model | stage = Finished }, fixerCmds )
else
startSourceLoading [ Messages.messageFile (Fixer.message newFixerModel) ]
( model, fixerCmds )
else
( { model | stage = FixerStage newFixerModel }
, fixerCmds
)
startSourceLoading : List String -> ( Model, Cmd Msg ) -> ( Model, Cmd Msg )
startSourceLoading files ( model, cmds ) =
let
( nextStage, stageCmds ) =
case files of
[] ->
( Finished, Cmd.none )
files_ ->
files_
|> SourceLoadingStage.init
|> Tuple.mapFirst SourceLoadingStage
|> Tuple.mapSecond (Cmd.map SourceLoadingStageMsg)
in
( { model | stage = nextStage }
, Cmd.batch [ stageCmds, cmds ]
)
handleNextStep : ( Model, Cmd Msg ) -> ( Model, Cmd Msg )
handleNextStep (( model, cmds ) as input) =
case model.stage of
Finished ->
case State.nextTask model.state of
Nothing ->
input
Just ( newState, taskId ) ->
case Fixer.init taskId newState of
Nothing ->
( { model | state = newState }
, Logger.info ("Could not fix message: '" ++ String.fromInt taskId ++ "'.")
)
Just ( fixerModel, fixerCmds, newState2 ) ->
( { model | state = newState2, stage = FixerStage fixerModel }
, Cmd.batch [ cmds, Cmd.map FixerMsg fixerCmds ]
)
|> doSendState
_ ->
input
doSendState : ( Model, Cmd Msg ) -> ( Model, Cmd Msg )
doSendState ( model, cmds ) =
( model
-- , Cmd.batch [ cmds, AnalyserPorts.sendStateValue model.state ]
, cmds
)
onDependencyLoadingStageMsg : DependencyLoadingStage.Msg -> DependencyLoadingStage.Model -> Model -> ( Model, Cmd Msg )
onDependencyLoadingStageMsg x stage model =
let
( newStage, cmds ) =
DependencyLoadingStage.update x stage
in
if DependencyLoadingStage.isDone newStage then
let
newDependencies =
DependencyLoadingStage.getDependencies newStage
in
( { model | codeBase = CodeBase.setDependencies newDependencies model.codeBase }
, Cmd.map DependencyLoadingStageMsg cmds
)
|> startSourceLoading model.context.sourceFiles
else
( { model | stage = DependencyLoadingStage newStage }
, Cmd.map DependencyLoadingStageMsg cmds
)
isSourceFileIncluded : Configuration -> LoadedSourceFile -> Bool
isSourceFileIncluded configuration =
Tuple.first
>> .path
>> (\a -> Configuration.isPathExcluded a configuration)
>> not
finishProcess : SourceLoadingStage.Model -> Cmd SourceLoadingStage.Msg -> Model -> ( Model, Cmd Msg )
finishProcess newStage cmds model =
let
loadedSourceFiles =
SourceLoadingStage.parsedFiles newStage
includedSources =
List.filter (isSourceFileIncluded model.configuration) loadedSourceFiles
newCodeBase =
CodeBase.addSourceFiles loadedSourceFiles model.codeBase
messages =
Inspection.run newCodeBase includedSources model.configuration
( unusedDeps, newModules ) =
Analyser.Modules.build newCodeBase (CodeBase.sourceFiles newCodeBase)
mode =
case model.project of
Elm.Project.Application _ ->
Dependencies.Application
Elm.Project.Package _ ->
Dependencies.Package
deps =
Dependencies.init mode (List.map .name unusedDeps) (CodeBase.dependencies newCodeBase) model.registry
newState =
State.finishWithNewMessages messages model.state
|> State.updateModules newModules
|> State.withDependencies deps
newModel =
{ model
| stage = Finished
, state = newState
, codeBase = newCodeBase
}
in
( newModel
, Cmd.batch
[ AnalyserPorts.sendReport
{ messages = newState.messages
, modules = newState.modules
, unusedDependencies = newState.dependencies.unused
}
, AnalyserPorts.sendStateValue newState
, Cmd.map SourceLoadingStageMsg cmds
]
)
|> handleNextStep
onSourceLoadingStageMsg : SourceLoadingStage.Msg -> SourceLoadingStage.Model -> Model -> ( Model, Cmd Msg )
onSourceLoadingStageMsg x stage model =
let
( newStage, cmds ) =
SourceLoadingStage.update x stage
in
if SourceLoadingStage.isDone newStage then
finishProcess newStage cmds model
else
( { model | stage = SourceLoadingStage newStage }
, Cmd.map SourceLoadingStageMsg cmds
)
getFileContext : String -> CodeBase -> Maybe FileContext
getFileContext path codeBase =
CodeBase.getFile path codeBase
|> Maybe.map
(FileContext.buildForFile (CodeBase.processContext codeBase))
|> Maybe.join
subscriptions : Model -> Sub Msg
subscriptions model =
Sub.batch
[ AnalyserPorts.onReset (always Reset)
, if model.server then
Time.every 1000 (always ReloadTick)
else
Sub.none
, FileWatch.watcher Change
, AnalyserPorts.onFixMessage OnFixMessage
, AnalyserPorts.onFixQuick OnQuickFixMessage
, case model.stage of
ContextLoadingStage ->
ContextLoader.onLoadedContext OnContext
DependencyLoadingStage stage ->
DependencyLoadingStage.subscriptions stage |> Sub.map DependencyLoadingStageMsg
SourceLoadingStage stage ->
SourceLoadingStage.subscriptions stage |> Sub.map SourceLoadingStageMsg
Finished ->
Sub.none
FixerStage stage ->
Fixer.subscriptions stage |> Sub.map FixerMsg
]