代码拉取完成,页面将自动刷新
同步操作将从 tupelo-shen/mysnapd 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2015 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package asserts
import (
"fmt"
"io"
"os"
"path/filepath"
"sort"
"strconv"
"strings"
)
/*
findWildcard invokes foundCb once for each parent directory of regular files matching:
<top>/<descendantWithWildcard[0]>/<descendantWithWildcard[1]>...
where each descendantWithWildcard component can contain the * wildcard.
One of the descendantWithWildcard components except the last
can be "#>" or "#<", in which case that level is assumed to have names
that can be parsed as positive integers, which will be enumerated in
ascending (#>) or descending order respectively (#<); if seqnum != -1
then only the values >seqnum or respectively <seqnum will be
considered.
foundCb is invoked with the paths of the found regular files relative to top (that means top/ is excluded).
Unlike filepath.Glob any I/O operation error stops the walking and bottoms out, so does a foundCb invocation that returns an error.
*/
func findWildcard(top string, descendantWithWildcard []string, seqnum int, foundCb func(relpath []string) error) error {
return findWildcardDescend(top, top, descendantWithWildcard, seqnum, foundCb)
}
func findWildcardBottom(top, current string, pat string, names []string, foundCb func(relpath []string) error) error {
var hits []string
for _, name := range names {
ok, err := filepath.Match(pat, name)
if err != nil {
return fmt.Errorf("findWildcard: invoked with malformed wildcard: %v", err)
}
if !ok {
continue
}
fn := filepath.Join(current, name)
finfo, err := os.Stat(fn)
if os.IsNotExist(err) {
continue
}
if err != nil {
return err
}
if !finfo.Mode().IsRegular() {
return fmt.Errorf("expected a regular file: %v", fn)
}
relpath, err := filepath.Rel(top, fn)
if err != nil {
return fmt.Errorf("findWildcard: unexpected to fail at computing rel path of descendant")
}
hits = append(hits, relpath)
}
if len(hits) == 0 {
return nil
}
return foundCb(hits)
}
func findWildcardDescend(top, current string, descendantWithWildcard []string, seqnum int, foundCb func(relpath []string) error) error {
k := descendantWithWildcard[0]
if k == "#>" || k == "#<" {
if len(descendantWithWildcard) == 1 {
return fmt.Errorf("findWildcard: sequence wildcard (#>|<#) cannot be the last component")
}
return findWildcardSequence(top, current, k, descendantWithWildcard[1:], seqnum, foundCb)
}
if len(descendantWithWildcard) > 1 && strings.IndexByte(k, '*') == -1 {
return findWildcardDescend(top, filepath.Join(current, k), descendantWithWildcard[1:], seqnum, foundCb)
}
d, err := os.Open(current)
// ignore missing directory, higher level will produce
// NotFoundError as needed
if os.IsNotExist(err) {
return nil
}
if err != nil {
return err
}
defer d.Close()
names, err := d.Readdirnames(-1)
if err != nil {
return err
}
if len(descendantWithWildcard) == 1 {
return findWildcardBottom(top, current, k, names, foundCb)
}
for _, name := range names {
ok, err := filepath.Match(k, name)
if err != nil {
return fmt.Errorf("findWildcard: invoked with malformed wildcard: %v", err)
}
if ok {
err = findWildcardDescend(top, filepath.Join(current, name), descendantWithWildcard[1:], seqnum, foundCb)
if err != nil {
return err
}
}
}
return nil
}
func findWildcardSequence(top, current, seqWildcard string, descendantWithWildcard []string, seqnum int, foundCb func(relpath []string) error) error {
filter := func(i int) bool { return true }
if seqnum != -1 {
if seqWildcard == "#>" {
filter = func(i int) bool { return i > seqnum }
} else { // "#<", guaranteed by the caller
filter = func(i int) bool { return i < seqnum }
}
}
d, err := os.Open(current)
// ignore missing directory, higher level will produce
// NotFoundError as needed
if os.IsNotExist(err) {
return nil
}
if err != nil {
return err
}
defer d.Close()
var seq []int
for {
names, err := d.Readdirnames(100)
if err == io.EOF {
break
}
if err != nil {
return err
}
for _, n := range names {
sqn, err := strconv.Atoi(n)
if err != nil || sqn < 0 || prefixZeros(n) {
return fmt.Errorf("cannot parse %q name as a valid sequence number", filepath.Join(current, n))
}
if filter(sqn) {
seq = append(seq, sqn)
}
}
}
sort.Ints(seq)
var start, direction int
if seqWildcard == "#>" {
start = 0
direction = 1
} else {
start = len(seq) - 1
direction = -1
}
for i := start; i >= 0 && i < len(seq); i += direction {
err = findWildcardDescend(top, filepath.Join(current, strconv.Itoa(seq[i])), descendantWithWildcard, -1, foundCb)
if err != nil {
return err
}
}
return nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。