Class: BuildTool::VCS::Archive

Inherits:
Base
  • Object
show all
Defined in:
lib/build-tool/vcs/archive.rb

Overview

class ArchiveConfiguration

Defined Under Namespace

Classes: ArchiveError, FileNotFoundError

Instance Attribute Summary

Attributes inherited from Base

#config

Instance Method Summary collapse

Methods inherited from Base

#configure, #gc, #initialize, #local_path, #local_path_exist?, #recipe, #remote_path, #repository

Constructor Details

This class inherits a constructor from BuildTool::VCS::Base

Instance Method Details

#apply_patches(patches) ⇒ Object



71
72
73
74
75
76
77
78
79
80
81
# File 'lib/build-tool/vcs/archive.rb', line 71

def apply_patches( patches )
    patches.each do |patch|
        full_path = self.recipe.find_first_config_file( "custom/#{config.module.name}/patches/#{patch}.patch" )
        if full_path.nil?
            raise FileNotFoundError, "Patch '#{patch}' not found from module #{config.module.name}."
        end
        logger.info "Applying patch #{patch}"
        self.class.execute( "patch -p1 -i #{full_path}", local_path )
    end

end

#apply_patches_after_rebase?Boolean

Returns:

  • (Boolean)


47
48
49
# File 'lib/build-tool/vcs/archive.rb', line 47

def apply_patches_after_rebase?
    true
end

#archive_local_pathObject



51
52
53
# File 'lib/build-tool/vcs/archive.rb', line 51

def archive_local_path
    "#{File.dirname( local_path )}/#{archive_name}"
end

#archive_nameObject



55
56
57
# File 'lib/build-tool/vcs/archive.rb', line 55

def archive_name
    File.basename( archive_url )
end

#archive_urlObject



59
60
61
# File 'lib/build-tool/vcs/archive.rb', line 59

def archive_url
    "#{repository.url}/#{remote_path}"
end

#checkedout?Boolean

METHODS

Returns:

  • (Boolean)


67
68
69
# File 'lib/build-tool/vcs/archive.rb', line 67

def checkedout?
    File.exist? archive_local_path
end

#cloneObject



83
84
85
86
87
# File 'lib/build-tool/vcs/archive.rb', line 83

def clone
    fetch()
    rebase()
    0
end

#fetchObject



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# File 'lib/build-tool/vcs/archive.rb', line 89

def fetch()
    # Check if the archive is already downloaded
    if File.exist? archive_local_path
        logger.debug "Archive already fetched. Skipping."
        return 0
    end

    # If the archive doesn't exist we assume the unpacked archive
    # should not exist too.
    if local_path_exist?
        logger.debug "We fetch a new archive. Remove the old sources."
        FileUtils.rm_rf local_path if !$noop
    end

    # Create the directories parent dir.
    FileUtils.mkdir_p( File.dirname( local_path ) ) if !$noop

    # Download the archive
    logger.trace "get #{archive_name} from #{archive_url} to #{archive_local_path}"
    if !$noop
        target = open( archive_local_path, "wb" )
        open( archive_url ) { |file|
            while c = file.getc
                target.putc c
            end
        }
        target.close()
    end
    return 0
end

#fetching_supported?Boolean

Returns:

  • (Boolean)


39
40
41
# File 'lib/build-tool/vcs/archive.rb', line 39

def fetching_supported?
    true
end

#guess_top_level_directoryObject



120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# File 'lib/build-tool/vcs/archive.rb', line 120

def guess_top_level_directory
    return "<topdir>" if $noop
    topdir = nil
    if archive_name =~ /(\.tgz|\.tar\.gz)$/
        if self.class.execute( "gunzip -c #{archive_local_path} | tar tf -" ) { |line| 
            rc = /^([^\/]*)\//.match( line )
            if topdir and topdir != rc[1]
                raise StandardError, "Unable to determine toplevel directory for archive #{archive_name}!"
            end
            topdir = rc[1]
        } != 0 
            # No topdir
            return nil
        end
    else
        raise NotImplementedError, "No idea how to unpack the archive '#{archive_name}'."
    end
    return topdir
end

#nameObject

Attributes



35
36
37
# File 'lib/build-tool/vcs/archive.rb', line 35

def name
    "archive"
end

#patches_supported?Boolean

Returns:

  • (Boolean)


43
44
45
# File 'lib/build-tool/vcs/archive.rb', line 43

def patches_supported?
    true
end

#rebaseObject



140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# File 'lib/build-tool/vcs/archive.rb', line 140

def rebase

    # Check if the archive is already downloaded
    if !File.exist? archive_local_path
        logger.debug "Archive not fetched. Skipping."
        return 0
    end

    if local_path_exist?
        return 0
    end

    # Create the directory we want to use to checkout
    FileUtils.mkdir_p local_path if !$noop

    if archive_name =~ /(\.tgz|\.tar\.gz)$/
        if guess_top_level_directory()
            cmd = "gunzip -c #{archive_local_path} | tar --strip-components=1 --extract --file=- --directory=#{local_path}"
        else
            cmd = "gunzip -c #{archive_local_path} | tar --strip-components=0 --extract --file=- --directory=#{local_path}"
        end
        if self.class.execute( cmd ) != 0
            raise StandardError, "Failed to unpack the archive: $?"
        end
    else
        raise NotImplementedError, "No idea how to unpack the archive"
    end

    0
end