SCM Repository
View of /trunk/src/compiler/IL/run-dnorm_sml.in
Parent Directory
|
Revision Log
Revision 132 -
(download)
(annotate)
Fri Jul 2 21:30:59 2010 UTC (11 years, 10 months ago) by jhr
File size: 1689 byte(s)
Fri Jul 2 21:30:59 2010 UTC (11 years, 10 months ago) by jhr
File size: 1689 byte(s)
merge image-info directory into the IL directory
(* run-dnorm_sml.in * * COPYRIGHT (c) 2010 The Diderot Project (http://diderot.cs.uchicago.edu) * All rights reserved. * * This module supports running the dnorm program on a nrrd file. *) structure RunDNorm : sig val run : string -> { version : string, header : (string * string) list } end = struct structure SS = Substring (* search path for the dnorm executable *) val path = [ "@DIDEROT_ROOT@/bin/dnorm", "@prefix@/bin/dnorm" ] fun findExe () = ( case List.find (fn p => OS.FileSys.access(p, [OS.FileSys.A_EXEC])) path of SOME cmd => cmd | NONE => raise Fail "unable to find dnorm executable" (* end case *)) fun run srcFile = let val proc = Unix.execute (findExe(), ["-h", "-i", srcFile]) val inS = Unix.textInstreamOf proc fun stripWS ss = SS.string (SS.dropl Char.isSpace (SS.dropr Char.isSpace ss)) fun read content = (case TextIO.inputLine inS of SOME "\n" => read content (* dnorm outputs an extra blank line at the end *) | SOME ln => ( case SS.fields (fn #":" => true | _ => false) (SS.full ln) of [name, value] => read((SS.string name, stripWS value)::content) | _ => raise Fail(concat["bogus nrrd header line \"", String.toString ln, "\""]) (* end case *)) | NONE => List.rev content (* end case *)) val info = (case TextIO.inputLine inS of SOME version => { version = stripWS(SS.full version), header = read [] } | NONE => raise Fail "bogus nrrd file" (* end case *)) val sts = Unix.reap proc in if OS.Process.isSuccess sts then info else raise Fail "error running dnorm" end end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |