@@ -3,7 +3,7 @@ use crossterm::{style::Stylize as _, tty::IsTty as _};
3
3
use futures:: FutureExt as _;
4
4
use num:: ToPrimitive as _;
5
5
use std:: { fmt:: Write as _, path:: PathBuf , sync:: Mutex , time:: Duration } ;
6
- use tangram_client:: { self as tg, Client } ;
6
+ use tangram_client:: { self as tg, Client , Handle as _ } ;
7
7
use tangram_either:: Either ;
8
8
use tangram_server:: Server ;
9
9
use tokio:: io:: AsyncWriteExt as _;
@@ -190,7 +190,7 @@ impl Cli {
190
190
Ok ( config) => config,
191
191
Err ( error) => {
192
192
eprintln ! ( "{} failed to read the config" , "error" . red( ) . bold( ) ) ;
193
- Cli :: print_error ( & error, None ) ;
193
+ Cli :: print_error ( & error, None , None ) ;
194
194
return 1 . into ( ) ;
195
195
} ,
196
196
} ;
@@ -272,7 +272,7 @@ impl Cli {
272
272
Ok ( ( ) ) => 0 . into ( ) ,
273
273
Err ( error) => {
274
274
eprintln ! ( "{} failed to run the command" , "error" . red( ) . bold( ) ) ;
275
- Cli :: print_error ( & error, cli. config . as_ref ( ) ) ;
275
+ Cli :: print_error ( & error, cli. config . as_ref ( ) , None ) ;
276
276
1 . into ( )
277
277
} ,
278
278
} ;
@@ -896,7 +896,7 @@ impl Cli {
896
896
Ok ( ( ) )
897
897
}
898
898
899
- fn print_error ( error : & tg:: Error , config : Option < & Config > ) {
899
+ fn print_error ( error : & tg:: Error , config : Option < & Config > , source_map : Option < & tg :: SourceMap > ) {
900
900
let options = config
901
901
. as_ref ( )
902
902
. and_then ( |config| config. advanced . as_ref ( ) )
@@ -911,6 +911,9 @@ impl Cli {
911
911
errors. reverse ( ) ;
912
912
}
913
913
for error in errors {
914
+ let error = source_map
915
+ . map ( |map| map. convert_error ( error. clone ( ) ) )
916
+ . unwrap_or_else ( || error. clone ( ) ) ;
914
917
let message = error. message . as_deref ( ) . unwrap_or ( "an error occurred" ) ;
915
918
eprintln ! ( "{} {message}" , "->" . red( ) ) ;
916
919
if let Some ( location) = & error. location {
@@ -938,7 +941,10 @@ impl Cli {
938
941
}
939
942
}
940
943
941
- fn print_diagnostic ( diagnostic : & tg:: Diagnostic ) {
944
+ fn print_diagnostic ( diagnostic : & tg:: Diagnostic , source_map : Option < & tg:: SourceMap > ) {
945
+ let diagnostic = source_map
946
+ . map ( |map| map. convert_diagnostic ( diagnostic. clone ( ) ) )
947
+ . unwrap_or_else ( || diagnostic. clone ( ) ) ;
942
948
let title = match diagnostic. severity {
943
949
tg:: diagnostic:: Severity :: Error => "error" . red ( ) . bold ( ) ,
944
950
tg:: diagnostic:: Severity :: Warning => "warning" . yellow ( ) . bold ( ) ,
@@ -1012,7 +1018,7 @@ impl Cli {
1012
1018
async fn get_reference (
1013
1019
& self ,
1014
1020
reference : & tg:: Reference ,
1015
- ) -> tg:: Result < tg:: Referent < Either < tg:: Build , tg:: Object > > > {
1021
+ ) -> tg:: Result < ( tg:: Referent < Either < tg:: Build , tg:: Object > > , Option < PathBuf > ) > {
1016
1022
let handle = self . handle ( ) . await ?;
1017
1023
let mut item = reference. item ( ) . clone ( ) ;
1018
1024
let mut options = reference. options ( ) . cloned ( ) ;
@@ -1025,8 +1031,22 @@ impl Cli {
1025
1031
. map_err ( |source| tg:: error!( !source, "failed to get the absolute path" ) ) ?;
1026
1032
}
1027
1033
let reference = tg:: Reference :: with_item_and_options ( & item, options. as_ref ( ) ) ;
1028
- let referent = reference. get ( & handle) . await ?;
1029
- Ok ( referent)
1034
+ let output = handle
1035
+ . try_get_reference ( & reference)
1036
+ . await ?
1037
+ . ok_or_else ( || tg:: error!( "failed to get reference" ) ) ?;
1038
+ let item = output
1039
+ . referent
1040
+ . item
1041
+ . map_left ( tg:: Build :: with_id)
1042
+ . map_right ( tg:: Object :: with_id) ;
1043
+ let referent = tg:: Referent {
1044
+ item,
1045
+ path : output. referent . path ,
1046
+ subpath : output. referent . subpath ,
1047
+ tag : output. referent . tag ,
1048
+ } ;
1049
+ Ok ( ( referent, output. lockfile ) )
1030
1050
}
1031
1051
1032
1052
/// Initialize V8.
0 commit comments