forbear_element_object.F90 Source File

forbear project, definition of element_object.

This File Depends On

sourcefile~~forbear_element_object.f90~~EfferentGraph sourcefile~forbear_element_object.f90 forbear_element_object.F90 sourcefile~forbear_kinds.f90 forbear_kinds.F90 sourcefile~forbear_kinds.f90->sourcefile~forbear_element_object.f90
Help

Files Dependent On This One

sourcefile~~forbear_element_object.f90~~AfferentGraph sourcefile~forbear_element_object.f90 forbear_element_object.F90 sourcefile~forbear_bar_object.f90 forbear_bar_object.F90 sourcefile~forbear_element_object.f90->sourcefile~forbear_bar_object.f90 sourcefile~forbear.f90 forbear.f90 sourcefile~forbear_bar_object.f90->sourcefile~forbear.f90 sourcefile~forbear_test.f90 forbear_test.F90 sourcefile~forbear.f90->sourcefile~forbear_test.f90
Help


Source Code

!< **forbear** project, definition of [[element_object]].

module forbear_element_object
!< **forbear** project, definition of [[element_object]].
use, intrinsic :: iso_fortran_env, only : I4P=>int32, R8P=>real32, stdout=>output_unit
use face, only : colorize
use forbear_kinds, only : ASCII, UCS4
implicit none
private
public :: element_object

type :: element_object
   !< Bar element class.
   character(len=:, kind=UCS4), allocatable :: string   !< Element string.
   character(len=:),            allocatable :: color_fg !< Foreground color.
   character(len=:),            allocatable :: color_bg !< Background color.
   character(len=:),            allocatable :: style    !< Style.
   contains
      ! public methods
      procedure, pass(self) :: destroy    !< Destroy element.
      procedure, pass(self) :: initialize !< Initialize element.
      procedure, pass(self) :: output     !< Return formatted output of element.
      ! public operators
      generic :: assignment(=) => assign_element !< Overload `=`.
      ! private methods
      procedure, pass(lhs), private :: assign_element !< Operator `=`.
endtype element_object

contains
   ! public methods
   pure subroutine destroy(self)
   !< Destroy element.
   class(element_object), intent(inout) :: self !< element.

   if (allocated(self%string)) deallocate(self%string)
   if (allocated(self%color_fg)) deallocate(self%color_fg)
   if (allocated(self%color_bg)) deallocate(self%color_bg)
   if (allocated(self%style)) deallocate(self%style)
   endsubroutine destroy

   pure subroutine initialize(self, string, color_fg, color_bg, style)
   !< Initialize element.
   class(element_object), intent(inout)        :: self     !< element.
   class(*),              intent(in), optional :: string   !< Element string.
   character(len=*),      intent(in), optional :: color_fg !< Foreground color.
   character(len=*),      intent(in), optional :: color_bg !< Background color.
   character(len=*),      intent(in), optional :: style    !< Style.

   call self%destroy
   self%string = UCS4_''
   if (present(string)) then
      select type(string)
#if defined ASCII_SUPPORTED && defined ASCII_NEQ_DEFAULT
      type is(character(len=*, kind=ASCII))
         self%string = string
#endif
#ifdef UCS4_SUPPORTED
      type is(character(len=*, kind=UCS4))
         self%string = string
#endif
      type is(character(len=*))
         self%string = string
      endselect
   endif
   self%color_fg = '' ; if (present(color_fg)) self%color_fg = color_fg
   self%color_bg = '' ; if (present(color_bg)) self%color_bg = color_bg
   self%style = '' ; if (present(style)) self%style = style
   endsubroutine initialize

   pure function output(self)
   !< Return formatted output of element.
   class(element_object), intent(in)        :: self   !< element.
   character(len=:, kind=UCS4), allocatable :: output !< Formatted output.

   output = colorize(self%string, color_fg=self%color_fg, color_bg=self%color_bg, style=self%style)
   endfunction output

   ! private methods
   pure subroutine assign_element(lhs, rhs)
   !< Operator `=`.
   class(element_object), intent(inout) :: lhs !< Left hand side.
   type(element_object),  intent(in)    :: rhs !< Right hand side.

   if (allocated(rhs%string)) lhs%string = rhs%string
   if (allocated(rhs%color_fg)) lhs%color_fg = rhs%color_fg
   if (allocated(rhs%color_bg)) lhs%color_bg = rhs%color_bg
   if (allocated(rhs%style)) lhs%style = rhs%style
   endsubroutine assign_element
endmodule forbear_element_object