shithub: hugo

ref: c0a046cbfb24d64847e6b8a5cd8be8a7e8a0fc80
dir: /source/inmemory.go/

View raw version
package source

import (
	"bytes"
	"fmt"
	"path"
)

type ByteSource struct {
	Name    string
	Content []byte
	Section string
}

func (b *ByteSource) String() string {
	return fmt.Sprintf("%s %s %s", b.Name, b.Section, string(b.Content))
}

type InMemorySource struct {
	ByteSource []ByteSource
}

func (i *InMemorySource) Files() (files []*File) {
	files = make([]*File, len(i.ByteSource))
	for i, fake := range i.ByteSource {
		files[i] = &File{
			LogicalName: fake.Name,
			Contents:    bytes.NewReader(fake.Content),
			Section:     fake.Section,
			Dir:         path.Dir(fake.Name),
		}
	}
	return
}