Welcome to mirror list, hosted at ThFree Co, Russian Federation.

file_entry.cpp « bundle « cli « corehost « installer « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 775117fb9a1f6d03af4fd38ae004e9ec56037599 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

#include "file_entry.h"
#include "trace.h"
#include "dir_utils.h"
#include "error_codes.h"

using namespace bundle;

bool file_entry_t::is_valid() const
{
    return m_offset > 0 && m_size >= 0 &&
        static_cast<file_type_t>(m_type) < file_type_t::__last;
}

file_entry_t file_entry_t::read(reader_t &reader)
{
    // First read the fixed-sized portion of file-entry
    const file_entry_fixed_t* fixed_data = reinterpret_cast<const file_entry_fixed_t*>(reader.read_direct(sizeof(file_entry_fixed_t)));
    file_entry_t entry(fixed_data);

    if (!entry.is_valid())
    {
        trace::error(_X("Failure processing application bundle; possible file corruption."));
        trace::error(_X("Invalid FileEntry detected."));
        throw StatusCode::BundleExtractionFailure;
    }

    reader.read_path_string(entry.m_relative_path);
    dir_utils_t::fixup_path_separator(entry.m_relative_path);

    return entry;
}

bool file_entry_t::needs_extraction() const
{
    switch (m_type)
    {
    // Once the runtime can load assemblies from bundle,
    // file_type_t::assembly should be in this category
    case file_type_t::deps_json:
    case file_type_t::runtime_config_json:
        return false;

    default:
        return true;
    }
}