Skip to content
This repository was archived by the owner on Apr 24, 2021. It is now read-only.

Convert files back to ml #100

Merged
merged 31 commits into from
Apr 8, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5be6ebb
Convert BuildSystem to ml
chenglou Apr 8, 2021
233bc36
Convert EditorSupportCommands to ml
chenglou Apr 8, 2021
46aa60d
Convert Files to ml
chenglou Apr 8, 2021
20f3475
Convert FindFiles to ml
chenglou Apr 8, 2021
cb23f29
Convert Infix to ml
chenglou Apr 8, 2021
3474505
Convert NewCompletions to ml
chenglou Apr 8, 2021
2b14ff1
Convert Packages to ml
chenglou Apr 8, 2021
f906698
Convert ProcessExtra to ml
chenglou Apr 8, 2021
8ae1ad6
Convert References to ml
chenglou Apr 8, 2021
5cdf2a6
Convert Shared to ml
chenglou Apr 8, 2021
950f1c6
Convert SharedTypes to ml
chenglou Apr 8, 2021
739d82b
Convert Utils to ml
chenglou Apr 8, 2021
5e656e5
Convert ModuleResolution to ml
chenglou Apr 8, 2021
f596c0c
Convert MerlinFile to ml
chenglou Apr 8, 2021
58e3bac
Convert Process_406 to ml
chenglou Apr 8, 2021
1c7327c
Convert RescriptEditorSupport to ml
chenglou Apr 8, 2021
7f4e7f4
Convert Uri2 to ml
chenglou Apr 8, 2021
5033739
Convert Hover to ml
chenglou Apr 8, 2021
2e3b59c
Convert JsonShort to ml
chenglou Apr 8, 2021
af352e0
Convert Log to ml
chenglou Apr 8, 2021
30de05d
Convert MarkdownOfOcamldoc to ml
chenglou Apr 8, 2021
51308e5
Convert PartialParser to ml
chenglou Apr 8, 2021
167b366
Convert PrepareUtil to ml
chenglou Apr 8, 2021
b87fa68
Convert PrintType to ml
chenglou Apr 8, 2021
3ff5826
Convert ProcessAttributes to ml
chenglou Apr 8, 2021
0dcf1e8
Convert ProcessCmt to ml
chenglou Apr 8, 2021
cad8284
Convert Protocol to ml
chenglou Apr 8, 2021
51796e4
Convert Query to ml
chenglou Apr 8, 2021
2b8946a
Convert RResult to ml
chenglou Apr 8, 2021
2bcf01f
Convert State to ml
chenglou Apr 8, 2021
51c5069
Convert TopTypes to ml
chenglou Apr 8, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Convert Packages to ml
  • Loading branch information
chenglou committed Apr 8, 2021
commit 2b14ff1e8b5dd926c1b624065c8d4b2cb7d7c6f5
153 changes: 153 additions & 0 deletions src/Packages.ml
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
open Infix
open TopTypes

let escapePreprocessingFlags flag =
(* ppx escaping not supported on windows yet *)
if Sys.os_type = "Win32" then flag
else
let parts = Utils.split_on_char ' ' flag in
match parts with
| (("-ppx" | "-pp") as flag) :: rest ->
flag ^ " " ^ Utils.maybeQuoteFilename (String.concat " " rest)
| _ -> flag

