mirror of
https://github.com/clearlinux/mixer-tools.git
synced 2026-09-05 21:21:44 +00:00
Reverting commit to remove Iterative Manifests from mixer
This reverts commit c4bef69b87.
Signed-off-by: Otavio Pontes <otavio.pontes@intel.com>
127 lines
3.7 KiB
Go
127 lines
3.7 KiB
Go
// Copyright 2018 Intel Corporation
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package swupd
|
|
|
|
import (
|
|
"text/template"
|
|
)
|
|
|
|
// manTemplates is a map of format to relevant manifest template for that
|
|
// format
|
|
var manTemplates = map[uint]string{
|
|
// format 25 manifest template
|
|
// used for formats 1 - 25 as the initial default
|
|
25: `
|
|
{{- with .Header -}}
|
|
MANIFEST {{.Format}}
|
|
version: {{.Version}}
|
|
previous: {{.Previous}}
|
|
filecount: {{.FileCount}}
|
|
timestamp: {{(.TimeStamp.Unix)}}
|
|
contentsize: {{.ContentSize -}}
|
|
{{range .Includes}}
|
|
includes: {{.Name}}
|
|
{{- end}}
|
|
{{- end}}
|
|
{{ range .Files}}
|
|
{{.GetFlagString}} {{.Hash}} {{.Version}} {{.Name}}
|
|
{{- end}}
|
|
`,
|
|
// formats 26 to 28 manifest template
|
|
26: `
|
|
{{- with .Header -}}
|
|
MANIFEST {{.Format}}
|
|
version: {{.Version}}
|
|
previous: {{.Previous}}
|
|
{{ if ne .MinVersion 0 }}minversion: {{.MinVersion}}
|
|
{{ end }}filecount: {{.FileCount}}
|
|
timestamp: {{(.TimeStamp.Unix)}}
|
|
contentsize: {{.ContentSize -}}
|
|
{{range .Includes}}
|
|
includes: {{.Name}}
|
|
{{- end}}
|
|
{{- end}}
|
|
{{ range .Files}}
|
|
{{.GetFlagString}} {{.Hash}} {{.Version}} {{.Name}}
|
|
{{- end}}
|
|
`,
|
|
// format 29 manifest template
|
|
// used for formats 29 and greater until a new format is required
|
|
29: `
|
|
{{- with .Header -}}
|
|
MANIFEST {{.Format}}
|
|
version: {{.Version}}
|
|
previous: {{.Previous}}
|
|
{{ if ne .MinVersion 0 }}minversion: {{.MinVersion}}
|
|
{{ end }}filecount: {{.FileCount}}
|
|
timestamp: {{(.TimeStamp.Unix)}}
|
|
contentsize: {{.ContentSize -}}
|
|
{{range .Includes}}
|
|
includes: {{.Name}}
|
|
{{- end -}}
|
|
{{range .Optional}}
|
|
also-add: {{.Name}}
|
|
{{- end}}
|
|
{{- end}}
|
|
{{ range .Files}}
|
|
{{.GetFlagString}} {{.Hash}} {{.Version}} {{.Name}}
|
|
{{- end}}
|
|
`,
|
|
}
|
|
|
|
const statusExperimental = "Experimental"
|
|
|
|
func setManifestStatusForFormat(format uint, bundleStatus string, statusFlag *StatusFlag) {
|
|
if format > 26 {
|
|
// Experimental bundles are introduced in format 27 and should not be created in older formats
|
|
if bundleStatus == statusExperimental {
|
|
*statusFlag = StatusExperimental
|
|
}
|
|
}
|
|
}
|
|
|
|
// manifestTemplateForFormat returns the *template.Template for creating
|
|
// manifests for the provided format f
|
|
func manifestTemplateForFormat(f uint) (t *template.Template) {
|
|
switch {
|
|
case f <= 25:
|
|
// initial format, everything 0-25 uses this format
|
|
t = template.Must(template.New("manifest").Parse(manTemplates[25]))
|
|
case f > 25 && f <= 28:
|
|
// template for formats 26 to 28
|
|
t = template.Must(template.New("manifest").Parse(manTemplates[26]))
|
|
case f > 28:
|
|
// template for formats 29 or higher
|
|
t = template.Must(template.New("manifest").Parse(manTemplates[29]))
|
|
// when a new format is required it must be added here and the 'case f
|
|
// > 28' must be modified to 'case f > 28 && f < <new_format>'. The
|
|
// <new_format> does not necessarily have to be 29 as format 29 may be
|
|
// created due to a content breaking change instead of a manifest
|
|
// format breaking change.
|
|
}
|
|
return
|
|
}
|
|
|
|
// this is a hack to allow users to update using swupd-client v3.15.3 which performs a
|
|
// check on contentsize with a maximum a couple of orders off the intended maximum.
|
|
const badMax uint64 = 2000000000
|
|
|
|
func (m *Manifest) setMaxContentSizeForFormat() {
|
|
// this bug only existed in format 25
|
|
if m.Header.Format == 25 && m.Header.ContentSize >= badMax {
|
|
m.Header.ContentSize = badMax - 1
|
|
}
|
|
}
|