@@ -383,7 +383,7 @@ def wrapped(self, *args: Any, **kwargs: Any) -> Any:
383
383
for attempt in range (remaining_tries ):
384
384
try :
385
385
return_tuple = func (self , * args , ** kwargs )
386
- self ._vvvv ( f"ssm_retry: (success) { to_text (return_tuple )} " )
386
+ self .verbosity_display ( 4 , f"ssm_retry: (success) { to_text (return_tuple )} " )
387
387
break
388
388
389
389
except (AnsibleConnectionFailure , Exception ) as e :
@@ -400,7 +400,7 @@ def wrapped(self, *args: Any, **kwargs: Any) -> Any:
400
400
f"from cmd ({ cmd_summary } ),pausing for { pause } seconds"
401
401
)
402
402
403
- self ._vv ( msg )
403
+ self .verbosity_display ( 2 , msg )
404
404
405
405
time .sleep (pause )
406
406
@@ -511,7 +511,8 @@ def _init_clients(self) -> None:
511
511
Initializes required AWS clients (SSM and S3).
512
512
Delegates client initialization to specialized methods.
513
513
"""
514
- self ._vvvv ("INITIALIZE BOTO3 CLIENTS" )
514
+
515
+ self .verbosity_display (4 , "INITIALIZE BOTO3 CLIENTS" )
515
516
profile_name = self .get_option ("profile" ) or ""
516
517
region_name = self .get_option ("region" )
517
518
@@ -520,7 +521,7 @@ def _init_clients(self) -> None:
520
521
521
522
# Initialize S3 client
522
523
s3_endpoint_url , s3_region_name = self .s3_manager .get_bucket_endpoint ()
523
- self ._vvvv ( f"SETUP BOTO3 CLIENTS: S3 { s3_endpoint_url } " )
524
+ self .verbosity_display ( 4 , f"SETUP BOTO3 CLIENTS: S3 { s3_endpoint_url } " )
524
525
self .s3_manager .initialize_client (
525
526
region_name = s3_region_name , endpoint_url = s3_endpoint_url , profile_name = profile_name
526
527
)
@@ -540,35 +541,36 @@ def _initialize_ssm_client(self, region_name: Optional[str], profile_name: str)
540
541
None
541
542
"""
542
543
543
- self ._vvvv ( "SETUP BOTO3 CLIENTS: SSM" )
544
+ self .verbosity_display ( 4 , "SETUP BOTO3 CLIENTS: SSM" )
544
545
self ._client = self ._get_boto_client (
545
546
"ssm" ,
546
547
region_name = region_name ,
547
548
profile_name = profile_name ,
548
549
)
549
550
550
- def _display (self , f : Any , message : str ) -> None :
551
+ def verbosity_display (self , level : int , message : str ) -> None :
552
+ """
553
+ Displays the given message depending on the verbosity level.
554
+
555
+ :param message: The message to display.
556
+ :param display_level: The verbosity level (1-4).
557
+
558
+ :return: None
559
+ """
551
560
if self .host :
552
561
host_args = {"host" : self .host }
553
562
else :
554
563
host_args = {}
555
- f (to_text (message ), ** host_args )
556
-
557
- def _v (self , message : str ) -> None :
558
- self ._display (display .v , message )
559
-
560
- def _vv (self , message : str ) -> None :
561
- self ._display (display .vv , message )
562
564
563
- def _vvv (self , message : str ) -> None :
564
- self ._display (display .vvv , message )
565
+ verbosity_level = {1 : display .v , 2 : display .vv , 3 : display .vvv , 4 : display .vvvv }
565
566
566
- def _vvvv (self , message : str ) -> None :
567
- self ._display (display .vvvv , message )
567
+ if level not in verbosity_level .keys ():
568
+ raise AnsibleError (f"Invalid verbosity level: { level } " )
569
+ verbosity_level [level ](to_text (message ), ** host_args )
568
570
569
571
def reset (self ) -> Any :
570
572
"""start a fresh ssm session"""
571
- self ._vvvv ( "reset called on ssm connection" )
573
+ self .verbosity_display ( 4 , "reset called on ssm connection" )
572
574
self .close ()
573
575
return self .start_session ()
574
576
@@ -601,13 +603,13 @@ def get_executable(self) -> str:
601
603
def start_session (self ):
602
604
"""start ssm session"""
603
605
604
- self ._vvv ( f"ESTABLISH SSM CONNECTION TO: { self .instance_id } " )
606
+ self .verbosity_display ( 3 , f"ESTABLISH SSM CONNECTION TO: { self .instance_id } " )
605
607
606
608
executable = self .get_executable ()
607
609
608
610
self ._init_clients ()
609
611
610
- self ._vvvv ( f"START SSM SESSION: { self .instance_id } " )
612
+ self .verbosity_display ( 4 , f"START SSM SESSION: { self .instance_id } " )
611
613
start_session_args = dict (Target = self .instance_id , Parameters = {})
612
614
document_name = self .get_option ("ssm_document" )
613
615
if document_name is not None :
@@ -627,7 +629,7 @@ def start_session(self):
627
629
self ._client .meta .endpoint_url ,
628
630
]
629
631
630
- self ._vvvv ( f"SSM COMMAND: { to_text (cmd )} " )
632
+ self .verbosity_display ( 4 , f"SSM COMMAND: { to_text (cmd )} " )
631
633
632
634
stdout_r , stdout_w = pty .openpty ()
633
635
self ._session = subprocess .Popen (
@@ -645,7 +647,7 @@ def start_session(self):
645
647
# For non-windows Hosts: Ensure the session has started, and disable command echo and prompt.
646
648
self ._prepare_terminal ()
647
649
648
- self ._vvvv ( f"SSM CONNECTION ID: { self ._session_id } " ) # pylint: disable=unreachable
650
+ self .verbosity_display ( 4 , f"SSM CONNECTION ID: { self ._session_id } " ) # pylint: disable=unreachable
649
651
650
652
return self ._session
651
653
@@ -671,7 +673,7 @@ def poll(self, label: str, cmd: str) -> NoReturn:
671
673
timeout = self .get_option ("ssm_timeout" )
672
674
while self ._session .poll () is None :
673
675
remaining = start + timeout - round (time .time ())
674
- self ._vvvv ( f"{ label } remaining: { remaining } second(s)" )
676
+ self .verbosity_display ( 4 , f"{ label } remaining: { remaining } second(s)" )
675
677
if remaining < 0 :
676
678
self ._has_timeout = True
677
679
raise AnsibleConnectionFailure (f"{ label } command '{ cmd } ' timeout on host: { self .instance_id } " )
@@ -697,7 +699,7 @@ def exec_communicate(self, cmd: str, mark_start: str, mark_begin: str, mark_end:
697
699
continue
698
700
699
701
line = filter_ansi (self ._stdout .readline (), self .is_windows )
700
- self ._vvvv ( f"EXEC stdout line: \n { line } " )
702
+ self .verbosity_display ( 4 , f"EXEC stdout line: \n { line } " )
701
703
702
704
if not begin and self .is_windows :
703
705
win_line = win_line + line
@@ -710,9 +712,9 @@ def exec_communicate(self, cmd: str, mark_start: str, mark_begin: str, mark_end:
710
712
continue
711
713
if begin :
712
714
if mark_end in line :
713
- self ._vvvv ( f"POST_PROCESS: \n { to_text (stdout )} " )
715
+ self .verbosity_display ( 4 , f"POST_PROCESS: \n { to_text (stdout )} " )
714
716
returncode , stdout = self ._post_process (stdout , mark_begin )
715
- self ._vvvv ( f"POST_PROCESSED: \n { to_text (stdout )} " )
717
+ self .verbosity_display ( 4 , f"POST_PROCESSED: \n { to_text (stdout )} " )
716
718
break
717
719
stdout = stdout + line
718
720
@@ -731,7 +733,7 @@ def exec_command(self, cmd: str, in_data: bool = None, sudoable: bool = True) ->
731
733
732
734
super ().exec_command (cmd , in_data = in_data , sudoable = sudoable )
733
735
734
- self ._vvv ( f"EXEC: { to_text (cmd )} " )
736
+ self .verbosity_display ( 3 , f"EXEC: { to_text (cmd )} " )
735
737
736
738
mark_begin = self .generate_mark ()
737
739
if self .is_windows :
@@ -758,10 +760,10 @@ def _ensure_ssm_session_has_started(self) -> None:
758
760
for poll_result in self .poll ("START SSM SESSION" , "start_session" ):
759
761
if poll_result :
760
762
stdout += to_text (self ._stdout .read (1024 ))
761
- self ._vvvv ( f"START SSM SESSION stdout line: \n { to_bytes (stdout )} " )
763
+ self .verbosity_display ( 4 , f"START SSM SESSION stdout line: \n { to_bytes (stdout )} " )
762
764
match = str (stdout ).find ("Starting session with SessionId" )
763
765
if match != - 1 :
764
- self ._vvvv ( "START SSM SESSION startup output received" )
766
+ self .verbosity_display ( 4 , "START SSM SESSION startup output received" )
765
767
break
766
768
767
769
def _disable_prompt_command (self ) -> None :
@@ -774,14 +776,14 @@ def _disable_prompt_command(self) -> None:
774
776
disable_prompt_reply = re .compile (r"\r\r\n" + re .escape (end_mark ) + r"\r\r\n" , re .MULTILINE )
775
777
776
778
# Send command
777
- self ._vvvv ( f"DISABLE PROMPT Disabling Prompt: \n { disable_prompt_cmd } " )
779
+ self .verbosity_display ( 4 , f"DISABLE PROMPT Disabling Prompt: \n { disable_prompt_cmd } " )
778
780
self ._session .stdin .write (disable_prompt_cmd )
779
781
780
782
stdout = ""
781
783
for poll_result in self .poll ("DISABLE PROMPT" , disable_prompt_cmd ):
782
784
if poll_result :
783
785
stdout += to_text (self ._stdout .read (1024 ))
784
- self ._vvvv ( f"DISABLE PROMPT stdout line: \n { to_bytes (stdout )} " )
786
+ self .verbosity_display ( 4 , f"DISABLE PROMPT stdout line: \n { to_bytes (stdout )} " )
785
787
if disable_prompt_reply .search (stdout ):
786
788
break
787
789
@@ -790,14 +792,14 @@ def _disable_echo_command(self) -> None:
790
792
disable_echo_cmd = to_bytes ("stty -echo\n " , errors = "surrogate_or_strict" )
791
793
792
794
# Send command
793
- self ._vvvv ( f"DISABLE ECHO Disabling Prompt: \n { disable_echo_cmd } " )
795
+ self .verbosity_display ( 4 , f"DISABLE ECHO Disabling Prompt: \n { disable_echo_cmd } " )
794
796
self ._session .stdin .write (disable_echo_cmd )
795
797
796
798
stdout = ""
797
799
for poll_result in self .poll ("DISABLE ECHO" , disable_echo_cmd ):
798
800
if poll_result :
799
801
stdout += to_text (self ._stdout .read (1024 ))
800
- self ._vvvv ( f"DISABLE ECHO stdout line: \n { to_bytes (stdout )} " )
802
+ self .verbosity_display ( 4 , f"DISABLE ECHO stdout line: \n { to_bytes (stdout )} " )
801
803
match = str (stdout ).find ("stty -echo" )
802
804
if match != - 1 :
803
805
break
@@ -817,7 +819,7 @@ def _prepare_terminal(self) -> None:
817
819
# Disable prompt command
818
820
self ._disable_prompt_command () # pylint: disable=unreachable
819
821
820
- self ._vvvv ( "PRE Terminal configured" ) # pylint: disable=unreachable
822
+ self .verbosity_display ( 4 , "PRE Terminal configured" ) # pylint: disable=unreachable
821
823
822
824
def _wrap_command (self , cmd : str , mark_start : str , mark_end : str ) -> str :
823
825
"""Wrap command so stdout and status can be extracted"""
@@ -833,7 +835,7 @@ def _wrap_command(self, cmd: str, mark_start: str, mark_end: str) -> str:
833
835
f"printf '\\ n%s\\ n%s\\ n' \" $?\" '{ mark_end } ';\n "
834
836
) # fmt: skip
835
837
836
- self ._vvvv ( f"_wrap_command: \n '{ to_text (cmd )} '" )
838
+ self .verbosity_display ( 4 , f"_wrap_command: \n '{ to_text (cmd )} '" )
837
839
return cmd
838
840
839
841
def _post_process (self , stdout : str , mark_begin : str ) -> Tuple [str , str ]:
@@ -881,7 +883,7 @@ def _flush_stderr(self, session_process) -> str:
881
883
if not poll_stderr .poll (1 ):
882
884
break
883
885
line = session_process .stderr .readline ()
884
- self ._vvvv ( f"stderr line: { to_text (line )} " )
886
+ self .verbosity_display ( 4 , f"stderr line: { to_text (line )} " )
885
887
stderr = stderr + line
886
888
887
889
return stderr
@@ -1084,7 +1086,7 @@ def put_file(self, in_path: str, out_path: str) -> Tuple[int, str, str]:
1084
1086
1085
1087
super ().put_file (in_path , out_path )
1086
1088
1087
- self ._vvv ( f"PUT { in_path } TO { out_path } " )
1089
+ self .verbosity_display ( 3 , f"PUT { in_path } TO { out_path } " )
1088
1090
if not os .path .exists (to_bytes (in_path , errors = "surrogate_or_strict" )):
1089
1091
raise AnsibleFileNotFound (f"file or module does not exist: { in_path } " )
1090
1092
@@ -1095,19 +1097,19 @@ def fetch_file(self, in_path: str, out_path: str) -> Tuple[int, str, str]:
1095
1097
1096
1098
super ().fetch_file (in_path , out_path )
1097
1099
1098
- self ._vvv ( f"FETCH { in_path } TO { out_path } " )
1100
+ self .verbosity_display ( 3 , f"FETCH { in_path } TO { out_path } " )
1099
1101
return self ._file_transport_command (in_path , out_path , "get" )
1100
1102
1101
1103
def close (self ) -> None :
1102
1104
"""terminate the connection"""
1103
1105
if self ._session_id :
1104
- self ._vvv ( f"CLOSING SSM CONNECTION TO: { self .instance_id } " )
1106
+ self .verbosity_display ( 3 , f"CLOSING SSM CONNECTION TO: { self .instance_id } " )
1105
1107
if self ._has_timeout :
1106
1108
self ._session .terminate ()
1107
1109
else :
1108
1110
cmd = b"\n exit\n "
1109
1111
self ._session .communicate (cmd )
1110
1112
1111
- self ._vvvv ( f"TERMINATE SSM SESSION: { self ._session_id } " )
1113
+ self .verbosity_display ( 4 , f"TERMINATE SSM SESSION: { self ._session_id } " )
1112
1114
self ._client .terminate_session (SessionId = self ._session_id )
1113
1115
self ._session_id = ""
0 commit comments