ALR

Форк
1
55 строк · 1.3 Кб
1
/*
2
 * ALR - Any Linux Repository
3
 * Copyright (C) 2024 Евгений Храмов
4
 *
5
 * This program is free software: you can redistribute it and/or modify
6
 * it under the terms of the GNU General Public License as published by
7
 * the Free Software Foundation, either version 3 of the License, or
8
 * (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
 */
18

19
package handlers
20

21
import (
22
	"context"
23
	"io"
24
	"os"
25
)
26

27
func NopReadDir(context.Context, string) ([]os.FileInfo, error) {
28
	return nil, os.ErrNotExist
29
}
30

31
func NopStat(context.Context, string, bool) (os.FileInfo, error) {
32
	return nil, os.ErrNotExist
33
}
34

35
func NopExec(context.Context, []string) error {
36
	return nil
37
}
38

39
func NopOpen(context.Context, string, int, os.FileMode) (io.ReadWriteCloser, error) {
40
	return NopRWC{}, nil
41
}
42

43
type NopRWC struct{}
44

45
func (NopRWC) Read([]byte) (int, error) {
46
	return 0, io.EOF
47
}
48

49
func (NopRWC) Write(b []byte) (int, error) {
50
	return len(b), nil
51
}
52

53
func (NopRWC) Close() error {
54
	return nil
55
}
56

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.