Class: BuildTool::Cfg::ServerDeclarationNodeVisitor
- Inherits:
-
ListVisitor
- Object
- MJ::VisitorBase
- ListVisitor
- BuildTool::Cfg::ServerDeclarationNodeVisitor
- Defined in:
- lib/build-tool/cfg/visitor.rb
Instance Attribute Summary
Attributes inherited from MJ::VisitorBase
Instance Method Summary collapse
-
#initialize(configuration) ⇒ ServerDeclarationNodeVisitor
constructor
A new instance of ServerDeclarationNodeVisitor.
- #visit_ServerDeclarationNode(node) ⇒ Object
- #visit_ServerHostNode(node) ⇒ Object
- #visit_ServerPathNode(node) ⇒ Object
- #visit_ServerProtocolNode(node) ⇒ Object
- #visit_ServerStatementList(node) ⇒ Object
- #visit_SshKeyDeclarationNode(node) ⇒ Object
- #visit_UseSshKeyNode(node) ⇒ Object
Methods inherited from ListVisitor
Methods inherited from MJ::VisitorBase
Constructor Details
#initialize(configuration) ⇒ ServerDeclarationNodeVisitor
Returns a new instance of ServerDeclarationNodeVisitor.
822 823 824 825 |
# File 'lib/build-tool/cfg/visitor.rb', line 822 def initialize( configuration ) super( configuration ) @server = nil end |
Instance Method Details
#visit_ServerDeclarationNode(node) ⇒ Object
827 828 829 830 831 832 833 834 835 836 837 |
# File 'lib/build-tool/cfg/visitor.rb', line 827 def visit_ServerDeclarationNode( node ) name = node.values[0] # Check if a server with that name already exists @server = configuration.server(name) # Create a new one if not @server = Server.new( name ) if @server.nil? statements = node.values[1] self.visit_nodes(statements.values) configuration.add_server( @server ) return @server end |
#visit_ServerHostNode(node) ⇒ Object
839 840 841 |
# File 'lib/build-tool/cfg/visitor.rb', line 839 def visit_ServerHostNode( node ) @server.host = node.value end |
#visit_ServerPathNode(node) ⇒ Object
843 844 845 |
# File 'lib/build-tool/cfg/visitor.rb', line 843 def visit_ServerPathNode( node ) @server.path = node.value end |
#visit_ServerProtocolNode(node) ⇒ Object
847 848 849 |
# File 'lib/build-tool/cfg/visitor.rb', line 847 def visit_ServerProtocolNode( node ) @server.protocol = node.value end |
#visit_ServerStatementList(node) ⇒ Object
851 852 853 |
# File 'lib/build-tool/cfg/visitor.rb', line 851 def visit_ServerStatementList( node ) self.visit( node ) end |
#visit_SshKeyDeclarationNode(node) ⇒ Object
855 856 857 |
# File 'lib/build-tool/cfg/visitor.rb', line 855 def visit_SshKeyDeclarationNode( node ) @server.sshkey = node.value end |
#visit_UseSshKeyNode(node) ⇒ Object
859 860 861 862 863 |
# File 'lib/build-tool/cfg/visitor.rb', line 859 def visit_UseSshKeyNode( node ) name = node.value @server.sshkey = configuration.sshkey(name) raise ConfigurationError, "Unknown ssh-key #{name} configured for server #{@server.name}!" if @server.sshkey.nil? end |