(* Creates the `pathsForModule` hashtbl, which maps a `moduleName` to it's `paths` (the ml/re, mli/rei, cmt, and cmti files) *)
let makePathsForModule (localModules : (string * SharedTypes.paths) list)
(dependencyModules : (string * SharedTypes.paths) list) =
let pathsForModule = Hashtbl.create 30 in
dependencyModules
|> List.iter (fun (modName, paths) -> Hashtbl.replace pathsForModule modName paths);
localModules
|> List.iter (fun (modName, paths) -> Hashtbl.replace pathsForModule modName paths);
pathsForModule

let newBsPackage rootPath =
match Files.readFileResult (rootPath /+ "bsconfig.json") with
| Error e -> Error e
| Ok raw -> (
let config = Json.parse raw in
Log.log {|📣 📣 NEW BSB PACKAGE 📣 📣|};
(* failwith("Wat"); *)
Log.log ("- location: " ^ rootPath);
let compiledBase = BuildSystem.getCompiledBase rootPath in
match FindFiles.findDependencyFiles ~debug:true rootPath config with
| Error e -> Error e
| Ok (dependencyDirectories, dependencyModules) -> (
match
compiledBase
|> RResult.orError
"You need to run bsb first so that reason-language-server can \
access the compiled artifacts.\n\
Once you've run bsb, restart the language server."
with
| Error e -> Error e
| Ok compiledBase ->
Ok
(let namespace = FindFiles.getNamespace config in
let localSourceDirs =
FindFiles.getSourceDirectories ~includeDev:true rootPath config
in
Log.log
("Got source directories " ^ String.concat " - " localSourceDirs);
let localModules =
FindFiles.findProjectFiles ~debug:true namespace rootPath
localSourceDirs compiledBase
(*
|> List.map(((name, paths)) => (switch (namespace) {
| None => name
| Some(n) => name ++ "-" ++ n }, paths)); *)
in
Log.log
( "-- All local modules found: "
^ string_of_int (List.length localModules) );
localModules
|> List.iter (fun (name, paths) ->
Log.log name;
match paths with
| SharedTypes.Impl (cmt, _) -> Log.log ("impl " ^ cmt)
| Intf (cmi, _) -> Log.log ("intf " ^ cmi)
| _ -> Log.log "Both");
let pathsForModule =
makePathsForModule localModules dependencyModules
in
let opens =
match namespace with
| None -> []
| Some namespace ->
let cmt = (compiledBase /+ namespace) ^ ".cmt" in
Log.log ("############ Namespaced as " ^ namespace ^ " at " ^ cmt);
Hashtbl.add pathsForModule namespace (Impl (cmt, None));
[FindFiles.nameSpaceToName namespace]
in
Log.log ("Dependency dirs " ^ String.concat " " dependencyDirectories);
let opens =
let flags =
MerlinFile.getFlags rootPath
|> RResult.withDefault [""]
|> List.map escapePreprocessingFlags
in
let opens =
List.fold_left
(fun opens item ->
let parts = Utils.split_on_char ' ' item in
let rec loop items =
match items with
| "-open" :: name :: rest -> name :: loop rest
| _ :: rest -> loop rest
| [] -> []
in
opens @ loop parts)
opens flags
in
opens
in
let interModuleDependencies =
Hashtbl.create (List.length localModules)
in
{
rootPath;
localModules = localModules |> List.map fst;
dependencyModules = dependencyModules |> List.map fst;
pathsForModule;
opens;
namespace;
interModuleDependencies;
}) ) )

let findRoot ~uri packagesByRoot =
let path = Uri2.toPath uri in
let rec loop path =
if path = "/" then None
else if Hashtbl.mem packagesByRoot path then Some (`Root path)
else if Files.exists (path /+ "bsconfig.json") then Some (`Bs path)
else loop (Filename.dirname path)
in
loop (Filename.dirname path)

let getPackage ~uri state =
if Hashtbl.mem state.rootForUri uri then
Ok (Hashtbl.find state.packagesByRoot (Hashtbl.find state.rootForUri uri))
else
match
findRoot ~uri state.packagesByRoot
|> RResult.orError "No root directory found"
with
| Error e -> Error e
| Ok root -> (
match
match root with
| `Root rootPath ->
Hashtbl.replace state.rootForUri uri rootPath;
Ok
(Hashtbl.find state.packagesByRoot
(Hashtbl.find state.rootForUri uri))
| `Bs rootPath -> (
match newBsPackage rootPath with
| Error e -> Error e
| Ok package ->
Hashtbl.replace state.rootForUri uri package.rootPath;
Hashtbl.replace state.packagesByRoot package.rootPath package;
Ok package )
with
| Error e -> Error e
| Ok package -> Ok package )
213 changes: 0 additions & 213 deletions src/Packages.re

This file was deleted.