annotate repoint.sml @ 80:f84e12a1553c tip

Update server certificate fingerprints
author Chris Cannam
date Wed, 14 Aug 2019 14:58:48 +0100
parents a6c9a0ca493e
children
rev   line source
Chris@70 1 (*
Chris@70 2 DO NOT EDIT THIS FILE.
Chris@70 3 This file is automatically generated from the individual
Chris@76 4 source files in the Repoint repository.
Chris@70 5 *)
Chris@70 6
Chris@70 7 (*
Chris@76 8 Repoint
Chris@70 9
Chris@70 10 A simple manager for third-party source code dependencies
Chris@70 11
Chris@70 12 Copyright 2018 Chris Cannam, Particular Programs Ltd,
Chris@70 13 and Queen Mary, University of London
Chris@70 14
Chris@70 15 Permission is hereby granted, free of charge, to any person
Chris@70 16 obtaining a copy of this software and associated documentation
Chris@70 17 files (the "Software"), to deal in the Software without
Chris@70 18 restriction, including without limitation the rights to use, copy,
Chris@70 19 modify, merge, publish, distribute, sublicense, and/or sell copies
Chris@70 20 of the Software, and to permit persons to whom the Software is
Chris@70 21 furnished to do so, subject to the following conditions:
Chris@70 22
Chris@70 23 The above copyright notice and this permission notice shall be
Chris@70 24 included in all copies or substantial portions of the Software.
Chris@70 25
Chris@70 26 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
Chris@70 27 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Chris@70 28 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Chris@70 29 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
Chris@70 30 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
Chris@70 31 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
Chris@70 32 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Chris@70 33
Chris@70 34 Except as contained in this notice, the names of Chris Cannam,
Chris@70 35 Particular Programs Ltd, and Queen Mary, University of London
Chris@70 36 shall not be used in advertising or otherwise to promote the sale,
Chris@70 37 use or other dealings in this Software without prior written
Chris@70 38 authorization.
Chris@70 39 *)
Chris@70 40
Chris@76 41 val repoint_version = "0.9.98"
Chris@70 42
Chris@70 43
Chris@70 44 datatype vcs =
Chris@70 45 HG |
Chris@70 46 GIT |
Chris@70 47 SVN
Chris@70 48
Chris@70 49 datatype source =
Chris@70 50 URL_SOURCE of string |
Chris@70 51 SERVICE_SOURCE of {
Chris@70 52 service : string,
Chris@70 53 owner : string option,
Chris@70 54 repo : string option
Chris@70 55 }
Chris@70 56
Chris@70 57 type id_or_tag = string
Chris@70 58
Chris@70 59 datatype pin =
Chris@70 60 UNPINNED |
Chris@70 61 PINNED of id_or_tag
Chris@70 62
Chris@70 63 datatype libstate =
Chris@70 64 ABSENT |
Chris@70 65 CORRECT |
Chris@70 66 SUPERSEDED |
Chris@70 67 WRONG
Chris@70 68
Chris@70 69 datatype localstate =
Chris@70 70 MODIFIED |
Chris@70 71 LOCK_MISMATCHED |
Chris@70 72 CLEAN
Chris@70 73
Chris@70 74 datatype branch =
Chris@70 75 BRANCH of string |
Chris@70 76 DEFAULT_BRANCH
Chris@70 77
Chris@70 78 (* If we can recover from an error, for example by reporting failure
Chris@70 79 for this one thing and going on to the next thing, then the error
Chris@70 80 should usually be returned through a result type rather than an
Chris@70 81 exception. *)
Chris@70 82
Chris@70 83 datatype 'a result =
Chris@70 84 OK of 'a |
Chris@70 85 ERROR of string
Chris@70 86
Chris@70 87 type libname = string
Chris@70 88
Chris@70 89 type libspec = {
Chris@70 90 libname : libname,
Chris@70 91 vcs : vcs,
Chris@70 92 source : source,
Chris@70 93 branch : branch,
Chris@70 94 project_pin : pin,
Chris@70 95 lock_pin : pin
Chris@70 96 }
Chris@70 97
Chris@70 98 type lock = {
Chris@70 99 libname : libname,
Chris@70 100 id_or_tag : id_or_tag
Chris@70 101 }
Chris@70 102
Chris@70 103 type remote_spec = {
Chris@70 104 anon : string option,
Chris@70 105 auth : string option
Chris@70 106 }
Chris@70 107
Chris@70 108 type provider = {
Chris@70 109 service : string,
Chris@70 110 supports : vcs list,
Chris@70 111 remote_spec : remote_spec
Chris@70 112 }
Chris@70 113
Chris@70 114 type account = {
Chris@70 115 service : string,
Chris@70 116 login : string
Chris@70 117 }
Chris@70 118
Chris@70 119 type context = {
Chris@70 120 rootpath : string,
Chris@70 121 extdir : string,
Chris@70 122 providers : provider list,
Chris@70 123 accounts : account list
Chris@70 124 }
Chris@70 125
Chris@70 126 type userconfig = {
Chris@70 127 providers : provider list,
Chris@70 128 accounts : account list
Chris@70 129 }
Chris@70 130
Chris@70 131 type project = {
Chris@70 132 context : context,
Chris@70 133 libs : libspec list
Chris@70 134 }
Chris@70 135
Chris@76 136 structure RepointFilenames = struct
Chris@76 137 val project_file = "repoint-project.json"
Chris@76 138 val project_lock_file = "repoint-lock.json"
Chris@76 139 val user_config_file = ".repoint.json"
Chris@76 140 val archive_dir = ".repoint-archive"
Chris@70 141 end
Chris@70 142
Chris@70 143 signature VCS_CONTROL = sig
Chris@70 144
Chris@76 145 (** Check whether the given VCS is installed and working *)
Chris@76 146 val is_working : context -> bool result
Chris@76 147
Chris@70 148 (** Test whether the library is present locally at all *)
Chris@70 149 val exists : context -> libname -> bool result
Chris@70 150
Chris@70 151 (** Return the id (hash) of the current revision for the library *)
Chris@70 152 val id_of : context -> libname -> id_or_tag result
Chris@70 153
Chris@70 154 (** Test whether the library is at the given id *)
Chris@70 155 val is_at : context -> libname * id_or_tag -> bool result
Chris@70 156
Chris@70 157 (** Test whether the library is on the given branch, i.e. is at
Chris@70 158 the branch tip or an ancestor of it *)
Chris@70 159 val is_on_branch : context -> libname * branch -> bool result
Chris@70 160
Chris@70 161 (** Test whether the library is at the newest revision for the
Chris@70 162 given branch. False may indicate that the branch has advanced
Chris@70 163 or that the library is not on the branch at all. This function
Chris@70 164 may use the network to check for new revisions *)
Chris@70 165 val is_newest : context -> libname * source * branch -> bool result
Chris@70 166
Chris@70 167 (** Test whether the library is at the newest revision available
Chris@70 168 locally for the given branch. False may indicate that the
Chris@70 169 branch has advanced or that the library is not on the branch
Chris@70 170 at all. This function must not use the network *)
Chris@70 171 val is_newest_locally : context -> libname * branch -> bool result
Chris@70 172
Chris@70 173 (** Test whether the library has been modified in the local
Chris@70 174 working copy *)
Chris@70 175 val is_modified_locally : context -> libname -> bool result
Chris@70 176
Chris@70 177 (** Check out, i.e. clone a fresh copy of, the repo for the given
Chris@70 178 library on the given branch *)
Chris@70 179 val checkout : context -> libname * source * branch -> unit result
Chris@70 180
Chris@70 181 (** Update the library to the given branch tip. Assumes that a
Chris@70 182 local copy of the library already exists *)
Chris@70 183 val update : context -> libname * source * branch -> unit result
Chris@70 184
Chris@70 185 (** Update the library to the given specific id or tag *)
Chris@70 186 val update_to : context -> libname * source * id_or_tag -> unit result
Chris@70 187
Chris@70 188 (** Return a URL from which the library can be cloned, given that
Chris@70 189 the local copy already exists. For a DVCS this can be the
Chris@70 190 local copy, but for a centralised VCS it will have to be the
Chris@70 191 remote repository URL. Used for archiving *)
Chris@70 192 val copy_url_for : context -> libname -> string result
Chris@70 193 end
Chris@70 194
Chris@70 195 signature LIB_CONTROL = sig
Chris@70 196 val review : context -> libspec -> (libstate * localstate) result
Chris@70 197 val status : context -> libspec -> (libstate * localstate) result
Chris@70 198 val update : context -> libspec -> unit result
Chris@70 199 val id_of : context -> libspec -> id_or_tag result
Chris@76 200 val is_working : context -> vcs -> bool result
Chris@70 201 end
Chris@70 202
Chris@70 203 structure FileBits :> sig
Chris@70 204 val extpath : context -> string
Chris@70 205 val libpath : context -> libname -> string
Chris@70 206 val subpath : context -> libname -> string -> string
Chris@70 207 val command_output : context -> libname -> string list -> string result
Chris@70 208 val command : context -> libname -> string list -> unit result
Chris@70 209 val file_url : string -> string
Chris@70 210 val file_contents : string -> string
Chris@70 211 val mydir : unit -> string
Chris@70 212 val homedir : unit -> string
Chris@70 213 val mkpath : string -> unit result
Chris@70 214 val rmpath : string -> unit result
Chris@70 215 val nonempty_dir_exists : string -> bool
Chris@70 216 val project_spec_path : string -> string
Chris@70 217 val project_lock_path : string -> string
Chris@70 218 val verbose : unit -> bool
Chris@70 219 end = struct
Chris@70 220
Chris@70 221 fun verbose () =
Chris@76 222 case OS.Process.getEnv "REPOINT_VERBOSE" of
Chris@70 223 SOME "0" => false
Chris@70 224 | SOME _ => true
Chris@70 225 | NONE => false
Chris@70 226
Chris@70 227 fun split_relative path desc =
Chris@70 228 case OS.Path.fromString path of
Chris@70 229 { isAbs = true, ... } => raise Fail (desc ^ " may not be absolute")
Chris@70 230 | { arcs, ... } => arcs
Chris@70 231
Chris@70 232 fun extpath ({ rootpath, extdir, ... } : context) =
Chris@70 233 let val { isAbs, vol, arcs } = OS.Path.fromString rootpath
Chris@70 234 in OS.Path.toString {
Chris@70 235 isAbs = isAbs,
Chris@70 236 vol = vol,
Chris@70 237 arcs = arcs @
Chris@70 238 split_relative extdir "extdir"
Chris@70 239 }
Chris@70 240 end
Chris@70 241
Chris@70 242 fun subpath ({ rootpath, extdir, ... } : context) libname remainder =
Chris@70 243 (* NB libname is allowed to be a path fragment, e.g. foo/bar *)
Chris@70 244 let val { isAbs, vol, arcs } = OS.Path.fromString rootpath
Chris@70 245 in OS.Path.toString {
Chris@70 246 isAbs = isAbs,
Chris@70 247 vol = vol,
Chris@70 248 arcs = arcs @
Chris@70 249 split_relative extdir "extdir" @
Chris@70 250 split_relative libname "library path" @
Chris@70 251 split_relative remainder "subpath"
Chris@70 252 }
Chris@70 253 end
Chris@70 254
Chris@70 255 fun libpath context "" =
Chris@70 256 extpath context
Chris@70 257 | libpath context libname =
Chris@70 258 subpath context libname ""
Chris@70 259
Chris@70 260 fun project_file_path rootpath filename =
Chris@70 261 let val { isAbs, vol, arcs } = OS.Path.fromString rootpath
Chris@70 262 in OS.Path.toString {
Chris@70 263 isAbs = isAbs,
Chris@70 264 vol = vol,
Chris@70 265 arcs = arcs @ [ filename ]
Chris@70 266 }
Chris@70 267 end
Chris@70 268
Chris@70 269 fun project_spec_path rootpath =
Chris@76 270 project_file_path rootpath (RepointFilenames.project_file)
Chris@70 271
Chris@70 272 fun project_lock_path rootpath =
Chris@76 273 project_file_path rootpath (RepointFilenames.project_lock_file)
Chris@70 274
Chris@70 275 fun trim str =
Chris@70 276 hd (String.fields (fn x => x = #"\n" orelse x = #"\r") str)
Chris@70 277
Chris@70 278 fun file_url path =
Chris@70 279 let val forward_path =
Chris@70 280 String.translate (fn #"\\" => "/" |
Chris@70 281 c => Char.toString c)
Chris@70 282 (OS.Path.mkCanonical path)
Chris@70 283 in
Chris@70 284 (* Path is expected to be absolute already, but if it
Chris@70 285 starts with a drive letter, we'll need an extra slash *)
Chris@70 286 case explode forward_path of
Chris@70 287 #"/"::rest => "file:///" ^ implode rest
Chris@70 288 | _ => "file:///" ^ forward_path
Chris@70 289 end
Chris@70 290
Chris@70 291 fun file_contents filename =
Chris@70 292 let val stream = TextIO.openIn filename
Chris@70 293 fun read_all str acc =
Chris@70 294 case TextIO.inputLine str of
Chris@70 295 SOME line => read_all str (trim line :: acc)
Chris@70 296 | NONE => rev acc
Chris@70 297 val contents = read_all stream []
Chris@70 298 val _ = TextIO.closeIn stream
Chris@70 299 in
Chris@70 300 String.concatWith "\n" contents
Chris@70 301 end
Chris@70 302
Chris@70 303 fun expand_commandline cmdlist =
Chris@76 304 (* We are quite strict about what we accept here, except
Chris@70 305 for the first element in cmdlist which is assumed to be a
Chris@76 306 known command location rather than arbitrary user input. *)
Chris@70 307 let open Char
Chris@70 308 fun quote arg =
Chris@70 309 if List.all
Chris@70 310 (fn c => isAlphaNum c orelse c = #"-" orelse c = #"_")
Chris@70 311 (explode arg)
Chris@70 312 then arg
Chris@70 313 else "\"" ^ arg ^ "\""
Chris@70 314 fun check arg =
Chris@70 315 let val valid = explode " /#:;?,._-{}@=+"
Chris@70 316 in
Chris@70 317 app (fn c =>
Chris@70 318 if isAlphaNum c orelse
Chris@70 319 List.exists (fn v => v = c) valid orelse
Chris@70 320 c > chr 127
Chris@70 321 then ()
Chris@70 322 else raise Fail ("Invalid character '" ^
Chris@70 323 (Char.toString c) ^
Chris@70 324 "' in command list"))
Chris@70 325 (explode arg);
Chris@70 326 arg
Chris@70 327 end
Chris@70 328 in
Chris@70 329 String.concatWith " "
Chris@70 330 (map quote
Chris@70 331 (hd cmdlist :: map check (tl cmdlist)))
Chris@70 332 end
Chris@70 333
Chris@70 334 val tick_cycle = ref 0
Chris@70 335 val tick_chars = Vector.fromList (map String.str (explode "|/-\\"))
Chris@70 336
Chris@70 337 fun tick libname cmdlist =
Chris@70 338 let val n = Vector.length tick_chars
Chris@70 339 fun pad_to n str =
Chris@70 340 if n <= String.size str then str
Chris@70 341 else pad_to n (str ^ " ")
Chris@70 342 val name = if libname <> "" then libname
Chris@70 343 else if cmdlist = nil then ""
Chris@70 344 else hd (rev cmdlist)
Chris@70 345 in
Chris@70 346 print (" " ^
Chris@70 347 Vector.sub(tick_chars, !tick_cycle) ^ " " ^
Chris@70 348 pad_to 70 name ^
Chris@70 349 "\r");
Chris@70 350 tick_cycle := (if !tick_cycle = n - 1 then 0 else 1 + !tick_cycle)
Chris@70 351 end
Chris@70 352
Chris@70 353 fun run_command context libname cmdlist redirect =
Chris@70 354 let open OS
Chris@70 355 val dir = libpath context libname
Chris@70 356 val cmd = expand_commandline cmdlist
Chris@70 357 val _ = if verbose ()
Chris@70 358 then print ("\n=== " ^ dir ^ "\n<<< " ^ cmd ^ "\n")
Chris@70 359 else tick libname cmdlist
Chris@70 360 val _ = FileSys.chDir dir
Chris@70 361 val status = case redirect of
Chris@70 362 NONE => Process.system cmd
Chris@70 363 | SOME file => Process.system (cmd ^ ">" ^ file)
Chris@70 364 in
Chris@70 365 if Process.isSuccess status
Chris@70 366 then OK ()
Chris@70 367 else ERROR ("Command failed: " ^ cmd ^ " (in dir " ^ dir ^ ")")
Chris@70 368 end
Chris@70 369 handle ex => ERROR ("Unable to run command: " ^ exnMessage ex)
Chris@70 370
Chris@70 371 fun command context libname cmdlist =
Chris@70 372 run_command context libname cmdlist NONE
Chris@70 373
Chris@70 374 fun command_output context libname cmdlist =
Chris@70 375 let open OS
Chris@70 376 val tmpFile = FileSys.tmpName ()
Chris@70 377 val result = run_command context libname cmdlist (SOME tmpFile)
Chris@70 378 val contents = file_contents tmpFile
Chris@70 379 val _ = if verbose ()
Chris@70 380 then print (">>> \"" ^ contents ^ "\"\n")
Chris@70 381 else ()
Chris@70 382 in
Chris@70 383 FileSys.remove tmpFile handle _ => ();
Chris@70 384 case result of
Chris@70 385 OK () => OK contents
Chris@70 386 | ERROR e => ERROR e
Chris@70 387 end
Chris@70 388
Chris@70 389 fun mydir () =
Chris@70 390 let open OS
Chris@70 391 val { dir, file } = Path.splitDirFile (CommandLine.name ())
Chris@70 392 in
Chris@70 393 FileSys.realPath
Chris@70 394 (if Path.isAbsolute dir
Chris@70 395 then dir
Chris@70 396 else Path.concat (FileSys.getDir (), dir))
Chris@70 397 end
Chris@70 398
Chris@70 399 fun homedir () =
Chris@70 400 (* Failure is not routine, so we use an exception here *)
Chris@70 401 case (OS.Process.getEnv "HOME",
Chris@70 402 OS.Process.getEnv "HOMEPATH") of
Chris@70 403 (SOME home, _) => home
Chris@70 404 | (NONE, SOME home) => home
Chris@70 405 | (NONE, NONE) =>
Chris@70 406 raise Fail "Failed to look up home directory from environment"
Chris@70 407
Chris@70 408 fun mkpath' path =
Chris@70 409 if OS.FileSys.isDir path handle _ => false
Chris@70 410 then OK ()
Chris@70 411 else case OS.Path.fromString path of
Chris@70 412 { arcs = nil, ... } => OK ()
Chris@70 413 | { isAbs = false, ... } => ERROR "mkpath requires absolute path"
Chris@70 414 | { isAbs, vol, arcs } =>
Chris@70 415 case mkpath' (OS.Path.toString { (* parent *)
Chris@70 416 isAbs = isAbs,
Chris@70 417 vol = vol,
Chris@70 418 arcs = rev (tl (rev arcs)) }) of
Chris@70 419 ERROR e => ERROR e
Chris@70 420 | OK () => ((OS.FileSys.mkDir path; OK ())
Chris@70 421 handle OS.SysErr (e, _) =>
Chris@70 422 ERROR ("Directory creation failed: " ^ e))
Chris@70 423
Chris@70 424 fun mkpath path =
Chris@70 425 mkpath' (OS.Path.mkCanonical path)
Chris@70 426
Chris@70 427 fun dir_contents dir =
Chris@70 428 let open OS
Chris@70 429 fun files_from dirstream =
Chris@70 430 case FileSys.readDir dirstream of
Chris@70 431 NONE => []
Chris@70 432 | SOME file =>
Chris@70 433 (* readDir is supposed to filter these,
Chris@70 434 but let's be extra cautious: *)
Chris@70 435 if file = Path.parentArc orelse file = Path.currentArc
Chris@70 436 then files_from dirstream
Chris@70 437 else file :: files_from dirstream
Chris@70 438 val stream = FileSys.openDir dir
Chris@70 439 val files = map (fn f => Path.joinDirFile
Chris@70 440 { dir = dir, file = f })
Chris@70 441 (files_from stream)
Chris@70 442 val _ = FileSys.closeDir stream
Chris@70 443 in
Chris@70 444 files
Chris@70 445 end
Chris@70 446
Chris@70 447 fun rmpath' path =
Chris@70 448 let open OS
Chris@70 449 fun remove path =
Chris@70 450 if FileSys.isLink path (* dangling links bother isDir *)
Chris@70 451 then FileSys.remove path
Chris@70 452 else if FileSys.isDir path
Chris@70 453 then (app remove (dir_contents path); FileSys.rmDir path)
Chris@70 454 else FileSys.remove path
Chris@70 455 in
Chris@70 456 (remove path; OK ())
Chris@70 457 handle SysErr (e, _) => ERROR ("Path removal failed: " ^ e)
Chris@70 458 end
Chris@70 459
Chris@70 460 fun rmpath path =
Chris@70 461 rmpath' (OS.Path.mkCanonical path)
Chris@70 462
Chris@70 463 fun nonempty_dir_exists path =
Chris@70 464 let open OS.FileSys
Chris@70 465 in
Chris@70 466 (not (isLink path) andalso
Chris@70 467 isDir path andalso
Chris@70 468 dir_contents path <> [])
Chris@70 469 handle _ => false
Chris@70 470 end
Chris@70 471
Chris@70 472 end
Chris@70 473
Chris@70 474 functor LibControlFn (V: VCS_CONTROL) :> LIB_CONTROL = struct
Chris@70 475
Chris@70 476 (* Valid states for unpinned libraries:
Chris@70 477
Chris@70 478 - CORRECT: We are on the right branch and are up-to-date with
Chris@70 479 it as far as we can tell. (If not using the network, this
Chris@70 480 should be reported to user as "Present" rather than "Correct"
Chris@70 481 as the remote repo may have advanced without us knowing.)
Chris@70 482
Chris@70 483 - SUPERSEDED: We are on the right branch but we can see that
Chris@70 484 there is a newer revision either locally or on the remote (in
Chris@70 485 Git terms, we are at an ancestor of the desired branch tip).
Chris@70 486
Chris@70 487 - WRONG: We are on the wrong branch (in Git terms, we are not
Chris@70 488 at the desired branch tip or any ancestor of it).
Chris@70 489
Chris@70 490 - ABSENT: Repo doesn't exist here at all.
Chris@70 491
Chris@70 492 Valid states for pinned libraries:
Chris@70 493
Chris@70 494 - CORRECT: We are at the pinned revision.
Chris@70 495
Chris@70 496 - WRONG: We are at any revision other than the pinned one.
Chris@70 497
Chris@70 498 - ABSENT: Repo doesn't exist here at all.
Chris@70 499 *)
Chris@70 500
Chris@70 501 fun check with_network context
Chris@70 502 ({ libname, source, branch,
Chris@70 503 project_pin, lock_pin, ... } : libspec) =
Chris@70 504 let fun check_unpinned () =
Chris@70 505 let val newest =
Chris@70 506 if with_network
Chris@70 507 then V.is_newest context (libname, source, branch)
Chris@70 508 else V.is_newest_locally context (libname, branch)
Chris@70 509 in
Chris@70 510 case newest of
Chris@70 511 ERROR e => ERROR e
Chris@70 512 | OK true => OK CORRECT
Chris@70 513 | OK false =>
Chris@70 514 case V.is_on_branch context (libname, branch) of
Chris@70 515 ERROR e => ERROR e
Chris@70 516 | OK true => OK SUPERSEDED
Chris@70 517 | OK false => OK WRONG
Chris@70 518 end
Chris@70 519 fun check_pinned target =
Chris@70 520 case V.is_at context (libname, target) of
Chris@70 521 ERROR e => ERROR e
Chris@70 522 | OK true => OK CORRECT
Chris@70 523 | OK false => OK WRONG
Chris@70 524 fun check_remote () =
Chris@70 525 case project_pin of
Chris@70 526 UNPINNED => check_unpinned ()
Chris@70 527 | PINNED target => check_pinned target
Chris@70 528 fun check_local () =
Chris@70 529 case V.is_modified_locally context libname of
Chris@70 530 ERROR e => ERROR e
Chris@70 531 | OK true => OK MODIFIED
Chris@70 532 | OK false =>
Chris@70 533 case lock_pin of
Chris@70 534 UNPINNED => OK CLEAN
Chris@70 535 | PINNED target =>
Chris@70 536 case V.is_at context (libname, target) of
Chris@70 537 ERROR e => ERROR e
Chris@70 538 | OK true => OK CLEAN
Chris@70 539 | OK false => OK LOCK_MISMATCHED
Chris@70 540 in
Chris@70 541 case V.exists context libname of
Chris@70 542 ERROR e => ERROR e
Chris@70 543 | OK false => OK (ABSENT, CLEAN)
Chris@70 544 | OK true =>
Chris@70 545 case (check_remote (), check_local ()) of
Chris@70 546 (ERROR e, _) => ERROR e
Chris@70 547 | (_, ERROR e) => ERROR e
Chris@70 548 | (OK r, OK l) => OK (r, l)
Chris@70 549 end
Chris@70 550
Chris@70 551 val review = check true
Chris@70 552 val status = check false
Chris@70 553
Chris@70 554 fun update context
Chris@70 555 ({ libname, source, branch,
Chris@70 556 project_pin, lock_pin, ... } : libspec) =
Chris@70 557 let fun update_unpinned () =
Chris@70 558 case V.is_newest context (libname, source, branch) of
Chris@70 559 ERROR e => ERROR e
Chris@70 560 | OK true => OK ()
Chris@70 561 | OK false => V.update context (libname, source, branch)
Chris@70 562 fun update_pinned target =
Chris@70 563 case V.is_at context (libname, target) of
Chris@70 564 ERROR e => ERROR e
Chris@70 565 | OK true => OK ()
Chris@70 566 | OK false => V.update_to context (libname, source, target)
Chris@70 567 fun update' () =
Chris@70 568 case lock_pin of
Chris@70 569 PINNED target => update_pinned target
Chris@70 570 | UNPINNED =>
Chris@70 571 case project_pin of
Chris@70 572 PINNED target => update_pinned target
Chris@70 573 | UNPINNED => update_unpinned ()
Chris@70 574 in
Chris@70 575 case V.exists context libname of
Chris@70 576 ERROR e => ERROR e
Chris@70 577 | OK true => update' ()
Chris@70 578 | OK false =>
Chris@70 579 case V.checkout context (libname, source, branch) of
Chris@70 580 ERROR e => ERROR e
Chris@70 581 | OK () => update' ()
Chris@70 582 end
Chris@70 583
Chris@70 584 fun id_of context ({ libname, ... } : libspec) =
Chris@70 585 V.id_of context libname
Chris@76 586
Chris@76 587 fun is_working context vcs =
Chris@76 588 V.is_working context
Chris@70 589
Chris@70 590 end
Chris@70 591
Chris@70 592 (* Simple Standard ML JSON parser
Chris@70 593 https://bitbucket.org/cannam/sml-simplejson
Chris@70 594 Copyright 2017 Chris Cannam. BSD licence.
Chris@70 595 Parts based on the JSON parser in the Ponyo library by Phil Eaton.
Chris@70 596 *)
Chris@70 597
Chris@70 598 signature JSON = sig
Chris@70 599
Chris@70 600 datatype json = OBJECT of (string * json) list
Chris@70 601 | ARRAY of json list
Chris@70 602 | NUMBER of real
Chris@70 603 | STRING of string
Chris@70 604 | BOOL of bool
Chris@70 605 | NULL
Chris@70 606
Chris@70 607 datatype 'a result = OK of 'a
Chris@70 608 | ERROR of string
Chris@70 609
Chris@70 610 val parse : string -> json result
Chris@70 611 val serialise : json -> string
Chris@70 612 val serialiseIndented : json -> string
Chris@70 613
Chris@70 614 end
Chris@70 615
Chris@70 616 structure Json :> JSON = struct
Chris@70 617
Chris@70 618 datatype json = OBJECT of (string * json) list
Chris@70 619 | ARRAY of json list
Chris@70 620 | NUMBER of real
Chris@70 621 | STRING of string
Chris@70 622 | BOOL of bool
Chris@70 623 | NULL
Chris@70 624
Chris@70 625 datatype 'a result = OK of 'a
Chris@70 626 | ERROR of string
Chris@70 627
Chris@70 628 structure T = struct
Chris@70 629 datatype token = NUMBER of char list
Chris@70 630 | STRING of string
Chris@70 631 | BOOL of bool
Chris@70 632 | NULL
Chris@70 633 | CURLY_L
Chris@70 634 | CURLY_R
Chris@70 635 | SQUARE_L
Chris@70 636 | SQUARE_R
Chris@70 637 | COLON
Chris@70 638 | COMMA
Chris@70 639
Chris@70 640 fun toString t =
Chris@70 641 case t of NUMBER digits => implode digits
Chris@70 642 | STRING s => s
Chris@70 643 | BOOL b => Bool.toString b
Chris@70 644 | NULL => "null"
Chris@70 645 | CURLY_L => "{"
Chris@70 646 | CURLY_R => "}"
Chris@70 647 | SQUARE_L => "["
Chris@70 648 | SQUARE_R => "]"
Chris@70 649 | COLON => ":"
Chris@70 650 | COMMA => ","
Chris@70 651 end
Chris@70 652
Chris@70 653 fun bmpToUtf8 cp = (* convert a codepoint in Unicode BMP to utf8 bytes *)
Chris@70 654 let open Word
Chris@70 655 infix 6 orb andb >>
Chris@70 656 in
Chris@70 657 map (Char.chr o toInt)
Chris@70 658 (if cp < 0wx80 then
Chris@70 659 [cp]
Chris@70 660 else if cp < 0wx800 then
Chris@70 661 [0wxc0 orb (cp >> 0w6), 0wx80 orb (cp andb 0wx3f)]
Chris@70 662 else if cp < 0wx10000 then
Chris@70 663 [0wxe0 orb (cp >> 0w12),
Chris@70 664 0wx80 orb ((cp >> 0w6) andb 0wx3f),
Chris@70 665 0wx80 orb (cp andb 0wx3f)]
Chris@70 666 else raise Fail ("Invalid BMP point " ^ (Word.toString cp)))
Chris@70 667 end
Chris@70 668
Chris@70 669 fun error pos text = ERROR (text ^ " at character position " ^
Chris@70 670 Int.toString (pos - 1))
Chris@70 671 fun token_error pos = error pos ("Unexpected token")
Chris@70 672
Chris@70 673 fun lexNull pos acc (#"u" :: #"l" :: #"l" :: xs) =
Chris@70 674 lex (pos + 3) (T.NULL :: acc) xs
Chris@70 675 | lexNull pos acc _ = token_error pos
Chris@70 676
Chris@70 677 and lexTrue pos acc (#"r" :: #"u" :: #"e" :: xs) =
Chris@70 678 lex (pos + 3) (T.BOOL true :: acc) xs
Chris@70 679 | lexTrue pos acc _ = token_error pos
Chris@70 680
Chris@70 681 and lexFalse pos acc (#"a" :: #"l" :: #"s" :: #"e" :: xs) =
Chris@70 682 lex (pos + 4) (T.BOOL false :: acc) xs
Chris@70 683 | lexFalse pos acc _ = token_error pos
Chris@70 684
Chris@70 685 and lexChar tok pos acc xs =
Chris@70 686 lex pos (tok :: acc) xs
Chris@70 687
Chris@70 688 and lexString pos acc cc =
Chris@70 689 let datatype escaped = ESCAPED | NORMAL
Chris@70 690 fun lexString' pos text ESCAPED [] =
Chris@70 691 error pos "End of input during escape sequence"
Chris@70 692 | lexString' pos text NORMAL [] =
Chris@70 693 error pos "End of input during string"
Chris@70 694 | lexString' pos text ESCAPED (x :: xs) =
Chris@70 695 let fun esc c = lexString' (pos + 1) (c :: text) NORMAL xs
Chris@70 696 in case x of
Chris@70 697 #"\"" => esc x
Chris@70 698 | #"\\" => esc x
Chris@70 699 | #"/" => esc x
Chris@70 700 | #"b" => esc #"\b"
Chris@70 701 | #"f" => esc #"\f"
Chris@70 702 | #"n" => esc #"\n"
Chris@70 703 | #"r" => esc #"\r"
Chris@70 704 | #"t" => esc #"\t"
Chris@70 705 | _ => error pos ("Invalid escape \\" ^
Chris@70 706 Char.toString x)
Chris@70 707 end
Chris@70 708 | lexString' pos text NORMAL (#"\\" :: #"u" ::a::b::c::d:: xs) =
Chris@70 709 if List.all Char.isHexDigit [a,b,c,d]
Chris@70 710 then case Word.fromString ("0wx" ^ (implode [a,b,c,d])) of
Chris@70 711 SOME w => (let val utf = rev (bmpToUtf8 w) in
Chris@70 712 lexString' (pos + 6) (utf @ text)
Chris@70 713 NORMAL xs
Chris@70 714 end
Chris@70 715 handle Fail err => error pos err)
Chris@70 716 | NONE => error pos "Invalid Unicode BMP escape sequence"
Chris@70 717 else error pos "Invalid Unicode BMP escape sequence"
Chris@70 718 | lexString' pos text NORMAL (x :: xs) =
Chris@70 719 if Char.ord x < 0x20
Chris@70 720 then error pos "Invalid unescaped control character"
Chris@70 721 else
Chris@70 722 case x of
Chris@70 723 #"\"" => OK (rev text, xs, pos + 1)
Chris@70 724 | #"\\" => lexString' (pos + 1) text ESCAPED xs
Chris@70 725 | _ => lexString' (pos + 1) (x :: text) NORMAL xs
Chris@70 726 in
Chris@70 727 case lexString' pos [] NORMAL cc of
Chris@70 728 OK (text, rest, newpos) =>
Chris@70 729 lex newpos (T.STRING (implode text) :: acc) rest
Chris@70 730 | ERROR e => ERROR e
Chris@70 731 end
Chris@70 732
Chris@70 733 and lexNumber firstChar pos acc cc =
Chris@70 734 let val valid = explode ".+-e"
Chris@70 735 fun lexNumber' pos digits [] = (rev digits, [], pos)
Chris@70 736 | lexNumber' pos digits (x :: xs) =
Chris@70 737 if x = #"E" then lexNumber' (pos + 1) (#"e" :: digits) xs
Chris@70 738 else if Char.isDigit x orelse List.exists (fn c => x = c) valid
Chris@70 739 then lexNumber' (pos + 1) (x :: digits) xs
Chris@70 740 else (rev digits, x :: xs, pos)
Chris@70 741 val (digits, rest, newpos) =
Chris@70 742 lexNumber' (pos - 1) [] (firstChar :: cc)
Chris@70 743 in
Chris@70 744 case digits of
Chris@70 745 [] => token_error pos
Chris@70 746 | _ => lex newpos (T.NUMBER digits :: acc) rest
Chris@70 747 end
Chris@70 748
Chris@70 749 and lex pos acc [] = OK (rev acc)
Chris@70 750 | lex pos acc (x::xs) =
Chris@70 751 (case x of
Chris@70 752 #" " => lex
Chris@70 753 | #"\t" => lex
Chris@70 754 | #"\n" => lex
Chris@70 755 | #"\r" => lex
Chris@70 756 | #"{" => lexChar T.CURLY_L
Chris@70 757 | #"}" => lexChar T.CURLY_R
Chris@70 758 | #"[" => lexChar T.SQUARE_L
Chris@70 759 | #"]" => lexChar T.SQUARE_R
Chris@70 760 | #":" => lexChar T.COLON
Chris@70 761 | #"," => lexChar T.COMMA
Chris@70 762 | #"\"" => lexString
Chris@70 763 | #"t" => lexTrue
Chris@70 764 | #"f" => lexFalse
Chris@70 765 | #"n" => lexNull
Chris@70 766 | x => lexNumber x) (pos + 1) acc xs
Chris@70 767
Chris@70 768 fun show [] = "end of input"
Chris@70 769 | show (tok :: _) = T.toString tok
Chris@70 770
Chris@70 771 fun parseNumber digits =
Chris@70 772 (* Note lexNumber already case-insensitised the E for us *)
Chris@70 773 let open Char
Chris@70 774
Chris@70 775 fun okExpDigits [] = false
Chris@70 776 | okExpDigits (c :: []) = isDigit c
Chris@70 777 | okExpDigits (c :: cs) = isDigit c andalso okExpDigits cs
Chris@70 778
Chris@70 779 fun okExponent [] = false
Chris@70 780 | okExponent (#"+" :: cs) = okExpDigits cs
Chris@70 781 | okExponent (#"-" :: cs) = okExpDigits cs
Chris@70 782 | okExponent cc = okExpDigits cc
Chris@70 783
Chris@70 784 fun okFracTrailing [] = true
Chris@70 785 | okFracTrailing (c :: cs) =
Chris@70 786 (isDigit c andalso okFracTrailing cs) orelse
Chris@70 787 (c = #"e" andalso okExponent cs)
Chris@70 788
Chris@70 789 fun okFraction [] = false
Chris@70 790 | okFraction (c :: cs) =
Chris@70 791 isDigit c andalso okFracTrailing cs
Chris@70 792
Chris@70 793 fun okPosTrailing [] = true
Chris@70 794 | okPosTrailing (#"." :: cs) = okFraction cs
Chris@70 795 | okPosTrailing (#"e" :: cs) = okExponent cs
Chris@70 796 | okPosTrailing (c :: cs) =
Chris@70 797 isDigit c andalso okPosTrailing cs
Chris@70 798
Chris@70 799 fun okPositive [] = false
Chris@70 800 | okPositive (#"0" :: []) = true
Chris@70 801 | okPositive (#"0" :: #"." :: cs) = okFraction cs
Chris@70 802 | okPositive (#"0" :: #"e" :: cs) = okExponent cs
Chris@70 803 | okPositive (#"0" :: cs) = false
Chris@70 804 | okPositive (c :: cs) = isDigit c andalso okPosTrailing cs
Chris@70 805
Chris@70 806 fun okNumber (#"-" :: cs) = okPositive cs
Chris@70 807 | okNumber cc = okPositive cc
Chris@70 808 in
Chris@70 809 if okNumber digits
Chris@70 810 then case Real.fromString (implode digits) of
Chris@70 811 NONE => ERROR "Number out of range"
Chris@70 812 | SOME r => OK r
Chris@70 813 else ERROR ("Invalid number \"" ^ (implode digits) ^ "\"")
Chris@70 814 end
Chris@70 815
Chris@70 816 fun parseObject (T.CURLY_R :: xs) = OK (OBJECT [], xs)
Chris@70 817 | parseObject tokens =
Chris@70 818 let fun parsePair (T.STRING key :: T.COLON :: xs) =
Chris@70 819 (case parseTokens xs of
Chris@70 820 ERROR e => ERROR e
Chris@70 821 | OK (j, xs) => OK ((key, j), xs))
Chris@70 822 | parsePair other =
Chris@70 823 ERROR ("Object key/value pair expected around \"" ^
Chris@70 824 show other ^ "\"")
Chris@70 825 fun parseObject' acc [] = ERROR "End of input during object"
Chris@70 826 | parseObject' acc tokens =
Chris@70 827 case parsePair tokens of
Chris@70 828 ERROR e => ERROR e
Chris@70 829 | OK (pair, T.COMMA :: xs) =>
Chris@70 830 parseObject' (pair :: acc) xs
Chris@70 831 | OK (pair, T.CURLY_R :: xs) =>
Chris@70 832 OK (OBJECT (rev (pair :: acc)), xs)
Chris@70 833 | OK (_, _) => ERROR "Expected , or } after object element"
Chris@70 834 in
Chris@70 835 parseObject' [] tokens
Chris@70 836 end
Chris@70 837
Chris@70 838 and parseArray (T.SQUARE_R :: xs) = OK (ARRAY [], xs)
Chris@70 839 | parseArray tokens =
Chris@70 840 let fun parseArray' acc [] = ERROR "End of input during array"
Chris@70 841 | parseArray' acc tokens =
Chris@70 842 case parseTokens tokens of
Chris@70 843 ERROR e => ERROR e
Chris@70 844 | OK (j, T.COMMA :: xs) => parseArray' (j :: acc) xs
Chris@70 845 | OK (j, T.SQUARE_R :: xs) => OK (ARRAY (rev (j :: acc)), xs)
Chris@70 846 | OK (_, _) => ERROR "Expected , or ] after array element"
Chris@70 847 in
Chris@70 848 parseArray' [] tokens
Chris@70 849 end
Chris@70 850
Chris@70 851 and parseTokens [] = ERROR "Value expected"
Chris@70 852 | parseTokens (tok :: xs) =
Chris@70 853 (case tok of
Chris@70 854 T.NUMBER d => (case parseNumber d of
Chris@70 855 OK r => OK (NUMBER r, xs)
Chris@70 856 | ERROR e => ERROR e)
Chris@70 857 | T.STRING s => OK (STRING s, xs)
Chris@70 858 | T.BOOL b => OK (BOOL b, xs)
Chris@70 859 | T.NULL => OK (NULL, xs)
Chris@70 860 | T.CURLY_L => parseObject xs
Chris@70 861 | T.SQUARE_L => parseArray xs
Chris@70 862 | _ => ERROR ("Unexpected token " ^ T.toString tok ^
Chris@70 863 " before " ^ show xs))
Chris@70 864
Chris@70 865 fun parse str =
Chris@70 866 case lex 1 [] (explode str) of
Chris@70 867 ERROR e => ERROR e
Chris@70 868 | OK tokens => case parseTokens tokens of
Chris@70 869 OK (value, []) => OK value
Chris@70 870 | OK (_, _) => ERROR "Extra data after input"
Chris@70 871 | ERROR e => ERROR e
Chris@70 872
Chris@70 873 fun stringEscape s =
Chris@70 874 let fun esc x = [x, #"\\"]
Chris@70 875 fun escape' acc [] = rev acc
Chris@70 876 | escape' acc (x :: xs) =
Chris@70 877 escape' (case x of
Chris@70 878 #"\"" => esc x @ acc
Chris@70 879 | #"\\" => esc x @ acc
Chris@70 880 | #"\b" => esc #"b" @ acc
Chris@70 881 | #"\f" => esc #"f" @ acc
Chris@70 882 | #"\n" => esc #"n" @ acc
Chris@70 883 | #"\r" => esc #"r" @ acc
Chris@70 884 | #"\t" => esc #"t" @ acc
Chris@70 885 | _ =>
Chris@70 886 let val c = Char.ord x
Chris@70 887 in
Chris@70 888 if c < 0x20
Chris@70 889 then let val hex = Word.toString (Word.fromInt c)
Chris@70 890 in (rev o explode) (if c < 0x10
Chris@70 891 then ("\\u000" ^ hex)
Chris@70 892 else ("\\u00" ^ hex))
Chris@70 893 end @ acc
Chris@70 894 else
Chris@70 895 x :: acc
Chris@70 896 end)
Chris@70 897 xs
Chris@70 898 in
Chris@70 899 implode (escape' [] (explode s))
Chris@70 900 end
Chris@70 901
Chris@70 902 fun serialise json =
Chris@70 903 case json of
Chris@70 904 OBJECT pp => "{" ^ String.concatWith
Chris@70 905 "," (map (fn (key, value) =>
Chris@70 906 serialise (STRING key) ^ ":" ^
Chris@70 907 serialise value) pp) ^
Chris@70 908 "}"
Chris@70 909 | ARRAY arr => "[" ^ String.concatWith "," (map serialise arr) ^ "]"
Chris@70 910 | NUMBER n => implode (map (fn #"~" => #"-" | c => c)
Chris@70 911 (explode (Real.toString n)))
Chris@70 912 | STRING s => "\"" ^ stringEscape s ^ "\""
Chris@70 913 | BOOL b => Bool.toString b
Chris@70 914 | NULL => "null"
Chris@70 915
Chris@70 916 fun serialiseIndented json =
Chris@70 917 let fun indent 0 = ""
Chris@70 918 | indent i = " " ^ indent (i - 1)
Chris@70 919 fun serialiseIndented' i json =
Chris@70 920 let val ser = serialiseIndented' (i + 1)
Chris@70 921 in
Chris@70 922 case json of
Chris@70 923 OBJECT [] => "{}"
Chris@70 924 | ARRAY [] => "[]"
Chris@70 925 | OBJECT pp => "{\n" ^ indent (i + 1) ^
Chris@70 926 String.concatWith
Chris@70 927 (",\n" ^ indent (i + 1))
Chris@70 928 (map (fn (key, value) =>
Chris@70 929 ser (STRING key) ^ ": " ^
Chris@70 930 ser value) pp) ^
Chris@70 931 "\n" ^ indent i ^ "}"
Chris@70 932 | ARRAY arr => "[\n" ^ indent (i + 1) ^
Chris@70 933 String.concatWith
Chris@70 934 (",\n" ^ indent (i + 1))
Chris@70 935 (map ser arr) ^
Chris@70 936 "\n" ^ indent i ^ "]"
Chris@70 937 | other => serialise other
Chris@70 938 end
Chris@70 939 in
Chris@70 940 serialiseIndented' 0 json ^ "\n"
Chris@70 941 end
Chris@70 942
Chris@70 943 end
Chris@70 944
Chris@70 945
Chris@70 946 structure JsonBits :> sig
Chris@76 947 exception Config of string
Chris@70 948 val load_json_from : string -> Json.json (* filename -> json *)
Chris@70 949 val save_json_to : string -> Json.json -> unit
Chris@70 950 val lookup_optional : Json.json -> string list -> Json.json option
Chris@70 951 val lookup_optional_string : Json.json -> string list -> string option
Chris@70 952 val lookup_mandatory : Json.json -> string list -> Json.json
Chris@70 953 val lookup_mandatory_string : Json.json -> string list -> string
Chris@70 954 end = struct
Chris@70 955
Chris@76 956 exception Config of string
Chris@76 957
Chris@70 958 fun load_json_from filename =
Chris@70 959 case Json.parse (FileBits.file_contents filename) of
Chris@70 960 Json.OK json => json
Chris@76 961 | Json.ERROR e => raise Config ("Failed to parse file: " ^ e)
Chris@70 962
Chris@70 963 fun save_json_to filename json =
Chris@70 964 (* using binary I/O to avoid ever writing CR/LF line endings *)
Chris@70 965 let val jstr = Json.serialiseIndented json
Chris@70 966 val stream = BinIO.openOut filename
Chris@70 967 in
Chris@70 968 BinIO.output (stream, Byte.stringToBytes jstr);
Chris@70 969 BinIO.closeOut stream
Chris@70 970 end
Chris@70 971
Chris@70 972 fun lookup_optional json kk =
Chris@70 973 let fun lookup key =
Chris@70 974 case json of
Chris@70 975 Json.OBJECT kvs =>
Chris@76 976 (case List.filter (fn (k, v) => k = key) kvs of
Chris@76 977 [] => NONE
Chris@76 978 | [(_,v)] => SOME v
Chris@76 979 | _ => raise Config ("Duplicate key: " ^
Chris@76 980 (String.concatWith " -> " kk)))
Chris@76 981 | _ => raise Config "Object expected"
Chris@70 982 in
Chris@70 983 case kk of
Chris@70 984 [] => NONE
Chris@70 985 | key::[] => lookup key
Chris@70 986 | key::kk => case lookup key of
Chris@70 987 NONE => NONE
Chris@70 988 | SOME j => lookup_optional j kk
Chris@70 989 end
Chris@70 990
Chris@70 991 fun lookup_optional_string json kk =
Chris@70 992 case lookup_optional json kk of
Chris@70 993 SOME (Json.STRING s) => SOME s
Chris@76 994 | SOME _ => raise Config ("Value (if present) must be string: " ^
Chris@76 995 (String.concatWith " -> " kk))
Chris@70 996 | NONE => NONE
Chris@70 997
Chris@70 998 fun lookup_mandatory json kk =
Chris@70 999 case lookup_optional json kk of
Chris@70 1000 SOME v => v
Chris@76 1001 | NONE => raise Config ("Value is mandatory: " ^
Chris@76 1002 (String.concatWith " -> " kk))
Chris@70 1003
Chris@70 1004 fun lookup_mandatory_string json kk =
Chris@70 1005 case lookup_optional json kk of
Chris@70 1006 SOME (Json.STRING s) => s
Chris@76 1007 | _ => raise Config ("Value must be string: " ^
Chris@76 1008 (String.concatWith " -> " kk))
Chris@70 1009 end
Chris@70 1010
Chris@70 1011 structure Provider :> sig
Chris@70 1012 val load_providers : Json.json -> provider list
Chris@70 1013 val load_more_providers : provider list -> Json.json -> provider list
Chris@70 1014 val remote_url : context -> vcs -> source -> libname -> string
Chris@70 1015 end = struct
Chris@70 1016
Chris@70 1017 val known_providers : provider list =
Chris@70 1018 [ {
Chris@70 1019 service = "bitbucket",
Chris@70 1020 supports = [HG, GIT],
Chris@70 1021 remote_spec = {
Chris@70 1022 anon = SOME "https://bitbucket.org/{owner}/{repository}",
Chris@70 1023 auth = SOME "ssh://{vcs}@bitbucket.org/{owner}/{repository}"
Chris@70 1024 }
Chris@70 1025 },
Chris@70 1026 {
Chris@70 1027 service = "github",
Chris@70 1028 supports = [GIT],
Chris@70 1029 remote_spec = {
Chris@70 1030 anon = SOME "https://github.com/{owner}/{repository}",
Chris@70 1031 auth = SOME "ssh://{vcs}@github.com/{owner}/{repository}"
Chris@70 1032 }
Chris@70 1033 }
Chris@70 1034 ]
Chris@70 1035
Chris@70 1036 fun vcs_name vcs =
Chris@70 1037 case vcs of HG => "hg"
Chris@70 1038 | GIT => "git"
Chris@70 1039 | SVN => "svn"
Chris@70 1040
Chris@70 1041 fun vcs_from_name name =
Chris@70 1042 case name of "hg" => HG
Chris@70 1043 | "git" => GIT
Chris@70 1044 | "svn" => SVN
Chris@70 1045 | other => raise Fail ("Unknown vcs name \"" ^ name ^ "\"")
Chris@70 1046
Chris@70 1047 fun load_more_providers previously_loaded json =
Chris@70 1048 let open JsonBits
Chris@70 1049 fun load pjson pname : provider =
Chris@70 1050 {
Chris@70 1051 service = pname,
Chris@70 1052 supports =
Chris@70 1053 case lookup_mandatory pjson ["vcs"] of
Chris@70 1054 Json.ARRAY vv =>
Chris@70 1055 map (fn (Json.STRING v) => vcs_from_name v
Chris@70 1056 | _ => raise Fail "Strings expected in vcs array")
Chris@70 1057 vv
Chris@70 1058 | _ => raise Fail "Array expected for vcs",
Chris@70 1059 remote_spec = {
Chris@70 1060 anon = lookup_optional_string pjson ["anonymous"],
Chris@70 1061 auth = lookup_optional_string pjson ["authenticated"]
Chris@70 1062 }
Chris@70 1063 }
Chris@70 1064 val loaded =
Chris@70 1065 case lookup_optional json ["services"] of
Chris@70 1066 NONE => []
Chris@70 1067 | SOME (Json.OBJECT pl) => map (fn (k, v) => load v k) pl
Chris@70 1068 | _ => raise Fail "Object expected for services in config"
Chris@70 1069 val newly_loaded =
Chris@70 1070 List.filter (fn p => not (List.exists (fn pp => #service p =
Chris@70 1071 #service pp)
Chris@70 1072 previously_loaded))
Chris@70 1073 loaded
Chris@70 1074 in
Chris@70 1075 previously_loaded @ newly_loaded
Chris@70 1076 end
Chris@70 1077
Chris@70 1078 fun load_providers json =
Chris@70 1079 load_more_providers known_providers json
Chris@70 1080
Chris@70 1081 fun expand_spec spec { vcs, service, owner, repo } login =
Chris@70 1082 (* ugly *)
Chris@70 1083 let fun replace str =
Chris@70 1084 case str of
Chris@70 1085 "vcs" => vcs_name vcs
Chris@70 1086 | "service" => service
Chris@70 1087 | "owner" =>
Chris@70 1088 (case owner of
Chris@70 1089 SOME ostr => ostr
Chris@70 1090 | NONE => raise Fail ("Owner not specified for service " ^
Chris@70 1091 service))
Chris@70 1092 | "repository" => repo
Chris@70 1093 | "account" =>
Chris@70 1094 (case login of
Chris@70 1095 SOME acc => acc
Chris@70 1096 | NONE => raise Fail ("Account not given for service " ^
Chris@70 1097 service))
Chris@70 1098 | other => raise Fail ("Unknown variable \"" ^ other ^
Chris@70 1099 "\" in spec for service " ^ service)
Chris@70 1100 fun expand' acc sstr =
Chris@70 1101 case Substring.splitl (fn c => c <> #"{") sstr of
Chris@70 1102 (pfx, sfx) =>
Chris@70 1103 if Substring.isEmpty sfx
Chris@70 1104 then rev (pfx :: acc)
Chris@70 1105 else
Chris@70 1106 case Substring.splitl (fn c => c <> #"}") sfx of
Chris@70 1107 (tok, remainder) =>
Chris@70 1108 if Substring.isEmpty remainder
Chris@70 1109 then rev (tok :: pfx :: acc)
Chris@70 1110 else let val replacement =
Chris@70 1111 replace
Chris@70 1112 (* tok begins with "{": *)
Chris@70 1113 (Substring.string
Chris@70 1114 (Substring.triml 1 tok))
Chris@70 1115 in
Chris@70 1116 expand' (Substring.full replacement ::
Chris@70 1117 pfx :: acc)
Chris@70 1118 (* remainder begins with "}": *)
Chris@70 1119 (Substring.triml 1 remainder)
Chris@70 1120 end
Chris@70 1121 in
Chris@70 1122 Substring.concat (expand' [] (Substring.full spec))
Chris@70 1123 end
Chris@70 1124
Chris@70 1125 fun provider_url req login providers =
Chris@70 1126 case providers of
Chris@70 1127 [] => raise Fail ("Unknown service \"" ^ (#service req) ^
Chris@70 1128 "\" for vcs \"" ^ (vcs_name (#vcs req)) ^ "\"")
Chris@70 1129 | ({ service, supports, remote_spec : remote_spec } :: rest) =>
Chris@70 1130 if service <> (#service req) orelse
Chris@70 1131 not (List.exists (fn v => v = (#vcs req)) supports)
Chris@70 1132 then provider_url req login rest
Chris@70 1133 else
Chris@70 1134 case (login, #auth remote_spec, #anon remote_spec) of
Chris@70 1135 (SOME _, SOME auth, _) => expand_spec auth req login
Chris@70 1136 | (SOME _, _, SOME anon) => expand_spec anon req NONE
Chris@70 1137 | (NONE, _, SOME anon) => expand_spec anon req NONE
Chris@70 1138 | _ => raise Fail ("No suitable anonymous or authenticated " ^
Chris@70 1139 "URL spec provided for service \"" ^
Chris@70 1140 service ^ "\"")
Chris@70 1141
Chris@70 1142 fun login_for ({ accounts, ... } : context) service =
Chris@70 1143 case List.find (fn a => service = #service a) accounts of
Chris@70 1144 SOME { login, ... } => SOME login
Chris@70 1145 | NONE => NONE
Chris@70 1146
Chris@70 1147 fun reponame_for path =
Chris@70 1148 case String.tokens (fn c => c = #"/") path of
Chris@70 1149 [] => raise Fail "Non-empty library path required"
Chris@70 1150 | toks => hd (rev toks)
Chris@70 1151
Chris@70 1152 fun remote_url (context : context) vcs source libname =
Chris@70 1153 case source of
Chris@70 1154 URL_SOURCE u => u
Chris@70 1155 | SERVICE_SOURCE { service, owner, repo } =>
Chris@70 1156 provider_url { vcs = vcs,
Chris@70 1157 service = service,
Chris@70 1158 owner = owner,
Chris@70 1159 repo = case repo of
Chris@70 1160 SOME r => r
Chris@70 1161 | NONE => reponame_for libname }
Chris@70 1162 (login_for context service)
Chris@70 1163 (#providers context)
Chris@70 1164 end
Chris@70 1165
Chris@70 1166 structure HgControl :> VCS_CONTROL = struct
Chris@70 1167
Chris@70 1168 (* Pulls always use an explicit URL, never just the default
Chris@70 1169 remote, in order to ensure we update properly if the location
Chris@70 1170 given in the project file changes. *)
Chris@70 1171
Chris@70 1172 type vcsstate = { id: string, modified: bool,
Chris@70 1173 branch: string, tags: string list }
Chris@70 1174
Chris@76 1175 val hg_program = "hg"
Chris@76 1176
Chris@70 1177 val hg_args = [ "--config", "ui.interactive=true",
Chris@70 1178 "--config", "ui.merge=:merge" ]
Chris@70 1179
Chris@70 1180 fun hg_command context libname args =
Chris@76 1181 FileBits.command context libname (hg_program :: hg_args @ args)
Chris@70 1182
Chris@70 1183 fun hg_command_output context libname args =
Chris@76 1184 FileBits.command_output context libname (hg_program :: hg_args @ args)
Chris@76 1185
Chris@76 1186 fun is_working context =
Chris@76 1187 case hg_command_output context "" ["--version"] of
Chris@76 1188 OK "" => OK false
Chris@76 1189 | OK _ => OK true
Chris@76 1190 | ERROR e => ERROR e
Chris@76 1191
Chris@70 1192 fun exists context libname =
Chris@70 1193 OK (OS.FileSys.isDir (FileBits.subpath context libname ".hg"))
Chris@70 1194 handle _ => OK false
Chris@70 1195
Chris@70 1196 fun remote_for context (libname, source) =
Chris@70 1197 Provider.remote_url context HG source libname
Chris@70 1198
Chris@70 1199 fun current_state context libname : vcsstate result =
Chris@70 1200 let fun is_branch text = text <> "" andalso #"(" = hd (explode text)
Chris@70 1201 and extract_branch b =
Chris@70 1202 if is_branch b (* need to remove enclosing parens *)
Chris@70 1203 then (implode o rev o tl o rev o tl o explode) b
Chris@70 1204 else "default"
Chris@70 1205 and is_modified id = id <> "" andalso #"+" = hd (rev (explode id))
Chris@70 1206 and extract_id id =
Chris@70 1207 if is_modified id (* need to remove trailing "+" *)
Chris@70 1208 then (implode o rev o tl o rev o explode) id
Chris@70 1209 else id
Chris@70 1210 and split_tags tags = String.tokens (fn c => c = #"/") tags
Chris@70 1211 and state_for (id, branch, tags) =
Chris@70 1212 OK { id = extract_id id,
Chris@70 1213 modified = is_modified id,
Chris@70 1214 branch = extract_branch branch,
Chris@70 1215 tags = split_tags tags }
Chris@70 1216 in
Chris@70 1217 case hg_command_output context libname ["id"] of
Chris@70 1218 ERROR e => ERROR e
Chris@70 1219 | OK out =>
Chris@70 1220 case String.tokens (fn x => x = #" ") out of
Chris@70 1221 [id, branch, tags] => state_for (id, branch, tags)
Chris@70 1222 | [id, other] => if is_branch other
Chris@70 1223 then state_for (id, other, "")
Chris@70 1224 else state_for (id, "", other)
Chris@70 1225 | [id] => state_for (id, "", "")
Chris@70 1226 | _ => ERROR ("Unexpected output from hg id: " ^ out)
Chris@70 1227 end
Chris@70 1228
Chris@70 1229 fun branch_name branch = case branch of
Chris@70 1230 DEFAULT_BRANCH => "default"
Chris@70 1231 | BRANCH "" => "default"
Chris@70 1232 | BRANCH b => b
Chris@70 1233
Chris@70 1234 fun id_of context libname =
Chris@70 1235 case current_state context libname of
Chris@70 1236 ERROR e => ERROR e
Chris@70 1237 | OK { id, ... } => OK id
Chris@70 1238
Chris@70 1239 fun is_at context (libname, id_or_tag) =
Chris@70 1240 case current_state context libname of
Chris@70 1241 ERROR e => ERROR e
Chris@70 1242 | OK { id, tags, ... } =>
Chris@70 1243 OK (String.isPrefix id_or_tag id orelse
Chris@70 1244 String.isPrefix id id_or_tag orelse
Chris@70 1245 List.exists (fn t => t = id_or_tag) tags)
Chris@70 1246
Chris@70 1247 fun is_on_branch context (libname, b) =
Chris@70 1248 case current_state context libname of
Chris@70 1249 ERROR e => ERROR e
Chris@70 1250 | OK { branch, ... } => OK (branch = branch_name b)
Chris@70 1251
Chris@70 1252 fun is_newest_locally context (libname, branch) =
Chris@70 1253 case hg_command_output context libname
Chris@70 1254 ["log", "-l1",
Chris@70 1255 "-b", branch_name branch,
Chris@70 1256 "--template", "{node}"] of
Chris@70 1257 ERROR e => OK false (* desired branch does not exist *)
Chris@70 1258 | OK newest_in_repo => is_at context (libname, newest_in_repo)
Chris@70 1259
Chris@70 1260 fun pull context (libname, source) =
Chris@70 1261 let val url = remote_for context (libname, source)
Chris@70 1262 in
Chris@70 1263 hg_command context libname
Chris@70 1264 (if FileBits.verbose ()
Chris@70 1265 then ["pull", url]
Chris@70 1266 else ["pull", "-q", url])
Chris@70 1267 end
Chris@70 1268
Chris@70 1269 fun is_newest context (libname, source, branch) =
Chris@70 1270 case is_newest_locally context (libname, branch) of
Chris@70 1271 ERROR e => ERROR e
Chris@70 1272 | OK false => OK false
Chris@70 1273 | OK true =>
Chris@70 1274 case pull context (libname, source) of
Chris@70 1275 ERROR e => ERROR e
Chris@70 1276 | _ => is_newest_locally context (libname, branch)
Chris@70 1277
Chris@70 1278 fun is_modified_locally context libname =
Chris@70 1279 case current_state context libname of
Chris@70 1280 ERROR e => ERROR e
Chris@70 1281 | OK { modified, ... } => OK modified
Chris@70 1282
Chris@70 1283 fun checkout context (libname, source, branch) =
Chris@70 1284 let val url = remote_for context (libname, source)
Chris@70 1285 in
Chris@70 1286 (* make the lib dir rather than just the ext dir, since
Chris@70 1287 the lib dir might be nested and hg will happily check
Chris@70 1288 out into an existing empty dir anyway *)
Chris@70 1289 case FileBits.mkpath (FileBits.libpath context libname) of
Chris@70 1290 ERROR e => ERROR e
Chris@70 1291 | _ => hg_command context ""
Chris@70 1292 ["clone", "-u", branch_name branch,
Chris@70 1293 url, libname]
Chris@70 1294 end
Chris@70 1295
Chris@70 1296 fun update context (libname, source, branch) =
Chris@70 1297 let val pull_result = pull context (libname, source)
Chris@70 1298 in
Chris@70 1299 case hg_command context libname ["update", branch_name branch] of
Chris@70 1300 ERROR e => ERROR e
Chris@70 1301 | _ =>
Chris@70 1302 case pull_result of
Chris@70 1303 ERROR e => ERROR e
Chris@70 1304 | _ => OK ()
Chris@70 1305 end
Chris@70 1306
Chris@70 1307 fun update_to context (libname, _, "") =
Chris@70 1308 ERROR "Non-empty id (tag or revision id) required for update_to"
Chris@70 1309 | update_to context (libname, source, id) =
Chris@70 1310 let val pull_result = pull context (libname, source)
Chris@70 1311 in
Chris@70 1312 case hg_command context libname ["update", "-r", id] of
Chris@70 1313 OK _ => OK ()
Chris@70 1314 | ERROR e =>
Chris@70 1315 case pull_result of
Chris@70 1316 ERROR e' => ERROR e' (* this was the ur-error *)
Chris@70 1317 | _ => ERROR e
Chris@70 1318 end
Chris@70 1319
Chris@70 1320 fun copy_url_for context libname =
Chris@70 1321 OK (FileBits.file_url (FileBits.libpath context libname))
Chris@70 1322
Chris@70 1323 end
Chris@70 1324
Chris@70 1325 structure GitControl :> VCS_CONTROL = struct
Chris@70 1326
Chris@70 1327 (* With Git repos we always operate in detached HEAD state. Even
Chris@70 1328 the master branch is checked out using a remote reference
Chris@76 1329 (repoint/master). The remote we use is always named repoint, and we
Chris@70 1330 update it to the expected URL each time we fetch, in order to
Chris@70 1331 ensure we update properly if the location given in the project
Chris@70 1332 file changes. The origin remote is unused. *)
Chris@70 1333
Chris@76 1334 val git_program = "git"
Chris@76 1335
Chris@70 1336 fun git_command context libname args =
Chris@76 1337 FileBits.command context libname (git_program :: args)
Chris@70 1338
Chris@70 1339 fun git_command_output context libname args =
Chris@76 1340 FileBits.command_output context libname (git_program :: args)
Chris@76 1341
Chris@76 1342 fun is_working context =
Chris@76 1343 case git_command_output context "" ["--version"] of
Chris@76 1344 OK "" => OK false
Chris@76 1345 | OK _ => OK true
Chris@76 1346 | ERROR e => ERROR e
Chris@70 1347
Chris@70 1348 fun exists context libname =
Chris@70 1349 OK (OS.FileSys.isDir (FileBits.subpath context libname ".git"))
Chris@70 1350 handle _ => OK false
Chris@70 1351
Chris@70 1352 fun remote_for context (libname, source) =
Chris@70 1353 Provider.remote_url context GIT source libname
Chris@70 1354
Chris@70 1355 fun branch_name branch = case branch of
Chris@70 1356 DEFAULT_BRANCH => "master"
Chris@70 1357 | BRANCH "" => "master"
Chris@70 1358 | BRANCH b => b
Chris@70 1359
Chris@76 1360 val our_remote = "repoint"
Chris@70 1361
Chris@70 1362 fun remote_branch_name branch = our_remote ^ "/" ^ branch_name branch
Chris@70 1363
Chris@70 1364 fun checkout context (libname, source, branch) =
Chris@70 1365 let val url = remote_for context (libname, source)
Chris@70 1366 in
Chris@70 1367 (* make the lib dir rather than just the ext dir, since
Chris@70 1368 the lib dir might be nested and git will happily check
Chris@70 1369 out into an existing empty dir anyway *)
Chris@70 1370 case FileBits.mkpath (FileBits.libpath context libname) of
Chris@70 1371 OK () => git_command context ""
Chris@70 1372 ["clone", "--origin", our_remote,
Chris@70 1373 "--branch", branch_name branch,
Chris@70 1374 url, libname]
Chris@70 1375 | ERROR e => ERROR e
Chris@70 1376 end
Chris@70 1377
Chris@70 1378 fun add_our_remote context (libname, source) =
Chris@70 1379 (* When we do the checkout ourselves (above), we add the
Chris@70 1380 remote at the same time. But if the repo was cloned by
Chris@70 1381 someone else, we'll need to do it after the fact. Git
Chris@70 1382 doesn't seem to have a means to add a remote or change its
Chris@70 1383 url if it already exists; seems we have to do this: *)
Chris@70 1384 let val url = remote_for context (libname, source)
Chris@70 1385 in
Chris@70 1386 case git_command context libname
Chris@70 1387 ["remote", "set-url", our_remote, url] of
Chris@70 1388 OK () => OK ()
Chris@70 1389 | ERROR e => git_command context libname
Chris@70 1390 ["remote", "add", "-f", our_remote, url]
Chris@70 1391 end
Chris@70 1392
Chris@70 1393 (* NB git rev-parse HEAD shows revision id of current checkout;
Chris@70 1394 git rev-list -1 <tag> shows revision id of revision with that tag *)
Chris@70 1395
Chris@70 1396 fun id_of context libname =
Chris@70 1397 git_command_output context libname ["rev-parse", "HEAD"]
Chris@70 1398
Chris@70 1399 fun is_at context (libname, id_or_tag) =
Chris@70 1400 case id_of context libname of
Chris@70 1401 ERROR e => OK false (* HEAD nonexistent, expected in empty repo *)
Chris@70 1402 | OK id =>
Chris@70 1403 if String.isPrefix id_or_tag id orelse
Chris@70 1404 String.isPrefix id id_or_tag
Chris@70 1405 then OK true
Chris@70 1406 else is_at_tag context (libname, id, id_or_tag)
Chris@70 1407
Chris@70 1408 and is_at_tag context (libname, id, tag) =
Chris@70 1409 (* For annotated tags (with message) show-ref returns the tag
Chris@70 1410 object ref rather than that of the revision being tagged;
Chris@70 1411 we need the subsequent rev-list to chase that up. In fact
Chris@70 1412 the rev-list on its own is enough to get us the id direct
Chris@70 1413 from the tag name, but it fails with an error if the tag
Chris@70 1414 doesn't exist, whereas we want to handle that quietly in
Chris@70 1415 case the tag simply hasn't been pulled yet *)
Chris@70 1416 case git_command_output context libname
Chris@70 1417 ["show-ref", "refs/tags/" ^ tag, "--"] of
Chris@70 1418 OK "" => OK false (* Not a tag *)
Chris@70 1419 | ERROR _ => OK false
Chris@70 1420 | OK s =>
Chris@70 1421 let val tag_ref = hd (String.tokens (fn c => c = #" ") s)
Chris@70 1422 in
Chris@70 1423 case git_command_output context libname
Chris@70 1424 ["rev-list", "-1", tag_ref] of
Chris@70 1425 OK tagged => OK (id = tagged)
Chris@70 1426 | ERROR _ => OK false
Chris@70 1427 end
Chris@70 1428
Chris@70 1429 fun branch_tip context (libname, branch) =
Chris@70 1430 (* We don't have access to the source info or the network
Chris@70 1431 here, as this is used by status (e.g. via is_on_branch) as
Chris@70 1432 well as review. It's possible the remote branch won't exist,
Chris@70 1433 e.g. if the repo was checked out by something other than
Chris@76 1434 Repoint, and if that's the case, we can't add it here; we'll
Chris@70 1435 just have to fail, since checking against local branches
Chris@70 1436 instead could produce the wrong result. *)
Chris@70 1437 git_command_output context libname
Chris@70 1438 ["rev-list", "-1",
Chris@70 1439 remote_branch_name branch, "--"]
Chris@70 1440
Chris@70 1441 fun is_newest_locally context (libname, branch) =
Chris@70 1442 case branch_tip context (libname, branch) of
Chris@70 1443 ERROR e => OK false
Chris@70 1444 | OK rev => is_at context (libname, rev)
Chris@70 1445
Chris@70 1446 fun is_on_branch context (libname, branch) =
Chris@70 1447 case branch_tip context (libname, branch) of
Chris@70 1448 ERROR e => OK false
Chris@70 1449 | OK rev =>
Chris@70 1450 case is_at context (libname, rev) of
Chris@70 1451 ERROR e => ERROR e
Chris@70 1452 | OK true => OK true
Chris@70 1453 | OK false =>
Chris@70 1454 case git_command context libname
Chris@70 1455 ["merge-base", "--is-ancestor",
Chris@70 1456 "HEAD", remote_branch_name branch] of
Chris@70 1457 ERROR e => OK false (* cmd returns non-zero for no *)
Chris@70 1458 | _ => OK true
Chris@70 1459
Chris@70 1460 fun fetch context (libname, source) =
Chris@70 1461 case add_our_remote context (libname, source) of
Chris@70 1462 ERROR e => ERROR e
Chris@70 1463 | _ => git_command context libname ["fetch", our_remote]
Chris@70 1464
Chris@70 1465 fun is_newest context (libname, source, branch) =
Chris@70 1466 case add_our_remote context (libname, source) of
Chris@70 1467 ERROR e => ERROR e
Chris@70 1468 | OK () =>
Chris@70 1469 case is_newest_locally context (libname, branch) of
Chris@70 1470 ERROR e => ERROR e
Chris@70 1471 | OK false => OK false
Chris@70 1472 | OK true =>
Chris@70 1473 case fetch context (libname, source) of
Chris@70 1474 ERROR e => ERROR e
Chris@70 1475 | _ => is_newest_locally context (libname, branch)
Chris@70 1476
Chris@70 1477 fun is_modified_locally context libname =
Chris@70 1478 case git_command_output context libname ["status", "--porcelain"] of
Chris@70 1479 ERROR e => ERROR e
Chris@70 1480 | OK "" => OK false
Chris@70 1481 | OK _ => OK true
Chris@70 1482
Chris@70 1483 (* This function updates to the latest revision on a branch rather
Chris@70 1484 than to a specific id or tag. We can't just checkout the given
Chris@70 1485 branch, as that will succeed even if the branch isn't up to
Chris@70 1486 date. We could checkout the branch and then fetch and merge,
Chris@70 1487 but it's perhaps cleaner not to maintain a local branch at all,
Chris@70 1488 but instead checkout the remote branch as a detached head. *)
Chris@70 1489
Chris@70 1490 fun update context (libname, source, branch) =
Chris@70 1491 case fetch context (libname, source) of
Chris@70 1492 ERROR e => ERROR e
Chris@70 1493 | _ =>
Chris@70 1494 case git_command context libname ["checkout", "--detach",
Chris@70 1495 remote_branch_name branch] of
Chris@70 1496 ERROR e => ERROR e
Chris@70 1497 | _ => OK ()
Chris@70 1498
Chris@70 1499 (* This function is dealing with a specific id or tag, so if we
Chris@70 1500 can successfully check it out (detached) then that's all we
Chris@70 1501 need to do, regardless of whether fetch succeeded or not. We do
Chris@70 1502 attempt the fetch first, though, purely in order to avoid ugly
Chris@70 1503 error messages in the common case where we're being asked to
Chris@70 1504 update to a new pin (from the lock file) that hasn't been
Chris@70 1505 fetched yet. *)
Chris@70 1506
Chris@70 1507 fun update_to context (libname, _, "") =
Chris@70 1508 ERROR "Non-empty id (tag or revision id) required for update_to"
Chris@70 1509 | update_to context (libname, source, id) =
Chris@70 1510 let val fetch_result = fetch context (libname, source)
Chris@70 1511 in
Chris@70 1512 case git_command context libname ["checkout", "--detach", id] of
Chris@70 1513 OK _ => OK ()
Chris@70 1514 | ERROR e =>
Chris@70 1515 case fetch_result of
Chris@70 1516 ERROR e' => ERROR e' (* this was the ur-error *)
Chris@70 1517 | _ => ERROR e
Chris@70 1518 end
Chris@70 1519
Chris@70 1520 fun copy_url_for context libname =
Chris@70 1521 OK (FileBits.file_url (FileBits.libpath context libname))
Chris@70 1522
Chris@70 1523 end
Chris@70 1524
Chris@70 1525 (* SubXml - A parser for a subset of XML
Chris@76 1526 https://bitbucket.org/cannam/sml-subxml
Chris@70 1527 Copyright 2018 Chris Cannam. BSD licence.
Chris@70 1528 *)
Chris@70 1529
Chris@70 1530 signature SUBXML = sig
Chris@70 1531
Chris@70 1532 datatype node = ELEMENT of { name : string, children : node list }
Chris@70 1533 | ATTRIBUTE of { name : string, value : string }
Chris@70 1534 | TEXT of string
Chris@70 1535 | CDATA of string
Chris@70 1536 | COMMENT of string
Chris@70 1537
Chris@70 1538 datatype document = DOCUMENT of { name : string, children : node list }
Chris@70 1539
Chris@70 1540 datatype 'a result = OK of 'a
Chris@70 1541 | ERROR of string
Chris@70 1542
Chris@70 1543 val parse : string -> document result
Chris@70 1544 val serialise : document -> string
Chris@70 1545
Chris@70 1546 end
Chris@70 1547
Chris@70 1548 structure SubXml :> SUBXML = struct
Chris@70 1549
Chris@70 1550 datatype node = ELEMENT of { name : string, children : node list }
Chris@70 1551 | ATTRIBUTE of { name : string, value : string }
Chris@70 1552 | TEXT of string
Chris@70 1553 | CDATA of string
Chris@70 1554 | COMMENT of string
Chris@70 1555
Chris@70 1556 datatype document = DOCUMENT of { name : string, children : node list }
Chris@70 1557
Chris@70 1558 datatype 'a result = OK of 'a
Chris@70 1559 | ERROR of string
Chris@70 1560
Chris@70 1561 structure T = struct
Chris@70 1562 datatype token = ANGLE_L
Chris@70 1563 | ANGLE_R
Chris@70 1564 | ANGLE_SLASH_L
Chris@70 1565 | SLASH_ANGLE_R
Chris@70 1566 | EQUAL
Chris@70 1567 | NAME of string
Chris@70 1568 | TEXT of string
Chris@70 1569 | CDATA of string
Chris@70 1570 | COMMENT of string
Chris@70 1571
Chris@70 1572 fun name t =
Chris@70 1573 case t of ANGLE_L => "<"
Chris@70 1574 | ANGLE_R => ">"
Chris@70 1575 | ANGLE_SLASH_L => "</"
Chris@70 1576 | SLASH_ANGLE_R => "/>"
Chris@70 1577 | EQUAL => "="
Chris@70 1578 | NAME s => "name \"" ^ s ^ "\""
Chris@70 1579 | TEXT s => "text"
Chris@70 1580 | CDATA _ => "CDATA section"
Chris@70 1581 | COMMENT _ => "comment"
Chris@70 1582 end
Chris@70 1583
Chris@70 1584 structure Lex :> sig
Chris@70 1585 val lex : string -> T.token list result
Chris@70 1586 end = struct
Chris@70 1587
Chris@70 1588 fun error pos text =
Chris@70 1589 ERROR (text ^ " at character position " ^ Int.toString (pos-1))
Chris@70 1590 fun tokenError pos token =
Chris@70 1591 error pos ("Unexpected token '" ^ Char.toString token ^ "'")
Chris@70 1592
Chris@70 1593 val nameEnd = explode " \t\n\r\"'</>!=?"
Chris@70 1594
Chris@70 1595 fun quoted quote pos acc cc =
Chris@70 1596 let fun quoted' pos text [] =
Chris@70 1597 error pos "Document ends during quoted string"
Chris@70 1598 | quoted' pos text (x::xs) =
Chris@70 1599 if x = quote
Chris@70 1600 then OK (rev text, xs, pos+1)
Chris@70 1601 else quoted' (pos+1) (x::text) xs
Chris@70 1602 in
Chris@70 1603 case quoted' pos [] cc of
Chris@70 1604 ERROR e => ERROR e
Chris@70 1605 | OK (text, rest, newpos) =>
Chris@70 1606 inside newpos (T.TEXT (implode text) :: acc) rest
Chris@70 1607 end
Chris@70 1608
Chris@70 1609 and name first pos acc cc =
Chris@70 1610 let fun name' pos text [] =
Chris@70 1611 error pos "Document ends during name"
Chris@70 1612 | name' pos text (x::xs) =
Chris@70 1613 if List.find (fn c => c = x) nameEnd <> NONE
Chris@70 1614 then OK (rev text, (x::xs), pos)
Chris@70 1615 else name' (pos+1) (x::text) xs
Chris@70 1616 in
Chris@70 1617 case name' (pos-1) [] (first::cc) of
Chris@70 1618 ERROR e => ERROR e
Chris@70 1619 | OK ([], [], pos) => error pos "Document ends before name"
Chris@70 1620 | OK ([], (x::xs), pos) => tokenError pos x
Chris@70 1621 | OK (text, rest, pos) =>
Chris@70 1622 inside pos (T.NAME (implode text) :: acc) rest
Chris@70 1623 end
Chris@70 1624
Chris@70 1625 and comment pos acc cc =
Chris@70 1626 let fun comment' pos text cc =
Chris@70 1627 case cc of
Chris@70 1628 #"-" :: #"-" :: #">" :: xs => OK (rev text, xs, pos+3)
Chris@70 1629 | x :: xs => comment' (pos+1) (x::text) xs
Chris@70 1630 | [] => error pos "Document ends during comment"
Chris@70 1631 in
Chris@70 1632 case comment' pos [] cc of
Chris@70 1633 ERROR e => ERROR e
Chris@70 1634 | OK (text, rest, pos) =>
Chris@70 1635 outside pos (T.COMMENT (implode text) :: acc) rest
Chris@70 1636 end
Chris@70 1637
Chris@70 1638 and instruction pos acc cc =
Chris@70 1639 case cc of
Chris@70 1640 #"?" :: #">" :: xs => outside (pos+2) acc xs
Chris@70 1641 | #">" :: _ => tokenError pos #">"
Chris@70 1642 | x :: xs => instruction (pos+1) acc xs
Chris@70 1643 | [] => error pos "Document ends during processing instruction"
Chris@70 1644
Chris@70 1645 and cdata pos acc cc =
Chris@70 1646 let fun cdata' pos text cc =
Chris@70 1647 case cc of
Chris@70 1648 #"]" :: #"]" :: #">" :: xs => OK (rev text, xs, pos+3)
Chris@70 1649 | x :: xs => cdata' (pos+1) (x::text) xs
Chris@70 1650 | [] => error pos "Document ends during CDATA section"
Chris@70 1651 in
Chris@70 1652 case cdata' pos [] cc of
Chris@70 1653 ERROR e => ERROR e
Chris@70 1654 | OK (text, rest, pos) =>
Chris@70 1655 outside pos (T.CDATA (implode text) :: acc) rest
Chris@70 1656 end
Chris@70 1657
Chris@70 1658 and doctype pos acc cc =
Chris@70 1659 case cc of
Chris@70 1660 #">" :: xs => outside (pos+1) acc xs
Chris@70 1661 | x :: xs => doctype (pos+1) acc xs
Chris@70 1662 | [] => error pos "Document ends during DOCTYPE"
Chris@70 1663
Chris@70 1664 and declaration pos acc cc =
Chris@70 1665 case cc of
Chris@70 1666 #"-" :: #"-" :: xs =>
Chris@70 1667 comment (pos+2) acc xs
Chris@70 1668 | #"[" :: #"C" :: #"D" :: #"A" :: #"T" :: #"A" :: #"[" :: xs =>
Chris@70 1669 cdata (pos+7) acc xs
Chris@70 1670 | #"D" :: #"O" :: #"C" :: #"T" :: #"Y" :: #"P" :: #"E" :: xs =>
Chris@70 1671 doctype (pos+7) acc xs
Chris@70 1672 | [] => error pos "Document ends during declaration"
Chris@70 1673 | _ => error pos "Unsupported declaration type"
Chris@70 1674
Chris@70 1675 and left pos acc cc =
Chris@70 1676 case cc of
Chris@70 1677 #"/" :: xs => inside (pos+1) (T.ANGLE_SLASH_L :: acc) xs
Chris@70 1678 | #"!" :: xs => declaration (pos+1) acc xs
Chris@70 1679 | #"?" :: xs => instruction (pos+1) acc xs
Chris@70 1680 | xs => inside pos (T.ANGLE_L :: acc) xs
Chris@70 1681
Chris@70 1682 and slash pos acc cc =
Chris@70 1683 case cc of
Chris@70 1684 #">" :: xs => outside (pos+1) (T.SLASH_ANGLE_R :: acc) xs
Chris@70 1685 | x :: _ => tokenError pos x
Chris@70 1686 | [] => error pos "Document ends before element closed"
Chris@70 1687
Chris@70 1688 and close pos acc xs = outside pos (T.ANGLE_R :: acc) xs
Chris@70 1689
Chris@70 1690 and equal pos acc xs = inside pos (T.EQUAL :: acc) xs
Chris@70 1691
Chris@70 1692 and outside pos acc [] = OK acc
Chris@70 1693 | outside pos acc cc =
Chris@70 1694 let fun textOf text = T.TEXT (implode (rev text))
Chris@70 1695 fun outside' pos [] acc [] = OK acc
Chris@70 1696 | outside' pos text acc [] = OK (textOf text :: acc)
Chris@70 1697 | outside' pos text acc (x::xs) =
Chris@70 1698 case x of
Chris@70 1699 #"<" => if text = []
Chris@70 1700 then left (pos+1) acc xs
Chris@70 1701 else left (pos+1) (textOf text :: acc) xs
Chris@70 1702 | x => outside' (pos+1) (x::text) acc xs
Chris@70 1703 in
Chris@70 1704 outside' pos [] acc cc
Chris@70 1705 end
Chris@70 1706
Chris@70 1707 and inside pos acc [] = error pos "Document ends within tag"
Chris@70 1708 | inside pos acc (#"<"::_) = tokenError pos #"<"
Chris@70 1709 | inside pos acc (x::xs) =
Chris@70 1710 (case x of
Chris@70 1711 #" " => inside | #"\t" => inside
Chris@70 1712 | #"\n" => inside | #"\r" => inside
Chris@70 1713 | #"\"" => quoted x | #"'" => quoted x
Chris@70 1714 | #"/" => slash | #">" => close | #"=" => equal
Chris@70 1715 | x => name x) (pos+1) acc xs
Chris@70 1716
Chris@70 1717 fun lex str =
Chris@70 1718 case outside 1 [] (explode str) of
Chris@70 1719 ERROR e => ERROR e
Chris@70 1720 | OK tokens => OK (rev tokens)
Chris@70 1721 end
Chris@70 1722
Chris@70 1723 structure Parse :> sig
Chris@70 1724 val parse : string -> document result
Chris@70 1725 end = struct
Chris@70 1726
Chris@70 1727 fun show [] = "end of input"
Chris@70 1728 | show (tok :: _) = T.name tok
Chris@70 1729
Chris@70 1730 fun error toks text = ERROR (text ^ " before " ^ show toks)
Chris@70 1731
Chris@70 1732 fun attribute elt name toks =
Chris@70 1733 case toks of
Chris@70 1734 T.EQUAL :: T.TEXT value :: xs =>
Chris@70 1735 namedElement {
Chris@70 1736 name = #name elt,
Chris@70 1737 children = ATTRIBUTE { name = name, value = value } ::
Chris@70 1738 #children elt
Chris@70 1739 } xs
Chris@70 1740 | T.EQUAL :: xs => error xs "Expected attribute value"
Chris@70 1741 | toks => error toks "Expected attribute assignment"
Chris@70 1742
Chris@70 1743 and content elt toks =
Chris@70 1744 case toks of
Chris@70 1745 T.ANGLE_SLASH_L :: T.NAME n :: T.ANGLE_R :: xs =>
Chris@70 1746 if n = #name elt
Chris@70 1747 then OK (elt, xs)
Chris@70 1748 else ERROR ("Closing tag </" ^ n ^ "> " ^
Chris@70 1749 "does not match opening <" ^ #name elt ^ ">")
Chris@70 1750 | T.TEXT text :: xs =>
Chris@70 1751 content {
Chris@70 1752 name = #name elt,
Chris@70 1753 children = TEXT text :: #children elt
Chris@70 1754 } xs
Chris@70 1755 | T.CDATA text :: xs =>
Chris@70 1756 content {
Chris@70 1757 name = #name elt,
Chris@70 1758 children = CDATA text :: #children elt
Chris@70 1759 } xs
Chris@70 1760 | T.COMMENT text :: xs =>
Chris@70 1761 content {
Chris@70 1762 name = #name elt,
Chris@70 1763 children = COMMENT text :: #children elt
Chris@70 1764 } xs
Chris@70 1765 | T.ANGLE_L :: xs =>
Chris@70 1766 (case element xs of
Chris@70 1767 ERROR e => ERROR e
Chris@70 1768 | OK (child, xs) =>
Chris@70 1769 content {
Chris@70 1770 name = #name elt,
Chris@70 1771 children = ELEMENT child :: #children elt
Chris@70 1772 } xs)
Chris@70 1773 | tok :: xs =>
Chris@70 1774 error xs ("Unexpected token " ^ T.name tok)
Chris@70 1775 | [] =>
Chris@70 1776 ERROR ("Document ends within element \"" ^ #name elt ^ "\"")
Chris@70 1777
Chris@70 1778 and namedElement elt toks =
Chris@70 1779 case toks of
Chris@70 1780 T.SLASH_ANGLE_R :: xs => OK (elt, xs)
Chris@70 1781 | T.NAME name :: xs => attribute elt name xs
Chris@70 1782 | T.ANGLE_R :: xs => content elt xs
Chris@70 1783 | x :: xs => error xs ("Unexpected token " ^ T.name x)
Chris@70 1784 | [] => ERROR "Document ends within opening tag"
Chris@70 1785
Chris@70 1786 and element toks =
Chris@70 1787 case toks of
Chris@70 1788 T.NAME name :: xs =>
Chris@70 1789 (case namedElement { name = name, children = [] } xs of
Chris@70 1790 ERROR e => ERROR e
Chris@70 1791 | OK ({ name, children }, xs) =>
Chris@70 1792 OK ({ name = name, children = rev children }, xs))
Chris@70 1793 | toks => error toks "Expected element name"
Chris@70 1794
Chris@70 1795 and document [] = ERROR "Empty document"
Chris@70 1796 | document (tok :: xs) =
Chris@70 1797 case tok of
Chris@70 1798 T.TEXT _ => document xs
Chris@70 1799 | T.COMMENT _ => document xs
Chris@70 1800 | T.ANGLE_L =>
Chris@70 1801 (case element xs of
Chris@70 1802 ERROR e => ERROR e
Chris@70 1803 | OK (elt, []) => OK (DOCUMENT elt)
Chris@70 1804 | OK (elt, (T.TEXT _ :: xs)) => OK (DOCUMENT elt)
Chris@70 1805 | OK (elt, xs) => error xs "Extra data after document")
Chris@70 1806 | _ => error xs ("Unexpected token " ^ T.name tok)
Chris@70 1807
Chris@70 1808 fun parse str =
Chris@70 1809 case Lex.lex str of
Chris@70 1810 ERROR e => ERROR e
Chris@70 1811 | OK tokens => document tokens
Chris@70 1812 end
Chris@70 1813
Chris@70 1814 structure Serialise :> sig
Chris@70 1815 val serialise : document -> string
Chris@70 1816 end = struct
Chris@70 1817
Chris@70 1818 fun attributes nodes =
Chris@70 1819 String.concatWith
Chris@70 1820 " "
Chris@70 1821 (map node (List.filter
Chris@70 1822 (fn ATTRIBUTE _ => true | _ => false)
Chris@70 1823 nodes))
Chris@70 1824
Chris@70 1825 and nonAttributes nodes =
Chris@70 1826 String.concat
Chris@70 1827 (map node (List.filter
Chris@70 1828 (fn ATTRIBUTE _ => false | _ => true)
Chris@70 1829 nodes))
Chris@70 1830
Chris@70 1831 and node n =
Chris@70 1832 case n of
Chris@70 1833 TEXT string =>
Chris@70 1834 string
Chris@70 1835 | CDATA string =>
Chris@70 1836 "<![CDATA[" ^ string ^ "]]>"
Chris@70 1837 | COMMENT string =>
Chris@70 1838 "<!-- " ^ string ^ "-->"
Chris@70 1839 | ATTRIBUTE { name, value } =>
Chris@70 1840 name ^ "=" ^ "\"" ^ value ^ "\"" (*!!!*)
Chris@70 1841 | ELEMENT { name, children } =>
Chris@70 1842 "<" ^ name ^
Chris@70 1843 (case (attributes children) of
Chris@70 1844 "" => ""
Chris@70 1845 | s => " " ^ s) ^
Chris@70 1846 (case (nonAttributes children) of
Chris@70 1847 "" => "/>"
Chris@70 1848 | s => ">" ^ s ^ "</" ^ name ^ ">")
Chris@70 1849
Chris@70 1850 fun serialise (DOCUMENT { name, children }) =
Chris@70 1851 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" ^
Chris@70 1852 node (ELEMENT { name = name, children = children })
Chris@70 1853 end
Chris@70 1854
Chris@70 1855 val parse = Parse.parse
Chris@70 1856 val serialise = Serialise.serialise
Chris@70 1857
Chris@70 1858 end
Chris@70 1859
Chris@70 1860
Chris@70 1861 structure SvnControl :> VCS_CONTROL = struct
Chris@70 1862
Chris@76 1863 val svn_program = "svn"
Chris@76 1864
Chris@70 1865 fun svn_command context libname args =
Chris@76 1866 FileBits.command context libname (svn_program :: args)
Chris@70 1867
Chris@70 1868 fun svn_command_output context libname args =
Chris@76 1869 FileBits.command_output context libname (svn_program :: args)
Chris@70 1870
Chris@70 1871 fun svn_command_lines context libname args =
Chris@70 1872 case svn_command_output context libname args of
Chris@70 1873 ERROR e => ERROR e
Chris@70 1874 | OK s => OK (String.tokens (fn c => c = #"\n" orelse c = #"\r") s)
Chris@70 1875
Chris@70 1876 fun split_line_pair line =
Chris@70 1877 let fun strip_leading_ws str = case explode str of
Chris@70 1878 #" "::rest => implode rest
Chris@70 1879 | _ => str
Chris@70 1880 in
Chris@70 1881 case String.tokens (fn c => c = #":") line of
Chris@70 1882 [] => ("", "")
Chris@70 1883 | first::rest =>
Chris@70 1884 (first, strip_leading_ws (String.concatWith ":" rest))
Chris@70 1885 end
Chris@70 1886
Chris@76 1887 fun is_working context =
Chris@76 1888 case svn_command_output context "" ["--version"] of
Chris@76 1889 OK "" => OK false
Chris@76 1890 | OK _ => OK true
Chris@76 1891 | ERROR e => ERROR e
Chris@76 1892
Chris@70 1893 structure X = SubXml
Chris@70 1894
Chris@70 1895 fun svn_info context libname route =
Chris@70 1896 (* SVN 1.9 has info --show-item which is just what we need,
Chris@70 1897 but at this point we still have 1.8 on the CI boxes so we
Chris@70 1898 might as well aim to support it. For that we really have to
Chris@70 1899 use the XML output format, since the default info output is
Chris@70 1900 localised. This is the only thing our mini-XML parser is
Chris@70 1901 used for though, so it would be good to trim it at some
Chris@70 1902 point *)
Chris@70 1903 let fun find elt [] = OK elt
Chris@70 1904 | find { children, ... } (first :: rest) =
Chris@70 1905 case List.find (fn (X.ELEMENT { name, ... }) => name = first
Chris@70 1906 | _ => false)
Chris@70 1907 children of
Chris@70 1908 NONE => ERROR ("No element \"" ^ first ^ "\" in SVN XML")
Chris@70 1909 | SOME (X.ELEMENT e) => find e rest
Chris@70 1910 | SOME _ => ERROR "Internal error"
Chris@70 1911 in
Chris@70 1912 case svn_command_output context libname ["info", "--xml"] of
Chris@70 1913 ERROR e => ERROR e
Chris@70 1914 | OK xml =>
Chris@70 1915 case X.parse xml of
Chris@70 1916 X.ERROR e => ERROR e
Chris@70 1917 | X.OK (X.DOCUMENT doc) => find doc route
Chris@70 1918 end
Chris@70 1919
Chris@70 1920 fun exists context libname =
Chris@70 1921 OK (OS.FileSys.isDir (FileBits.subpath context libname ".svn"))
Chris@70 1922 handle _ => OK false
Chris@70 1923
Chris@70 1924 fun remote_for context (libname, source) =
Chris@70 1925 Provider.remote_url context SVN source libname
Chris@70 1926
Chris@70 1927 (* Remote the checkout came from, not necessarily the one we want *)
Chris@70 1928 fun actual_remote_for context libname =
Chris@70 1929 case svn_info context libname ["entry", "url"] of
Chris@70 1930 ERROR e => ERROR e
Chris@70 1931 | OK { children, ... } =>
Chris@70 1932 case List.find (fn (X.TEXT _) => true | _ => false) children of
Chris@70 1933 NONE => ERROR "No content for URL in SVN info XML"
Chris@70 1934 | SOME (X.TEXT url) => OK url
Chris@70 1935 | SOME _ => ERROR "Internal error"
Chris@70 1936
Chris@70 1937 fun id_of context libname =
Chris@70 1938 case svn_info context libname ["entry"] of
Chris@70 1939 ERROR e => ERROR e
Chris@70 1940 | OK { children, ... } =>
Chris@70 1941 case List.find
Chris@70 1942 (fn (X.ATTRIBUTE { name = "revision", ... }) => true
Chris@70 1943 | _ => false)
Chris@70 1944 children of
Chris@70 1945 NONE => ERROR "No revision for entry in SVN info XML"
Chris@70 1946 | SOME (X.ATTRIBUTE { value, ... }) => OK value
Chris@70 1947 | SOME _ => ERROR "Internal error"
Chris@70 1948
Chris@70 1949 fun is_at context (libname, id_or_tag) =
Chris@70 1950 case id_of context libname of
Chris@70 1951 ERROR e => ERROR e
Chris@70 1952 | OK id => OK (id = id_or_tag)
Chris@70 1953
Chris@70 1954 fun is_on_branch context (libname, b) =
Chris@70 1955 OK (b = DEFAULT_BRANCH)
Chris@70 1956
Chris@70 1957 fun check_remote context (libname, source) =
Chris@70 1958 case (remote_for context (libname, source),
Chris@70 1959 actual_remote_for context libname) of
Chris@70 1960 (_, ERROR e) => ERROR e
Chris@70 1961 | (url, OK actual) =>
Chris@70 1962 if actual = url
Chris@70 1963 then OK ()
Chris@70 1964 else svn_command context libname ["relocate", url]
Chris@70 1965
Chris@70 1966 fun is_newest context (libname, source, branch) =
Chris@70 1967 case check_remote context (libname, source) of
Chris@70 1968 ERROR e => ERROR e
Chris@70 1969 | OK () =>
Chris@70 1970 case svn_command_lines context libname
Chris@70 1971 ["status", "--show-updates"] of
Chris@70 1972 ERROR e => ERROR e
Chris@70 1973 | OK lines =>
Chris@70 1974 case rev lines of
Chris@70 1975 [] => ERROR "No result returned for server status"
Chris@70 1976 | last_line::_ =>
Chris@70 1977 case rev (String.tokens (fn c => c = #" ") last_line) of
Chris@70 1978 [] => ERROR "No revision field found in server status"
Chris@70 1979 | server_id::_ => is_at context (libname, server_id)
Chris@70 1980
Chris@70 1981 fun is_newest_locally context (libname, branch) =
Chris@70 1982 OK true (* no local history *)
Chris@70 1983
Chris@70 1984 fun is_modified_locally context libname =
Chris@70 1985 case svn_command_output context libname ["status"] of
Chris@70 1986 ERROR e => ERROR e
Chris@70 1987 | OK "" => OK false
Chris@70 1988 | OK _ => OK true
Chris@70 1989
Chris@70 1990 fun checkout context (libname, source, branch) =
Chris@70 1991 let val url = remote_for context (libname, source)
Chris@70 1992 val path = FileBits.libpath context libname
Chris@70 1993 in
Chris@70 1994 if FileBits.nonempty_dir_exists path
Chris@70 1995 then (* Surprisingly, SVN itself has no problem with
Chris@70 1996 this. But for consistency with other VCSes we
Chris@70 1997 don't allow it *)
Chris@70 1998 ERROR ("Refusing checkout to nonempty dir \"" ^ path ^ "\"")
Chris@70 1999 else
Chris@70 2000 (* make the lib dir rather than just the ext dir, since
Chris@70 2001 the lib dir might be nested and svn will happily check
Chris@70 2002 out into an existing empty dir anyway *)
Chris@70 2003 case FileBits.mkpath (FileBits.libpath context libname) of
Chris@70 2004 ERROR e => ERROR e
Chris@70 2005 | _ => svn_command context "" ["checkout", url, libname]
Chris@70 2006 end
Chris@70 2007
Chris@70 2008 fun update context (libname, source, branch) =
Chris@70 2009 case check_remote context (libname, source) of
Chris@70 2010 ERROR e => ERROR e
Chris@70 2011 | OK () =>
Chris@70 2012 case svn_command context libname
Chris@70 2013 ["update", "--accept", "postpone"] of
Chris@70 2014 ERROR e => ERROR e
Chris@70 2015 | _ => OK ()
Chris@70 2016
Chris@70 2017 fun update_to context (libname, _, "") =
Chris@70 2018 ERROR "Non-empty id (tag or revision id) required for update_to"
Chris@70 2019 | update_to context (libname, source, id) =
Chris@70 2020 case check_remote context (libname, source) of
Chris@70 2021 ERROR e => ERROR e
Chris@70 2022 | OK () =>
Chris@70 2023 case svn_command context libname
Chris@70 2024 ["update", "-r", id, "--accept", "postpone"] of
Chris@70 2025 ERROR e => ERROR e
Chris@70 2026 | OK _ => OK ()
Chris@70 2027
Chris@70 2028 fun copy_url_for context libname =
Chris@70 2029 actual_remote_for context libname
Chris@70 2030
Chris@70 2031 end
Chris@70 2032
Chris@70 2033 structure AnyLibControl :> LIB_CONTROL = struct
Chris@70 2034
Chris@70 2035 structure H = LibControlFn(HgControl)
Chris@70 2036 structure G = LibControlFn(GitControl)
Chris@70 2037 structure S = LibControlFn(SvnControl)
Chris@70 2038
Chris@70 2039 fun review context (spec as { vcs, ... } : libspec) =
Chris@70 2040 (fn HG => H.review | GIT => G.review | SVN => S.review) vcs context spec
Chris@70 2041
Chris@70 2042 fun status context (spec as { vcs, ... } : libspec) =
Chris@70 2043 (fn HG => H.status | GIT => G.status | SVN => S.status) vcs context spec
Chris@70 2044
Chris@70 2045 fun update context (spec as { vcs, ... } : libspec) =
Chris@70 2046 (fn HG => H.update | GIT => G.update | SVN => S.update) vcs context spec
Chris@70 2047
Chris@70 2048 fun id_of context (spec as { vcs, ... } : libspec) =
Chris@70 2049 (fn HG => H.id_of | GIT => G.id_of | SVN => S.id_of) vcs context spec
Chris@70 2050
Chris@76 2051 fun is_working context vcs =
Chris@76 2052 (fn HG => H.is_working | GIT => G.is_working | SVN => S.is_working)
Chris@76 2053 vcs context vcs
Chris@76 2054
Chris@70 2055 end
Chris@70 2056
Chris@70 2057
Chris@70 2058 type exclusions = string list
Chris@70 2059
Chris@70 2060 structure Archive :> sig
Chris@70 2061
Chris@70 2062 val archive : string * exclusions -> project -> OS.Process.status
Chris@70 2063
Chris@70 2064 end = struct
Chris@70 2065
Chris@70 2066 (* The idea of "archive" is to replace hg/git archive, which won't
Chris@76 2067 include files, like the Repoint-introduced external libraries,
Chris@70 2068 that are not under version control with the main repo.
Chris@70 2069
Chris@70 2070 The process goes like this:
Chris@70 2071
Chris@70 2072 - Make sure we have a target filename from the user, and take
Chris@70 2073 its basename as our archive directory name
Chris@70 2074
Chris@70 2075 - Make an "archive root" subdir of the project repo, named
Chris@76 2076 typically .repoint-archive
Chris@70 2077
Chris@70 2078 - Identify the VCS used for the project repo. Note that any
Chris@70 2079 explicit references to VCS type in this structure are to
Chris@76 2080 the VCS used for the project (something Repoint doesn't
Chris@70 2081 otherwise care about), not for an individual library
Chris@70 2082
Chris@76 2083 - Synthesise a Repoint project with the archive root as its
Chris@70 2084 root path, "." as its extdir, with one library whose
Chris@70 2085 name is the user-supplied basename and whose explicit
Chris@70 2086 source URL is the original project root; update that
Chris@70 2087 project -- thus cloning the original project to a subdir
Chris@70 2088 of the archive root
Chris@70 2089
Chris@76 2090 - Synthesise a Repoint project identical to the original one for
Chris@70 2091 this project, but with the newly-cloned copy as its root
Chris@70 2092 path; update that project -- thus checking out clean copies
Chris@70 2093 of the external library dirs
Chris@70 2094
Chris@70 2095 - Call out to an archive program to archive up the new copy,
Chris@70 2096 running e.g.
Chris@70 2097 tar cvzf project-release.tar.gz \
Chris@70 2098 --exclude=.hg --exclude=.git project-release
Chris@70 2099 in the archive root dir
Chris@70 2100
Chris@76 2101 - (We also omit the repoint-project.json file and any trace of
Chris@76 2102 Repoint. It can't properly be run in a directory where the
Chris@70 2103 external project folders already exist but their repo history
Chris@76 2104 does not. End users shouldn't get to see Repoint)
Chris@70 2105
Chris@70 2106 - Clean up by deleting the new copy
Chris@70 2107 *)
Chris@70 2108
Chris@70 2109 fun project_vcs_id_and_url dir =
Chris@70 2110 let val context = {
Chris@70 2111 rootpath = dir,
Chris@70 2112 extdir = ".",
Chris@70 2113 providers = [],
Chris@70 2114 accounts = []
Chris@70 2115 }
Chris@70 2116 val vcs_maybe =
Chris@70 2117 case [HgControl.exists context ".",
Chris@70 2118 GitControl.exists context ".",
Chris@70 2119 SvnControl.exists context "."] of
Chris@70 2120 [OK true, OK false, OK false] => OK HG
Chris@70 2121 | [OK false, OK true, OK false] => OK GIT
Chris@70 2122 | [OK false, OK false, OK true] => OK SVN
Chris@70 2123 | _ => ERROR ("Unable to identify VCS for directory " ^ dir)
Chris@70 2124 in
Chris@70 2125 case vcs_maybe of
Chris@70 2126 ERROR e => ERROR e
Chris@70 2127 | OK vcs =>
Chris@70 2128 case (fn HG => HgControl.id_of
Chris@70 2129 | GIT => GitControl.id_of
Chris@70 2130 | SVN => SvnControl.id_of)
Chris@70 2131 vcs context "." of
Chris@70 2132 ERROR e => ERROR ("Unable to find id of project repo: " ^ e)
Chris@70 2133 | OK id =>
Chris@70 2134 case (fn HG => HgControl.copy_url_for
Chris@70 2135 | GIT => GitControl.copy_url_for
Chris@70 2136 | SVN => SvnControl.copy_url_for)
Chris@70 2137 vcs context "." of
Chris@70 2138 ERROR e => ERROR ("Unable to find URL of project repo: "
Chris@70 2139 ^ e)
Chris@70 2140 | OK url => OK (vcs, id, url)
Chris@70 2141 end
Chris@70 2142
Chris@70 2143 fun make_archive_root (context : context) =
Chris@70 2144 let val path = OS.Path.joinDirFile {
Chris@70 2145 dir = #rootpath context,
Chris@76 2146 file = RepointFilenames.archive_dir
Chris@70 2147 }
Chris@70 2148 in
Chris@70 2149 case FileBits.mkpath path of
Chris@70 2150 ERROR e => raise Fail ("Failed to create archive directory \""
Chris@70 2151 ^ path ^ "\": " ^ e)
Chris@70 2152 | OK () => path
Chris@70 2153 end
Chris@70 2154
Chris@70 2155 fun archive_path archive_dir target_name =
Chris@70 2156 OS.Path.joinDirFile {
Chris@70 2157 dir = archive_dir,
Chris@70 2158 file = target_name
Chris@70 2159 }
Chris@70 2160
Chris@70 2161 fun check_nonexistent path =
Chris@70 2162 case SOME (OS.FileSys.fileSize path) handle OS.SysErr _ => NONE of
Chris@70 2163 NONE => ()
Chris@70 2164 | _ => raise Fail ("Path " ^ path ^ " exists, not overwriting")
Chris@70 2165
Chris@70 2166 fun make_archive_copy target_name (vcs, project_id, source_url)
Chris@70 2167 ({ context, ... } : project) =
Chris@70 2168 let val archive_root = make_archive_root context
Chris@70 2169 val synthetic_context = {
Chris@70 2170 rootpath = archive_root,
Chris@70 2171 extdir = ".",
Chris@70 2172 providers = [],
Chris@70 2173 accounts = []
Chris@70 2174 }
Chris@70 2175 val synthetic_library = {
Chris@70 2176 libname = target_name,
Chris@70 2177 vcs = vcs,
Chris@70 2178 source = URL_SOURCE source_url,
Chris@70 2179 branch = DEFAULT_BRANCH, (* overridden by pinned id below *)
Chris@70 2180 project_pin = PINNED project_id,
Chris@70 2181 lock_pin = PINNED project_id
Chris@70 2182 }
Chris@70 2183 val path = archive_path archive_root target_name
Chris@70 2184 val _ = print ("Cloning original project to " ^ path
Chris@70 2185 ^ " at revision " ^ project_id ^ "...\n");
Chris@70 2186 val _ = check_nonexistent path
Chris@70 2187 in
Chris@70 2188 case AnyLibControl.update synthetic_context synthetic_library of
Chris@70 2189 ERROR e => ERROR ("Failed to clone original project to "
Chris@70 2190 ^ path ^ ": " ^ e)
Chris@70 2191 | OK _ => OK archive_root
Chris@70 2192 end
Chris@70 2193
Chris@70 2194 fun update_archive archive_root target_name
Chris@70 2195 (project as { context, ... } : project) =
Chris@70 2196 let val synthetic_context = {
Chris@70 2197 rootpath = archive_path archive_root target_name,
Chris@70 2198 extdir = #extdir context,
Chris@70 2199 providers = #providers context,
Chris@70 2200 accounts = #accounts context
Chris@70 2201 }
Chris@70 2202 in
Chris@70 2203 foldl (fn (lib, acc) =>
Chris@70 2204 case acc of
Chris@70 2205 ERROR e => ERROR e
Chris@70 2206 | OK () => AnyLibControl.update synthetic_context lib)
Chris@70 2207 (OK ())
Chris@70 2208 (#libs project)
Chris@70 2209 end
Chris@70 2210
Chris@70 2211 datatype packer = TAR
Chris@70 2212 | TAR_GZ
Chris@70 2213 | TAR_BZ2
Chris@70 2214 | TAR_XZ
Chris@70 2215 (* could add other packers, e.g. zip, if we knew how to
Chris@70 2216 handle the file omissions etc properly in pack_archive *)
Chris@70 2217
Chris@70 2218 fun packer_and_basename path =
Chris@70 2219 let val extensions = [ (".tar", TAR),
Chris@70 2220 (".tar.gz", TAR_GZ),
Chris@70 2221 (".tar.bz2", TAR_BZ2),
Chris@70 2222 (".tar.xz", TAR_XZ)]
Chris@70 2223 val filename = OS.Path.file path
Chris@70 2224 in
Chris@70 2225 foldl (fn ((ext, packer), acc) =>
Chris@70 2226 if String.isSuffix ext filename
Chris@70 2227 then SOME (packer,
Chris@70 2228 String.substring (filename, 0,
Chris@70 2229 String.size filename -
Chris@70 2230 String.size ext))
Chris@70 2231 else acc)
Chris@70 2232 NONE
Chris@70 2233 extensions
Chris@70 2234 end
Chris@70 2235
Chris@70 2236 fun pack_archive archive_root target_name target_path packer exclusions =
Chris@70 2237 case FileBits.command {
Chris@70 2238 rootpath = archive_root,
Chris@70 2239 extdir = ".",
Chris@70 2240 providers = [],
Chris@70 2241 accounts = []
Chris@70 2242 } "" ([
Chris@70 2243 "tar",
Chris@70 2244 case packer of
Chris@70 2245 TAR => "cf"
Chris@70 2246 | TAR_GZ => "czf"
Chris@70 2247 | TAR_BZ2 => "cjf"
Chris@70 2248 | TAR_XZ => "cJf",
Chris@70 2249 target_path,
Chris@70 2250 "--exclude=.hg",
Chris@70 2251 "--exclude=.git",
Chris@70 2252 "--exclude=.svn",
Chris@76 2253 "--exclude=repoint",
Chris@76 2254 "--exclude=repoint.sml",
Chris@76 2255 "--exclude=repoint.ps1",
Chris@76 2256 "--exclude=repoint.bat",
Chris@76 2257 "--exclude=repoint-project.json",
Chris@76 2258 "--exclude=repoint-lock.json"
Chris@70 2259 ] @ (map (fn e => "--exclude=" ^ e) exclusions) @
Chris@70 2260 [ target_name ])
Chris@70 2261 of
Chris@70 2262 ERROR e => ERROR e
Chris@70 2263 | OK _ => FileBits.rmpath (archive_path archive_root target_name)
Chris@70 2264
Chris@70 2265 fun archive (target_path, exclusions) (project : project) =
Chris@70 2266 let val _ = check_nonexistent target_path
Chris@70 2267 val (packer, name) =
Chris@70 2268 case packer_and_basename target_path of
Chris@70 2269 NONE => raise Fail ("Unsupported archive file extension in "
Chris@70 2270 ^ target_path)
Chris@70 2271 | SOME pn => pn
Chris@70 2272 val details =
Chris@70 2273 case project_vcs_id_and_url (#rootpath (#context project)) of
Chris@70 2274 ERROR e => raise Fail e
Chris@70 2275 | OK details => details
Chris@70 2276 val archive_root =
Chris@70 2277 case make_archive_copy name details project of
Chris@70 2278 ERROR e => raise Fail e
Chris@70 2279 | OK archive_root => archive_root
Chris@70 2280 val outcome =
Chris@70 2281 case update_archive archive_root name project of
Chris@70 2282 ERROR e => ERROR e
Chris@70 2283 | OK _ =>
Chris@70 2284 case pack_archive archive_root name
Chris@70 2285 target_path packer exclusions of
Chris@70 2286 ERROR e => ERROR e
Chris@70 2287 | OK _ => OK ()
Chris@70 2288 in
Chris@70 2289 case outcome of
Chris@70 2290 ERROR e => raise Fail e
Chris@70 2291 | OK () => OS.Process.success
Chris@70 2292 end
Chris@70 2293
Chris@70 2294 end
Chris@70 2295
Chris@70 2296 val libobjname = "libraries"
Chris@70 2297
Chris@70 2298 fun load_libspec spec_json lock_json libname : libspec =
Chris@70 2299 let open JsonBits
Chris@70 2300 val libobj = lookup_mandatory spec_json [libobjname, libname]
Chris@70 2301 val vcs = lookup_mandatory_string libobj ["vcs"]
Chris@70 2302 val retrieve = lookup_optional_string libobj
Chris@70 2303 val service = retrieve ["service"]
Chris@70 2304 val owner = retrieve ["owner"]
Chris@70 2305 val repo = retrieve ["repository"]
Chris@70 2306 val url = retrieve ["url"]
Chris@70 2307 val branch = retrieve ["branch"]
Chris@70 2308 val project_pin = case retrieve ["pin"] of
Chris@70 2309 NONE => UNPINNED
Chris@70 2310 | SOME p => PINNED p
Chris@70 2311 val lock_pin = case lookup_optional lock_json [libobjname, libname] of
Chris@70 2312 NONE => UNPINNED
Chris@70 2313 | SOME ll => case lookup_optional_string ll ["pin"] of
Chris@70 2314 SOME p => PINNED p
Chris@70 2315 | NONE => UNPINNED
Chris@70 2316 in
Chris@70 2317 {
Chris@70 2318 libname = libname,
Chris@70 2319 vcs = case vcs of
Chris@70 2320 "hg" => HG
Chris@70 2321 | "git" => GIT
Chris@70 2322 | "svn" => SVN
Chris@70 2323 | other => raise Fail ("Unknown version-control system \"" ^
Chris@70 2324 other ^ "\""),
Chris@70 2325 source = case (url, service, owner, repo) of
Chris@70 2326 (SOME u, NONE, _, _) => URL_SOURCE u
Chris@70 2327 | (NONE, SOME ss, owner, repo) =>
Chris@70 2328 SERVICE_SOURCE { service = ss, owner = owner, repo = repo }
Chris@70 2329 | _ => raise Fail ("Must have exactly one of service " ^
Chris@70 2330 "or url string"),
Chris@70 2331 project_pin = project_pin,
Chris@70 2332 lock_pin = lock_pin,
Chris@70 2333 branch = case branch of
Chris@70 2334 NONE => DEFAULT_BRANCH
Chris@70 2335 | SOME b =>
Chris@70 2336 case vcs of
Chris@70 2337 "svn" => raise Fail ("Branches not supported for " ^
Chris@70 2338 "svn repositories; change " ^
Chris@70 2339 "URL instead")
Chris@70 2340 | _ => BRANCH b
Chris@70 2341 }
Chris@70 2342 end
Chris@70 2343
Chris@70 2344 fun load_userconfig () : userconfig =
Chris@70 2345 let val home = FileBits.homedir ()
Chris@70 2346 val conf_json =
Chris@70 2347 JsonBits.load_json_from
Chris@70 2348 (OS.Path.joinDirFile {
Chris@70 2349 dir = home,
Chris@76 2350 file = RepointFilenames.user_config_file })
Chris@70 2351 handle IO.Io _ => Json.OBJECT []
Chris@70 2352 in
Chris@70 2353 {
Chris@70 2354 accounts = case JsonBits.lookup_optional conf_json ["accounts"] of
Chris@70 2355 NONE => []
Chris@70 2356 | SOME (Json.OBJECT aa) =>
Chris@70 2357 map (fn (k, (Json.STRING v)) =>
Chris@70 2358 { service = k, login = v }
Chris@70 2359 | _ => raise Fail
Chris@70 2360 "String expected for account name")
Chris@70 2361 aa
Chris@70 2362 | _ => raise Fail "Array expected for accounts",
Chris@70 2363 providers = Provider.load_providers conf_json
Chris@70 2364 }
Chris@70 2365 end
Chris@70 2366
Chris@70 2367 datatype pintype =
Chris@70 2368 NO_LOCKFILE |
Chris@70 2369 USE_LOCKFILE
Chris@70 2370
Chris@70 2371 fun load_project (userconfig : userconfig) rootpath pintype : project =
Chris@70 2372 let val spec_file = FileBits.project_spec_path rootpath
Chris@70 2373 val lock_file = FileBits.project_lock_path rootpath
Chris@70 2374 val _ = if OS.FileSys.access (spec_file, [OS.FileSys.A_READ])
Chris@70 2375 handle OS.SysErr _ => false
Chris@70 2376 then ()
Chris@70 2377 else raise Fail ("Failed to open project spec file " ^
Chris@76 2378 (RepointFilenames.project_file) ^ " in " ^
Chris@70 2379 rootpath ^
Chris@70 2380 ".\nPlease ensure the spec file is in the " ^
Chris@70 2381 "project root and run this from there.")
Chris@70 2382 val spec_json = JsonBits.load_json_from spec_file
Chris@70 2383 val lock_json = if pintype = USE_LOCKFILE
Chris@70 2384 then JsonBits.load_json_from lock_file
Chris@70 2385 handle IO.Io _ => Json.OBJECT []
Chris@70 2386 else Json.OBJECT []
Chris@70 2387 val extdir = JsonBits.lookup_mandatory_string spec_json
Chris@70 2388 ["config", "extdir"]
Chris@70 2389 val spec_libs = JsonBits.lookup_optional spec_json [libobjname]
Chris@70 2390 val lock_libs = JsonBits.lookup_optional lock_json [libobjname]
Chris@70 2391 val providers = Provider.load_more_providers
Chris@70 2392 (#providers userconfig) spec_json
Chris@70 2393 val libnames = case spec_libs of
Chris@70 2394 NONE => []
Chris@70 2395 | SOME (Json.OBJECT ll) => map (fn (k, v) => k) ll
Chris@70 2396 | _ => raise Fail "Object expected for libs"
Chris@70 2397 in
Chris@70 2398 {
Chris@70 2399 context = {
Chris@70 2400 rootpath = rootpath,
Chris@70 2401 extdir = extdir,
Chris@70 2402 providers = providers,
Chris@70 2403 accounts = #accounts userconfig
Chris@70 2404 },
Chris@70 2405 libs = map (load_libspec spec_json lock_json) libnames
Chris@70 2406 }
Chris@70 2407 end
Chris@70 2408
Chris@70 2409 fun save_lock_file rootpath locks =
Chris@70 2410 let val lock_file = FileBits.project_lock_path rootpath
Chris@70 2411 open Json
Chris@70 2412 val lock_json =
Chris@70 2413 OBJECT [
Chris@70 2414 (libobjname,
Chris@70 2415 OBJECT (map (fn { libname, id_or_tag } =>
Chris@70 2416 (libname,
Chris@70 2417 OBJECT [ ("pin", STRING id_or_tag) ]))
Chris@70 2418 locks))
Chris@70 2419 ]
Chris@70 2420 in
Chris@70 2421 JsonBits.save_json_to lock_file lock_json
Chris@70 2422 end
Chris@70 2423
Chris@70 2424 fun pad_to n str =
Chris@70 2425 if n <= String.size str then str
Chris@70 2426 else pad_to n (str ^ " ")
Chris@70 2427
Chris@70 2428 fun hline_to 0 = ""
Chris@70 2429 | hline_to n = "-" ^ hline_to (n-1)
Chris@70 2430
Chris@70 2431 val libname_width = 28
Chris@70 2432 val libstate_width = 11
Chris@70 2433 val localstate_width = 17
Chris@70 2434 val notes_width = 5
Chris@70 2435 val divider = " | "
Chris@70 2436 val clear_line = "\r" ^ pad_to 80 "";
Chris@70 2437
Chris@70 2438 fun print_status_header () =
Chris@70 2439 print (clear_line ^ "\n " ^
Chris@70 2440 pad_to libname_width "Library" ^ divider ^
Chris@70 2441 pad_to libstate_width "State" ^ divider ^
Chris@70 2442 pad_to localstate_width "Local" ^ divider ^
Chris@70 2443 "Notes" ^ "\n " ^
Chris@70 2444 hline_to libname_width ^ "-+-" ^
Chris@70 2445 hline_to libstate_width ^ "-+-" ^
Chris@70 2446 hline_to localstate_width ^ "-+-" ^
Chris@70 2447 hline_to notes_width ^ "\n")
Chris@70 2448
Chris@70 2449 fun print_outcome_header () =
Chris@70 2450 print (clear_line ^ "\n " ^
Chris@70 2451 pad_to libname_width "Library" ^ divider ^
Chris@70 2452 pad_to libstate_width "Outcome" ^ divider ^
Chris@70 2453 "Notes" ^ "\n " ^
Chris@70 2454 hline_to libname_width ^ "-+-" ^
Chris@70 2455 hline_to libstate_width ^ "-+-" ^
Chris@70 2456 hline_to notes_width ^ "\n")
Chris@70 2457
Chris@76 2458 fun print_status with_network (lib : libspec, status) =
Chris@70 2459 let val libstate_str =
Chris@70 2460 case status of
Chris@70 2461 OK (ABSENT, _) => "Absent"
Chris@70 2462 | OK (CORRECT, _) => if with_network then "Correct" else "Present"
Chris@70 2463 | OK (SUPERSEDED, _) => "Superseded"
Chris@70 2464 | OK (WRONG, _) => "Wrong"
Chris@70 2465 | ERROR _ => "Error"
Chris@70 2466 val localstate_str =
Chris@70 2467 case status of
Chris@70 2468 OK (_, MODIFIED) => "Modified"
Chris@70 2469 | OK (_, LOCK_MISMATCHED) => "Differs from Lock"
Chris@70 2470 | OK (_, CLEAN) => "Clean"
Chris@70 2471 | ERROR _ => ""
Chris@70 2472 val error_str =
Chris@70 2473 case status of
Chris@70 2474 ERROR e => e
Chris@70 2475 | _ => ""
Chris@70 2476 in
Chris@70 2477 print (" " ^
Chris@76 2478 pad_to libname_width (#libname lib) ^ divider ^
Chris@70 2479 pad_to libstate_width libstate_str ^ divider ^
Chris@70 2480 pad_to localstate_width localstate_str ^ divider ^
Chris@70 2481 error_str ^ "\n")
Chris@70 2482 end
Chris@70 2483
Chris@76 2484 fun print_update_outcome (lib : libspec, outcome) =
Chris@70 2485 let val outcome_str =
Chris@70 2486 case outcome of
Chris@70 2487 OK id => "Ok"
Chris@70 2488 | ERROR e => "Failed"
Chris@70 2489 val error_str =
Chris@70 2490 case outcome of
Chris@70 2491 ERROR e => e
Chris@70 2492 | _ => ""
Chris@70 2493 in
Chris@70 2494 print (" " ^
Chris@76 2495 pad_to libname_width (#libname lib) ^ divider ^
Chris@70 2496 pad_to libstate_width outcome_str ^ divider ^
Chris@70 2497 error_str ^ "\n")
Chris@70 2498 end
Chris@70 2499
Chris@76 2500 fun vcs_name HG = ("Mercurial", "hg")
Chris@76 2501 | vcs_name GIT = ("Git", "git")
Chris@76 2502 | vcs_name SVN = ("Subversion", "svn")
Chris@76 2503
Chris@76 2504 fun print_problem_summary context lines =
Chris@76 2505 let val failed_vcs =
Chris@76 2506 foldl (fn (({ vcs, ... } : libspec, ERROR _), acc) => vcs::acc
Chris@76 2507 | (_, acc) => acc) [] lines
Chris@76 2508 fun report_nonworking vcs error =
Chris@76 2509 print ((if error = "" then "" else error ^ "\n\n") ^
Chris@76 2510 "Error: The project uses the " ^ (#1 (vcs_name vcs)) ^
Chris@76 2511 " version control system, but its\n" ^
Chris@76 2512 "executable program (" ^ (#2 (vcs_name vcs)) ^
Chris@76 2513 ") does not appear to be installed in the program path\n\n")
Chris@76 2514 fun check_working [] checked = ()
Chris@76 2515 | check_working (vcs::rest) checked =
Chris@76 2516 if List.exists (fn v => vcs = v) checked
Chris@76 2517 then check_working rest checked
Chris@76 2518 else
Chris@76 2519 case AnyLibControl.is_working context vcs of
Chris@76 2520 OK true => check_working rest checked
Chris@76 2521 | OK false => (report_nonworking vcs "";
Chris@76 2522 check_working rest (vcs::checked))
Chris@76 2523 | ERROR e => (report_nonworking vcs e;
Chris@76 2524 check_working rest (vcs::checked))
Chris@76 2525 in
Chris@76 2526 print "\nError: Some operations failed\n\n";
Chris@76 2527 check_working failed_vcs []
Chris@76 2528 end
Chris@76 2529
Chris@76 2530 fun act_and_print action print_header print_line context (libs : libspec list) =
Chris@76 2531 let val lines = map (fn lib => (lib, action lib)) libs
Chris@76 2532 val imperfect = List.exists (fn (_, ERROR _) => true | _ => false) lines
Chris@70 2533 val _ = print_header ()
Chris@70 2534 in
Chris@70 2535 app print_line lines;
Chris@76 2536 if imperfect then print_problem_summary context lines else ();
Chris@70 2537 lines
Chris@70 2538 end
Chris@70 2539
Chris@70 2540 fun return_code_for outcomes =
Chris@70 2541 foldl (fn ((_, result), acc) =>
Chris@70 2542 case result of
Chris@70 2543 ERROR _ => OS.Process.failure
Chris@70 2544 | _ => acc)
Chris@70 2545 OS.Process.success
Chris@70 2546 outcomes
Chris@70 2547
Chris@70 2548 fun status_of_project ({ context, libs } : project) =
Chris@70 2549 return_code_for (act_and_print (AnyLibControl.status context)
Chris@70 2550 print_status_header (print_status false)
Chris@76 2551 context libs)
Chris@70 2552
Chris@70 2553 fun review_project ({ context, libs } : project) =
Chris@70 2554 return_code_for (act_and_print (AnyLibControl.review context)
Chris@70 2555 print_status_header (print_status true)
Chris@76 2556 context libs)
Chris@70 2557
Chris@70 2558 fun lock_project ({ context, libs } : project) =
Chris@70 2559 let val _ = if FileBits.verbose ()
Chris@70 2560 then print ("Scanning IDs for lock file...\n")
Chris@70 2561 else ()
Chris@76 2562 val outcomes = map (fn lib => (lib, AnyLibControl.id_of context lib))
Chris@70 2563 libs
Chris@70 2564 val locks =
Chris@70 2565 List.concat
Chris@76 2566 (map (fn (lib : libspec, result) =>
Chris@70 2567 case result of
Chris@70 2568 ERROR _ => []
Chris@76 2569 | OK id => [{ libname = #libname lib,
Chris@76 2570 id_or_tag = id }])
Chris@70 2571 outcomes)
Chris@70 2572 val return_code = return_code_for outcomes
Chris@70 2573 val _ = print clear_line
Chris@70 2574 in
Chris@70 2575 if OS.Process.isSuccess return_code
Chris@70 2576 then save_lock_file (#rootpath context) locks
Chris@70 2577 else ();
Chris@70 2578 return_code
Chris@70 2579 end
Chris@70 2580
Chris@70 2581 fun update_project (project as { context, libs }) =
Chris@70 2582 let val outcomes = act_and_print
Chris@70 2583 (AnyLibControl.update context)
Chris@76 2584 print_outcome_header print_update_outcome
Chris@76 2585 context libs
Chris@70 2586 val _ = if List.exists (fn (_, OK _) => true | _ => false) outcomes
Chris@70 2587 then lock_project project
Chris@70 2588 else OS.Process.success
Chris@70 2589 in
Chris@70 2590 return_code_for outcomes
Chris@70 2591 end
Chris@70 2592
Chris@70 2593 fun load_local_project pintype =
Chris@70 2594 let val userconfig = load_userconfig ()
Chris@70 2595 val rootpath = OS.FileSys.getDir ()
Chris@70 2596 in
Chris@70 2597 load_project userconfig rootpath pintype
Chris@70 2598 end
Chris@70 2599
Chris@70 2600 fun with_local_project pintype f =
Chris@76 2601 let open OS.Process
Chris@76 2602 val return_code =
Chris@76 2603 f (load_local_project pintype)
Chris@76 2604 handle Fail msg =>
Chris@76 2605 failure before print ("Error: " ^ msg)
Chris@76 2606 | JsonBits.Config msg =>
Chris@76 2607 failure before print ("Error in configuration: " ^ msg)
Chris@76 2608 | e =>
Chris@76 2609 failure before print ("Error: " ^ exnMessage e)
Chris@70 2610 val _ = print "\n";
Chris@70 2611 in
Chris@70 2612 return_code
Chris@70 2613 end
Chris@70 2614
Chris@70 2615 fun review () = with_local_project USE_LOCKFILE review_project
Chris@70 2616 fun status () = with_local_project USE_LOCKFILE status_of_project
Chris@70 2617 fun update () = with_local_project NO_LOCKFILE update_project
Chris@70 2618 fun lock () = with_local_project NO_LOCKFILE lock_project
Chris@70 2619 fun install () = with_local_project USE_LOCKFILE update_project
Chris@70 2620
Chris@70 2621 fun version () =
Chris@76 2622 (print ("v" ^ repoint_version ^ "\n");
Chris@70 2623 OS.Process.success)
Chris@70 2624
Chris@70 2625 fun usage () =
Chris@76 2626 (print "\nRepoint ";
Chris@70 2627 version ();
Chris@70 2628 print ("\nA simple manager for third-party source code dependencies.\n\n"
Chris@70 2629 ^ "Usage:\n\n"
Chris@76 2630 ^ " repoint <command>\n\n"
Chris@70 2631 ^ "where <command> is one of:\n\n"
Chris@70 2632 ^ " status print quick report on local status only, without using network\n"
Chris@70 2633 ^ " review check configured libraries against their providers, and report\n"
Chris@70 2634 ^ " install update configured libraries according to project specs and lock file\n"
Chris@70 2635 ^ " update update configured libraries and lock file according to project specs\n"
Chris@70 2636 ^ " lock update lock file to match local library status\n"
Chris@70 2637 ^ " archive pack up project and all libraries into an archive file\n"
Chris@76 2638 ^ " (invoke as 'repoint archive target-file.tar.gz')\n"
Chris@76 2639 ^ " version print the Repoint version number and exit\n\n");
Chris@70 2640 OS.Process.failure)
Chris@70 2641
Chris@70 2642 fun archive target args =
Chris@70 2643 case args of
Chris@70 2644 [] =>
Chris@70 2645 with_local_project USE_LOCKFILE (Archive.archive (target, []))
Chris@70 2646 | "--exclude"::xs =>
Chris@70 2647 with_local_project USE_LOCKFILE (Archive.archive (target, xs))
Chris@70 2648 | _ => usage ()
Chris@70 2649
Chris@76 2650 fun repoint args =
Chris@70 2651 let val return_code =
Chris@70 2652 case args of
Chris@70 2653 ["review"] => review ()
Chris@70 2654 | ["status"] => status ()
Chris@70 2655 | ["install"] => install ()
Chris@70 2656 | ["update"] => update ()
Chris@70 2657 | ["lock"] => lock ()
Chris@70 2658 | ["version"] => version ()
Chris@70 2659 | "archive"::target::args => archive target args
Chris@76 2660 | arg::_ => (print ("Error: unknown argument \"" ^ arg ^ "\"\n");
Chris@76 2661 usage ())
Chris@70 2662 | _ => usage ()
Chris@70 2663 in
Chris@70 2664 OS.Process.exit return_code;
Chris@70 2665 ()
Chris@70 2666 end
Chris@70 2667
Chris@70 2668 fun main () =
Chris@76 2669 repoint (CommandLine.arguments ())