Sha256: 741a76fa115ed9d9722f1ff9e64674fa5e49004af8efe009271c7e02efcbe136

Contents?: true

Size: 1.51 KB

Versions: 6

Compression:

Stored size: 1.51 KB

Contents

# Author::    Eric Crane  (mailto:eric.crane@mac.com)
# Copyright:: Copyright (c) 2020 Eric Crane.  All rights reserved.
#
# A stack of items, a call stack.
#

module GlooLang
  module Exec
    class Stack

      attr_accessor :stack

      #
      # Set up the stack.
      #
      def initialize( name )
        @name = name
        clear_stack
        $log.debug "#{name} stack intialized..."
      end

      #
      # Push an item onto the stack.
      #
      def push( obj )
        $log.debug "#{@name}:push #{obj.display_value}"
        @stack.push obj
        self.update_out_file if $settings.debug
      end

      #
      # Pop an item from the stack.
      #
      def pop
        o = @stack.pop
        $log.debug "#{@name}:pop #{o.display_value}"
        self.update_out_file if $settings.debug
      end

      #
      # Get the current size of the call stack.
      #
      def size
        return @stack.size
      end

      #
      # Get stack data for output.
      #
      def out_data
        return @stack.map( &:display_value ).join( "\n" )
      end

      #
      # Get the file we'll write debug information for the stack.
      #
      def out_file
        return File.join( $settings.debug_path, @name )
      end

      #
      # Update the stack trace file.
      #
      def update_out_file
        File.write( self.out_file, self.out_data )
      end

      #
      # Clear the stack and the output file.
      #
      def clear_stack
        @stack = []
        self.update_out_file
      end

    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gloo-lang-0.9.8 lib/gloo_lang/exec/stack.rb
gloo-lang-0.9.7 lib/gloo_lang/exec/stack.rb
gloo-lang-0.9.6 lib/gloo_lang/exec/stack.rb
gloo-lang-0.9.5 lib/gloo_lang/exec/stack.rb
gloo-lang-0.9.4 lib/gloo_lang/exec/stack.rb
gloo-lang-0.9.3 lib/gloo_lang/exec/stack.rb