Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From trunk To v0.16.0
2024-11-27
| ||
16:50 | Remove constants for zettel identifier that work with previous new-style zids. ... (Leaf check-in: 6a850fba01 user: stern tags: trunk) | |
2024-11-25
| ||
09:21 | Keys superior / subordinate must be usable ... (check-in: 9e6a73c7ba user: stern tags: trunk) | |
2023-12-08
| ||
14:08 | shtml: export some methods to be used in Zettel Presenter ... (check-in: 0a3d4044cd user: stern tags: trunk) | |
2023-11-30
| ||
15:15 | Version 0.16.0 ... (check-in: 751754d40c user: stern tags: release, trunk, v0.16.0) | |
2023-11-29
| ||
16:50 | Add zettel identifier for predefined role zettel ... (check-in: d47ca9287a user: stern tags: trunk) | |
Added .github/dependabot.yml.
> > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 | # To get started with Dependabot version updates, you'll need to specify which # package ecosystems to update and where the package manifests are located. # Please see the documentation for all configuration options: # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: - package-ecosystem: "gomod" # See documentation for possible values directory: "/" # Location of package manifests schedule: interval: "daily" rebase-strategy: "disabled" |
Changes to api/api.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2021-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | | | | 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 51 52 53 | //----------------------------------------------------------------------------- // Copyright (c) 2021-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- // Package api contains common definitions used for client and server. package api // ZettelID contains the identifier of a zettel. It is a string with 14 digits. type ZettelID string // InvalidZID is an invalif zettel identifier const InvalidZID = "" // IsValid returns true, if the idenfifier contains 14 digits. func (zid ZettelID) IsValid() bool { if len(zid) != 14 { return false } for i := 0; i < 14; i++ { ch := zid[i] if ch < '0' || '9' < ch { return false } } return true } // ZettelMeta is a map containg the metadata of a zettel. type ZettelMeta map[string]string // ZettelRights is an integer that encode access rights for a zettel. type ZettelRights uint8 // Values for ZettelRights, can be or-ed const ( ZettelCanNone ZettelRights = 1 << iota ZettelCanCreate // Current user is allowed to create a new zettel ZettelCanRead // Requesting user is allowed to read the zettel ZettelCanWrite // Requesting user is allowed to update the zettel ZettelCanRename // Requesting user is allowed to provide the zettel with a new identifier ZettelCanDelete // Requesting user is allowed to delete the zettel ZettelMaxRight // Sentinel value ) // MetaRights contains the metadata of a zettel, and its rights. type MetaRights struct { Meta ZettelMeta |
︙ | ︙ |
Changes to api/const.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2021-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | | | | | | | < < < < < < | < < < | | | | < | | | | | | > | | | | | | | | | | | | | | | | | < < | > | 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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | //----------------------------------------------------------------------------- // Copyright (c) 2021-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- package api import "fmt" // Predefined Zettel Identifier const ( // System zettel ZidVersion = ZettelID("00000000000001") ZidHost = ZettelID("00000000000002") ZidOperatingSystem = ZettelID("00000000000003") ZidLicense = ZettelID("00000000000004") ZidAuthors = ZettelID("00000000000005") ZidDependencies = ZettelID("00000000000006") ZidLog = ZettelID("00000000000007") ZidBoxManager = ZettelID("00000000000020") ZidMetadataKey = ZettelID("00000000000090") ZidParser = ZettelID("00000000000092") ZidStartupConfiguration = ZettelID("00000000000096") ZidConfiguration = ZettelID("00000000000100") // WebUI HTML templates are in the range 10000..19999 ZidBaseTemplate = ZettelID("00000000010100") ZidLoginTemplate = ZettelID("00000000010200") ZidListTemplate = ZettelID("00000000010300") ZidZettelTemplate = ZettelID("00000000010401") ZidInfoTemplate = ZettelID("00000000010402") ZidFormTemplate = ZettelID("00000000010403") ZidRenameTemplate = ZettelID("00000000010404") ZidDeleteTemplate = ZettelID("00000000010405") ZidErrorTemplate = ZettelID("00000000010700") // WebUI sxn code zettel are in the range 19000..19999 ZidSxnStart = ZettelID("00000000019000") ZidSxnBase = ZettelID("00000000019990") // CSS-related zettel are in the range 20000..29999 ZidBaseCSS = ZettelID("00000000020001") ZidUserCSS = ZettelID("00000000025001") // WebUI JS zettel are in the range 30000..39999 // WebUI image zettel are in the range 40000..49999 ZidEmoji = ZettelID("00000000040001") // Other sxn code zettel are in the range 50000..59999 ZidSxnPrelude = ZettelID("00000000059900") // Predefined Zettelmarkup zettel are in the range 60000..69999 ZidRoleZettelZettel = ZettelID("00000000060010") ZidRoleConfigurationZettel = ZettelID("00000000060020") ZidRoleRoleZettel = ZettelID("00000000060030") ZidRoleTagZettel = ZettelID("00000000060040") // Range 90000...99999 is reserved for zettel templates ZidTOCNewTemplate = ZettelID("00000000090000") ZidTemplateNewZettel = ZettelID("00000000090001") ZidTemplateNewRole = ZettelID("00000000090004") ZidTemplateNewTag = ZettelID("00000000090003") ZidTemplateNewUser = ZettelID("00000000090002") ZidDefaultHome = ZettelID("00010000000000") ) // LengthZid factors the constant length of a zettel identifier const LengthZid = len(ZidDefaultHome) // Values of the metadata key/value type. const ( MetaCredential = "Credential" MetaEmpty = "EString" MetaID = "Identifier" MetaIDSet = "IdentifierSet" MetaNumber = "Number" MetaString = "String" MetaTagSet = "TagSet" MetaTimestamp = "Timestamp" MetaURL = "URL" MetaWord = "Word" MetaWordSet = "WordSet" MetaZettelmarkup = "Zettelmarkup" ) // Predefined general Metadata keys const ( KeyID = "id" KeyTitle = "title" |
︙ | ︙ | |||
123 124 125 126 127 128 129 | KeyFolgeRole = "folge-role" KeyForward = "forward" KeyLang = "lang" KeyLicense = "license" KeyModified = "modified" KeyPrecursor = "precursor" KeyPredecessor = "predecessor" | < < < > | 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | KeyFolgeRole = "folge-role" KeyForward = "forward" KeyLang = "lang" KeyLicense = "license" KeyModified = "modified" KeyPrecursor = "precursor" KeyPredecessor = "predecessor" KeyPublished = "published" KeyQuery = "query" KeyReadOnly = "read-only" KeySubordinates = "subordinates" KeySuccessors = "successors" KeySuperior = "superior" KeySummary = "summary" KeyURL = "url" KeyUselessFiles = "useless-files" KeyUserID = "user-id" KeyUserRole = "user-role" KeyVisibility = "visibility" ) |
︙ | ︙ | |||
172 173 174 175 176 177 178 179 180 181 182 183 184 185 | ValueVisibilityLogin = "login" ValueVisibilityOwner = "owner" ValueVisibilityPublic = "public" ) // Additional HTTP constants. const ( HeaderAccept = "Accept" HeaderContentType = "Content-Type" HeaderDestination = "Destination" HeaderLocation = "Location" ) // Values for HTTP query parameter. | > > | 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | ValueVisibilityLogin = "login" ValueVisibilityOwner = "owner" ValueVisibilityPublic = "public" ) // Additional HTTP constants. const ( MethodMove = "MOVE" // HTTP method for renaming a zettel HeaderAccept = "Accept" HeaderContentType = "Content-Type" HeaderDestination = "Destination" HeaderLocation = "Location" ) // Values for HTTP query parameter. |
︙ | ︙ | |||
278 279 280 281 282 283 284 | // Supported search operator representations const ( BackwardDirective = "BACKWARD" ContextDirective = "CONTEXT" CostDirective = "COST" ForwardDirective = "FORWARD" | < < < < < < < < < < < < < < | 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | // Supported search operator representations const ( BackwardDirective = "BACKWARD" ContextDirective = "CONTEXT" CostDirective = "COST" ForwardDirective = "FORWARD" IdentDirective = "IDENT" ItemsDirective = "ITEMS" MaxDirective = "MAX" LimitDirective = "LIMIT" OffsetDirective = "OFFSET" OrDirective = "OR" OrderDirective = "ORDER" PhraseDirective = "PHRASE" PickDirective = "PICK" RandomDirective = "RANDOM" ReverseDirective = "REVERSE" UnlinkedDirective = "UNLINKED" ActionSeparator = "|" ExistOperator = "?" ExistNotOperator = "!?" SearchOperatorNot = "!" SearchOperatorEqual = "=" SearchOperatorNotEqual = "!=" SearchOperatorHas = ":" SearchOperatorHasNot = "!:" SearchOperatorPrefix = "[" SearchOperatorNoPrefix = "![" SearchOperatorSuffix = "]" SearchOperatorNoSuffix = "!]" SearchOperatorMatch = "~" SearchOperatorNoMatch = "!~" SearchOperatorLess = "<" SearchOperatorNotLess = "!<" SearchOperatorGreater = ">" SearchOperatorNotGreater = "!>" ) |
Changes to api/urlbuilder.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2020-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | > > > > > < | > > > > > < < < | < < < < | > > > > > > > > | > > > > > > > > > > > > > > > > | | > > > > > > > | > | > | > > | > > > > > > > > | > > > > > > > > > > > > > > > > > > > > > > > > | 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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | //----------------------------------------------------------------------------- // Copyright (c) 2020-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- package api import ( "net/url" "strings" ) type urlQuery struct{ key, val string } // URLBuilder should be used to create zettelstore URLs. type URLBuilder struct { prefix string key byte rawLocal string path []string query []urlQuery fragment string } // NewURLBuilder creates a new URL builder with the given prefix and key. func NewURLBuilder(prefix string, key byte) *URLBuilder { return &URLBuilder{prefix: prefix, key: key} } // Clone an URLBuilder func (ub *URLBuilder) Clone() *URLBuilder { cpy := new(URLBuilder) cpy.key = ub.key if len(ub.path) > 0 { cpy.path = make([]string, 0, len(ub.path)) cpy.path = append(cpy.path, ub.path...) } if len(ub.query) > 0 { cpy.query = make([]urlQuery, 0, len(ub.query)) cpy.query = append(cpy.query, ub.query...) } cpy.fragment = ub.fragment return cpy } // SetRawLocal sets everything that follows the prefix / key. func (ub *URLBuilder) SetRawLocal(rawLocal string) *URLBuilder { for len(rawLocal) > 0 && rawLocal[0] == '/' { rawLocal = rawLocal[1:] } ub.rawLocal = rawLocal ub.path = nil ub.query = nil ub.fragment = "" return ub } // SetZid sets the zettel identifier. func (ub *URLBuilder) SetZid(zid ZettelID) *URLBuilder { if len(ub.path) > 0 { panic("Cannot add Zid") } ub.rawLocal = "" ub.path = append(ub.path, string(zid)) return ub } // AppendPath adds a new path element func (ub *URLBuilder) AppendPath(p string) *URLBuilder { ub.rawLocal = "" for len(p) > 0 && p[0] == '/' { p = p[1:] } if p != "" { ub.path = append(ub.path, p) } return ub } // AppendKVQuery adds a new key/value query parameter func (ub *URLBuilder) AppendKVQuery(key, value string) *URLBuilder { ub.rawLocal = "" ub.query = append(ub.query, urlQuery{key, value}) return ub } // AppendQuery adds a new query func (ub *URLBuilder) AppendQuery(value string) *URLBuilder { if value != "" { ub.rawLocal = "" ub.query = append(ub.query, urlQuery{QueryKeyQuery, value}) } return ub } // ClearQuery removes all query parameters. func (ub *URLBuilder) ClearQuery() *URLBuilder { ub.rawLocal = "" ub.query = nil ub.fragment = "" return ub } // SetFragment stores the fragment func (ub *URLBuilder) SetFragment(s string) *URLBuilder { ub.rawLocal = "" ub.fragment = s return ub } // String produces a string value. func (ub *URLBuilder) String() string { var sb strings.Builder sb.WriteString(ub.prefix) if ub.key != '/' { sb.WriteByte(ub.key) } if ub.rawLocal != "" { sb.WriteString(ub.rawLocal) return sb.String() } for i, p := range ub.path { if i > 0 || ub.key != '/' { sb.WriteByte('/') } sb.WriteString(url.PathEscape(p)) } if len(ub.fragment) > 0 { sb.WriteByte('#') sb.WriteString(ub.fragment) } for i, q := range ub.query { if i == 0 { sb.WriteByte('?') } else { sb.WriteByte('&') } sb.WriteString(q.key) if val := q.val; val != "" { sb.WriteByte('=') sb.WriteString(url.QueryEscape(val)) } } return sb.String() } |
Changes to attrs/attrs.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2020-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | //----------------------------------------------------------------------------- // Copyright (c) 2020-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- // Package attrs stores attributes of zettel parts. package attrs import ( "strings" "zettelstore.de/client.fossil/maps" ) // Attributes store additional information about some node types. type Attributes map[string]string // IsEmpty returns true if there are no attributes. func (a Attributes) IsEmpty() bool { return len(a) == 0 } |
︙ | ︙ | |||
84 85 86 87 88 89 90 | func (a Attributes) Remove(key string) Attributes { if a != nil { delete(a, key) } return a } | | | | | | | | | > > > | | | < | | > > > | | | > | | | < > | | | < | < < | 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | func (a Attributes) Remove(key string) Attributes { if a != nil { delete(a, key) } return a } // AddClass adds a value to the class attribute. func (a Attributes) AddClass(class string) Attributes { if a == nil { return map[string]string{"class": class} } classes := a.GetClasses() for _, cls := range classes { if cls == class { return a } } classes = append(classes, class) a["class"] = strings.Join(classes, " ") return a } // GetClasses returns the class values as a string slice func (a Attributes) GetClasses() []string { if a == nil { return nil } classes, ok := a["class"] if !ok { return nil } return strings.Fields(classes) } // HasClass returns true, if attributes contains the given class. func (a Attributes) HasClass(s string) bool { if a == nil { return false } classes, found := a["class"] if !found { return false } return strings.Contains(" "+classes+" ", " "+s+" ") } |
Changes to attrs/attrs_test.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2020-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | //----------------------------------------------------------------------------- // Copyright (c) 2020-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- package attrs_test import ( "testing" "zettelstore.de/client.fossil/attrs" ) func TestHasDefault(t *testing.T) { t.Parallel() attr := attrs.Attributes{} if attr.HasDefault() { t.Error("Should not have default attr") |
︙ | ︙ | |||
53 54 55 56 57 58 59 | func TestHasClass(t *testing.T) { t.Parallel() testcases := []struct { classes string class string exp bool }{ | | | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | func TestHasClass(t *testing.T) { t.Parallel() testcases := []struct { classes string class string exp bool }{ {"", "", true}, {"x", "", false}, {"x", "x", true}, {"x", "y", false}, {"abc def ghi", "abc", true}, {"abc def ghi", "def", true}, {"abc def ghi", "ghi", true}, {"ab de gi", "b", false}, |
︙ | ︙ |
Changes to client/client.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2021-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | | | | < | 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 | //----------------------------------------------------------------------------- // Copyright (c) 2021-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- // Package client provides a client for accessing the Zettelstore via its API. package client import ( "bufio" "bytes" "context" "fmt" "io" "net" "net/http" "net/url" "strconv" "strings" "time" "zettelstore.de/client.fossil/api" "zettelstore.de/client.fossil/sexp" "zettelstore.de/sx.fossil" "zettelstore.de/sx.fossil/sxreader" ) // Client contains all data to execute requests. type Client struct { base string username string password string |
︙ | ︙ | |||
53 54 55 56 57 58 59 60 61 62 63 64 65 66 | myURL := *u myURL.User = nil myURL.ForceQuery = false myURL.RawQuery = "" myURL.Fragment = "" myURL.RawFragment = "" base := myURL.String() c := Client{ base: base, client: http.Client{ Timeout: 10 * time.Second, Transport: &http.Transport{ DialContext: (&net.Dialer{ Timeout: 5 * time.Second, // TCP connect timeout | > > > | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | myURL := *u myURL.User = nil myURL.ForceQuery = false myURL.RawQuery = "" myURL.Fragment = "" myURL.RawFragment = "" base := myURL.String() if !strings.HasSuffix(base, "/") { base += "/" } c := Client{ base: base, client: http.Client{ Timeout: 10 * time.Second, Transport: &http.Transport{ DialContext: (&net.Dialer{ Timeout: 5 * time.Second, // TCP connect timeout |
︙ | ︙ | |||
122 123 124 125 126 127 128 | return &Error{ StatusCode: resp.StatusCode, Message: resp.Status[4:], Body: body, } } | < | | | < < < < > > > | 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | return &Error{ StatusCode: resp.StatusCode, Message: resp.Status[4:], Body: body, } } func (c *Client) newURLBuilder(key byte) *api.URLBuilder { return api.NewURLBuilder(c.base, key) } func (*Client) newRequest(ctx context.Context, method string, ub *api.URLBuilder, body io.Reader) (*http.Request, error) { return http.NewRequestWithContext(ctx, method, ub.String(), body) } func (c *Client) executeRequest(req *http.Request) (*http.Response, error) { if c.token != "" { req.Header.Add("Authorization", c.tokenType+" "+c.token) } resp, err := c.client.Do(req) if err != nil { if resp != nil && resp.Body != nil { resp.Body.Close() } return nil, err } return resp, err } func (c *Client) buildAndExecuteRequest( ctx context.Context, method string, ub *api.URLBuilder, body io.Reader, h http.Header) (*http.Response, error) { req, err := c.newRequest(ctx, method, ub, body) if err != nil { return nil, err } err = c.updateToken(ctx) if err != nil { return nil, err } for key, val := range h { req.Header[key] = append(req.Header[key], val...) } return c.executeRequest(req) } // SetAuth sets authentication data. func (c *Client) SetAuth(username, password string) { c.username = username c.password = password |
︙ | ︙ | |||
188 189 190 191 192 193 194 | if err != nil { return err } vals, err := sexp.ParseList(obj, "ssi") if err != nil { return err } | | | | | | | | 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | if err != nil { return err } vals, err := sexp.ParseList(obj, "ssi") if err != nil { return err } token := vals[1].(sx.String).String() if len(token) < 4 { return fmt.Errorf("no valid token found: %q", token) } c.token = token c.tokenType = vals[0].(sx.String).String() c.expires = time.Now().Add(time.Duration(vals[2].(sx.Int64)*9/10) * time.Second) return nil } func (c *Client) updateToken(ctx context.Context) error { if c.username == "" { return nil } if time.Now().After(c.expires) { return c.Authenticate(ctx) } return c.RefreshToken(ctx) } // Authenticate sets a new token by sending user name and password. func (c *Client) Authenticate(ctx context.Context) error { authData := url.Values{"username": {c.username}, "password": {c.password}} req, err := c.newRequest(ctx, http.MethodPost, c.newURLBuilder('a'), strings.NewReader(authData.Encode())) if err != nil { return err } req.Header.Set("Content-Type", "application/x-www-form-urlencoded") return c.executeAuthRequest(req) } // RefreshToken updates the access token func (c *Client) RefreshToken(ctx context.Context) error { req, err := c.newRequest(ctx, http.MethodPut, c.newURLBuilder('a'), nil) if err != nil { return err } return c.executeAuthRequest(req) } // CreateZettel creates a new zettel and returns its URL. func (c *Client) CreateZettel(ctx context.Context, data []byte) (api.ZettelID, error) { ub := c.newURLBuilder('z') resp, err := c.buildAndExecuteRequest(ctx, http.MethodPost, ub, bytes.NewBuffer(data), nil) if err != nil { return api.InvalidZID, err } defer resp.Body.Close() if resp.StatusCode != http.StatusCreated { return api.InvalidZID, statusToError(resp) } |
︙ | ︙ | |||
255 256 257 258 259 260 261 | // CreateZettelData creates a new zettel and returns its URL. func (c *Client) CreateZettelData(ctx context.Context, data api.ZettelData) (api.ZettelID, error) { var buf bytes.Buffer if _, err := sx.Print(&buf, sexp.EncodeZettel(data)); err != nil { return api.InvalidZID, err } | | | | | | 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | // CreateZettelData creates a new zettel and returns its URL. func (c *Client) CreateZettelData(ctx context.Context, data api.ZettelData) (api.ZettelID, error) { var buf bytes.Buffer if _, err := sx.Print(&buf, sexp.EncodeZettel(data)); err != nil { return api.InvalidZID, err } ub := c.newURLBuilder('z').AppendKVQuery(api.QueryKeyEncoding, api.EncodingData) resp, err := c.buildAndExecuteRequest(ctx, http.MethodPost, ub, &buf, nil) if err != nil { return api.InvalidZID, err } defer resp.Body.Close() rdr := sxreader.MakeReader(resp.Body) obj, err := rdr.Read() if resp.StatusCode != http.StatusCreated { return api.InvalidZID, statusToError(resp) } if err != nil { return api.InvalidZID, err } return makeZettelID(obj) } var bsLF = []byte{'\n'} // QueryZettel returns a list of all Zettel. func (c *Client) QueryZettel(ctx context.Context, query string) ([][]byte, error) { ub := c.newURLBuilder('z').AppendQuery(query) resp, err := c.buildAndExecuteRequest(ctx, http.MethodGet, ub, nil, nil) if err != nil { return nil, err } defer resp.Body.Close() data, err := io.ReadAll(resp.Body) switch resp.StatusCode { case http.StatusOK: |
︙ | ︙ | |||
302 303 304 305 306 307 308 | lines = lines[:len(lines)-1] } return lines, nil } // QueryZettelData returns a list of zettel metadata. func (c *Client) QueryZettelData(ctx context.Context, query string) (string, string, []api.ZidMetaRights, error) { | | | | 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 | lines = lines[:len(lines)-1] } return lines, nil } // QueryZettelData returns a list of zettel metadata. func (c *Client) QueryZettelData(ctx context.Context, query string) (string, string, []api.ZidMetaRights, error) { ub := c.newURLBuilder('z').AppendKVQuery(api.QueryKeyEncoding, api.EncodingData).AppendQuery(query) resp, err := c.buildAndExecuteRequest(ctx, http.MethodGet, ub, nil, nil) if err != nil { return "", "", nil, err } defer resp.Body.Close() rdr := sxreader.MakeReader(resp.Body) obj, err := rdr.Read() switch resp.StatusCode { |
︙ | ︙ | |||
333 334 335 336 337 338 339 | return "", "", nil, err } hVals, err := sexp.ParseList(vals[2], "ys") if err != nil { return "", "", nil, err } metaList, err := parseMetaList(vals[3].(*sx.Pair)) | | | 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 | return "", "", nil, err } hVals, err := sexp.ParseList(vals[2], "ys") if err != nil { return "", "", nil, err } metaList, err := parseMetaList(vals[3].(*sx.Pair)) return qVals[1].String(), hVals[1].String(), metaList, err } func parseMetaList(metaPair *sx.Pair) ([]api.ZidMetaRights, error) { if metaPair == nil { return nil, fmt.Errorf("no zettel list") } if errSym := sexp.CheckSymbol(metaPair.Car(), "list"); errSym != nil { |
︙ | ︙ | |||
407 408 409 410 411 412 413 | return api.InvalidZID, fmt.Errorf("invalid zettel ID: %v", val) } return zid, nil } // QueryAggregate returns a aggregate as a result of a query. // It is most often used in a query with an action, where the action is either | | | 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 | return api.InvalidZID, fmt.Errorf("invalid zettel ID: %v", val) } return zid, nil } // QueryAggregate returns a aggregate as a result of a query. // It is most often used in a query with an action, where the action is either // a metadata key of type Word, WordSet, or TagSet. func (c *Client) QueryAggregate(ctx context.Context, query string) (api.Aggregate, error) { lines, err := c.QueryZettel(ctx, query) if err != nil { return nil, err } if len(lines) == 0 { return nil, nil |
︙ | ︙ | |||
448 449 450 451 452 453 454 | return c.fetchTagOrRoleZettel(ctx, api.QueryKeyRole, role) } func (c *Client) fetchTagOrRoleZettel(ctx context.Context, key, val string) (api.ZettelID, error) { if c.client.CheckRedirect == nil { panic("client does not allow to track redirect") } | | | | 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 | return c.fetchTagOrRoleZettel(ctx, api.QueryKeyRole, role) } func (c *Client) fetchTagOrRoleZettel(ctx context.Context, key, val string) (api.ZettelID, error) { if c.client.CheckRedirect == nil { panic("client does not allow to track redirect") } ub := c.newURLBuilder('z').AppendKVQuery(key, val) resp, err := c.buildAndExecuteRequest(ctx, http.MethodGet, ub, nil, nil) if err != nil { return api.InvalidZID, err } defer resp.Body.Close() data, err := io.ReadAll(resp.Body) if err != nil { return api.InvalidZID, err |
︙ | ︙ | |||
475 476 477 478 479 480 481 | default: return api.InvalidZID, statusToError(resp) } } // GetZettel returns a zettel as a string. func (c *Client) GetZettel(ctx context.Context, zid api.ZettelID, part string) ([]byte, error) { | | | | | | 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 | default: return api.InvalidZID, statusToError(resp) } } // GetZettel returns a zettel as a string. func (c *Client) GetZettel(ctx context.Context, zid api.ZettelID, part string) ([]byte, error) { ub := c.newURLBuilder('z').SetZid(zid) if part != "" && part != api.PartContent { ub.AppendKVQuery(api.QueryKeyPart, part) } resp, err := c.buildAndExecuteRequest(ctx, http.MethodGet, ub, nil, nil) if err != nil { return nil, err } defer resp.Body.Close() data, err := io.ReadAll(resp.Body) switch resp.StatusCode { case http.StatusOK: case http.StatusNoContent: return nil, nil default: return nil, statusToError(resp) } return data, err } // GetZettelData returns a zettel as a struct of its parts. func (c *Client) GetZettelData(ctx context.Context, zid api.ZettelID) (api.ZettelData, error) { ub := c.newURLBuilder('z').SetZid(zid) ub.AppendKVQuery(api.QueryKeyEncoding, api.EncodingData) ub.AppendKVQuery(api.QueryKeyPart, api.PartZettel) resp, err := c.buildAndExecuteRequest(ctx, http.MethodGet, ub, nil, nil) if err == nil { defer resp.Body.Close() if resp.StatusCode != http.StatusOK { return api.ZettelData{}, statusToError(resp) } rdr := sxreader.MakeReader(resp.Body) obj, err2 := rdr.Read() |
︙ | ︙ | |||
526 527 528 529 530 531 532 | // GetEvaluatedZettel return an evaluated zettel in a defined encoding. func (c *Client) GetEvaluatedZettel(ctx context.Context, zid api.ZettelID, enc api.EncodingEnum) ([]byte, error) { return c.getZettelString(ctx, zid, enc, false) } func (c *Client) getZettelString(ctx context.Context, zid api.ZettelID, enc api.EncodingEnum, parseOnly bool) ([]byte, error) { | | | | | | | | | | | | | | 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 | // GetEvaluatedZettel return an evaluated zettel in a defined encoding. func (c *Client) GetEvaluatedZettel(ctx context.Context, zid api.ZettelID, enc api.EncodingEnum) ([]byte, error) { return c.getZettelString(ctx, zid, enc, false) } func (c *Client) getZettelString(ctx context.Context, zid api.ZettelID, enc api.EncodingEnum, parseOnly bool) ([]byte, error) { ub := c.newURLBuilder('z').SetZid(zid) ub.AppendKVQuery(api.QueryKeyEncoding, enc.String()) ub.AppendKVQuery(api.QueryKeyPart, api.PartContent) if parseOnly { ub.AppendKVQuery(api.QueryKeyParseOnly, "") } resp, err := c.buildAndExecuteRequest(ctx, http.MethodGet, ub, nil, nil) if err != nil { return nil, err } defer resp.Body.Close() switch resp.StatusCode { case http.StatusOK: case http.StatusNoContent: default: return nil, statusToError(resp) } return io.ReadAll(resp.Body) } // GetParsedSz returns an parsed zettel as a Sexpr-decoded data structure. func (c *Client) GetParsedSz(ctx context.Context, zid api.ZettelID, part string, sf sx.SymbolFactory) (sx.Object, error) { return c.getSz(ctx, zid, part, true, sf) } // GetEvaluatedSz returns an evaluated zettel as a Sexpr-decoded data structure. func (c *Client) GetEvaluatedSz(ctx context.Context, zid api.ZettelID, part string, sf sx.SymbolFactory) (sx.Object, error) { return c.getSz(ctx, zid, part, false, sf) } func (c *Client) getSz(ctx context.Context, zid api.ZettelID, part string, parseOnly bool, sf sx.SymbolFactory) (sx.Object, error) { ub := c.newURLBuilder('z').SetZid(zid) ub.AppendKVQuery(api.QueryKeyEncoding, api.EncodingSz) if part != "" { ub.AppendKVQuery(api.QueryKeyPart, part) } if parseOnly { ub.AppendKVQuery(api.QueryKeyParseOnly, "") } resp, err := c.buildAndExecuteRequest(ctx, http.MethodGet, ub, nil, nil) if err != nil { return nil, err } defer resp.Body.Close() if resp.StatusCode != http.StatusOK { return nil, statusToError(resp) } return sxreader.MakeReader(bufio.NewReaderSize(resp.Body, 8), sxreader.WithSymbolFactory(sf)).Read() } // GetMetaData returns the metadata of a zettel. func (c *Client) GetMetaData(ctx context.Context, zid api.ZettelID) (api.MetaRights, error) { ub := c.newURLBuilder('z').SetZid(zid) ub.AppendKVQuery(api.QueryKeyEncoding, api.EncodingData) ub.AppendKVQuery(api.QueryKeyPart, api.PartMeta) resp, err := c.buildAndExecuteRequest(ctx, http.MethodGet, ub, nil, nil) if err != nil { return api.MetaRights{}, err } defer resp.Body.Close() rdr := sxreader.MakeReader(resp.Body) obj, err := rdr.Read() if resp.StatusCode != http.StatusOK { |
︙ | ︙ | |||
620 621 622 623 624 625 626 | Meta: meta, Rights: rights, }, nil } // UpdateZettel updates an existing zettel. func (c *Client) UpdateZettel(ctx context.Context, zid api.ZettelID, data []byte) error { | | | | | > > > > > > > > > > > > > > > > > | | | | | | | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 | Meta: meta, Rights: rights, }, nil } // UpdateZettel updates an existing zettel. func (c *Client) UpdateZettel(ctx context.Context, zid api.ZettelID, data []byte) error { ub := c.newURLBuilder('z').SetZid(zid) resp, err := c.buildAndExecuteRequest(ctx, http.MethodPut, ub, bytes.NewBuffer(data), nil) if err != nil { return err } defer resp.Body.Close() if resp.StatusCode != http.StatusNoContent { return statusToError(resp) } return nil } // UpdateZettelData updates an existing zettel. func (c *Client) UpdateZettelData(ctx context.Context, zid api.ZettelID, data api.ZettelData) error { var buf bytes.Buffer if _, err := sx.Print(&buf, sexp.EncodeZettel(data)); err != nil { return err } ub := c.newURLBuilder('z').SetZid(zid).AppendKVQuery(api.QueryKeyEncoding, api.EncodingData) resp, err := c.buildAndExecuteRequest(ctx, http.MethodPut, ub, &buf, nil) if err != nil { return err } defer resp.Body.Close() if resp.StatusCode != http.StatusNoContent { return statusToError(resp) } return nil } // RenameZettel renames a zettel. func (c *Client) RenameZettel(ctx context.Context, oldZid, newZid api.ZettelID) error { ub := c.newURLBuilder('z').SetZid(oldZid) h := http.Header{ api.HeaderDestination: {c.newURLBuilder('z').SetZid(newZid).String()}, } resp, err := c.buildAndExecuteRequest(ctx, api.MethodMove, ub, nil, h) if err != nil { return err } defer resp.Body.Close() if resp.StatusCode != http.StatusNoContent { return statusToError(resp) } return nil } // DeleteZettel deletes a zettel with the given identifier. func (c *Client) DeleteZettel(ctx context.Context, zid api.ZettelID) error { ub := c.newURLBuilder('z').SetZid(zid) resp, err := c.buildAndExecuteRequest(ctx, http.MethodDelete, ub, nil, nil) if err != nil { return err } defer resp.Body.Close() if resp.StatusCode != http.StatusNoContent { return statusToError(resp) } return nil } // ExecuteCommand will execute a given command at the Zettelstore. func (c *Client) ExecuteCommand(ctx context.Context, command api.Command) error { ub := c.newURLBuilder('x').AppendKVQuery(api.QueryKeyCommand, string(command)) resp, err := c.buildAndExecuteRequest(ctx, http.MethodPost, ub, nil, nil) if err != nil { return err } defer resp.Body.Close() if resp.StatusCode != http.StatusNoContent { return statusToError(resp) } return nil } // GetVersionInfo returns version information.. func (c *Client) GetVersionInfo(ctx context.Context) (VersionInfo, error) { resp, err := c.buildAndExecuteRequest(ctx, http.MethodGet, c.newURLBuilder('x'), nil, nil) if err != nil { return VersionInfo{}, err } defer resp.Body.Close() if resp.StatusCode != http.StatusOK { return VersionInfo{}, statusToError(resp) } rdr := sxreader.MakeReader(resp.Body) obj, err := rdr.Read() if err == nil { if vals, errVals := sexp.ParseList(obj, "iiiss"); errVals == nil { return VersionInfo{ Major: int(vals[0].(sx.Int64)), Minor: int(vals[1].(sx.Int64)), Patch: int(vals[2].(sx.Int64)), Info: vals[3].(sx.String).String(), Hash: vals[4].(sx.String).String(), }, nil } } return VersionInfo{}, err } // VersionInfo contains version information. type VersionInfo struct { Major int Minor int Patch int Info string Hash string } |
Changes to client/client_test.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | > | > | 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 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- package client_test import ( "context" "flag" "net/http" "net/url" "testing" "zettelstore.de/client.fossil/api" "zettelstore.de/client.fossil/client" "zettelstore.de/client.fossil/sz" "zettelstore.de/sx.fossil" ) func TestZettelList(t *testing.T) { c := getClient() _, err := c.QueryZettel(context.Background(), "") if err != nil { t.Error(err) |
︙ | ︙ | |||
44 45 46 47 48 49 50 | } return } } func TestGetSzZettel(t *testing.T) { c := getClient() | > > > | | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | } return } } func TestGetSzZettel(t *testing.T) { c := getClient() sf := sx.MakeMappedFactory(1024) var zetSyms sz.ZettelSymbols zetSyms.InitializeZettelSymbols(sf) value, err := c.GetEvaluatedSz(context.Background(), api.ZidDefaultHome, api.PartContent, sf) if err != nil { t.Error(err) return } if value.IsNil() { t.Error("No data") } |
︙ | ︙ |
Changes to go.mod.
|
| | | | < < < < | 1 2 3 4 5 | module zettelstore.de/client.fossil go 1.21 require zettelstore.de/sx.fossil v0.0.0-20231130150648-05ef116ba207 |
Changes to go.sum.
|
| | | < < < < | 1 2 | zettelstore.de/sx.fossil v0.0.0-20231130150648-05ef116ba207 h1:8ch54z0w53bps6a00NDofEqo3AJ1l7ITXyC3XyLmlY4= zettelstore.de/sx.fossil v0.0.0-20231130150648-05ef116ba207/go.mod h1:Uw3OLM1ufOM4Xe0G51mvkTDUv2okd+HyDBMx+0ZG7ME= |
Deleted input/entity.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted input/entity_test.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted input/input.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted input/input_test.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted input/runes.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Changes to maps/maps.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- package maps import "sort" func Keys[T any](m map[string]T) []string { |
︙ | ︙ |
Changes to maps/maps_test.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- package maps_test import ( "testing" "zettelstore.de/client.fossil/maps" ) func isSorted(seq []string) bool { for i := 1; i < len(seq); i++ { if seq[i] < seq[i-1] { return false } |
︙ | ︙ |
Changes to sexp/sexp.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2023-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | | > | | | | | | 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 | //----------------------------------------------------------------------------- // Copyright (c) 2023-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- // Package sexp contains helper function to work with s-expression in an alien // environment. package sexp import ( "errors" "fmt" "sort" "zettelstore.de/client.fossil/api" "zettelstore.de/sx.fossil" ) // EncodeZettel transforms zettel data into a sx object. func EncodeZettel(zettel api.ZettelData) sx.Object { sf := sx.MakeMappedFactory(1024) return sx.MakeList( sf.MustMake("zettel"), meta2sz(zettel.Meta, sf), sx.MakeList(sf.MustMake("rights"), sx.Int64(int64(zettel.Rights))), sx.MakeList(sf.MustMake("encoding"), sx.String(zettel.Encoding)), sx.MakeList(sf.MustMake("content"), sx.String(zettel.Content)), ) } func ParseZettel(obj sx.Object) (api.ZettelData, error) { vals, err := ParseList(obj, "ypppp") if err != nil { return api.ZettelData{}, err |
︙ | ︙ | |||
69 70 71 72 73 74 75 | if errSym := CheckSymbol(contentVals[0], "content"); errSym != nil { return api.ZettelData{}, errSym } return api.ZettelData{ Meta: meta, Rights: rights, | | | > | | | | | | | | | | | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | if errSym := CheckSymbol(contentVals[0], "content"); errSym != nil { return api.ZettelData{}, errSym } return api.ZettelData{ Meta: meta, Rights: rights, Encoding: encVals[1].(sx.String).String(), Content: contentVals[1].(sx.String).String(), }, nil } // EncodeMetaRights translates metadata/rights into a sx object. func EncodeMetaRights(mr api.MetaRights) *sx.Pair { sf := sx.MakeMappedFactory(1024) return sx.MakeList( sf.MustMake("list"), meta2sz(mr.Meta, sf), sx.MakeList(sf.MustMake("rights"), sx.Int64(int64(mr.Rights))), ) } func meta2sz(m api.ZettelMeta, sf sx.SymbolFactory) sx.Object { result := sx.Nil().Cons(sf.MustMake("meta")) curr := result keys := make([]string, 0, len(m)) for k := range m { keys = append(keys, k) } sort.Strings(keys) for _, k := range keys { val := sx.MakeList(sf.MustMake(k), sx.String(m[k])) curr = curr.AppendBang(val) } return result } // ParseMeta translates the given list to metadata. func ParseMeta(pair *sx.Pair) (api.ZettelMeta, error) { if err := CheckSymbol(pair.Car(), "meta"); err != nil { return nil, err } res := api.ZettelMeta{} for node := pair.Tail(); node != nil; node = node.Tail() { mVals, err := ParseList(node.Car(), "ys") if err != nil { return nil, err } res[mVals[0].(*sx.Symbol).Name()] = mVals[1].(sx.String).String() } return res, nil } // ParseRights returns the rights values of the given object. func ParseRights(obj sx.Object) (api.ZettelRights, error) { rVals, err := ParseList(obj, "yi") |
︙ | ︙ | |||
131 132 133 134 135 136 137 | if i64 < 0 && i64 >= int64(api.ZettelMaxRight) { return api.ZettelMaxRight, fmt.Errorf("invalid zettel right value: %v", i64) } return api.ZettelRights(i64), nil } // ParseList parses the given object as a proper list, based on a type specification. | | | | 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | if i64 < 0 && i64 >= int64(api.ZettelMaxRight) { return api.ZettelMaxRight, fmt.Errorf("invalid zettel right value: %v", i64) } return api.ZettelRights(i64), nil } // ParseList parses the given object as a proper list, based on a type specification. func ParseList(obj sx.Object, spec string) ([]sx.Object, error) { pair, isPair := sx.GetPair(obj) if !isPair { return nil, fmt.Errorf("not a list: %T/%v", obj, obj) } if pair == nil { if spec == "" { return nil, nil } return nil, ErrElementsMissing } result := make([]sx.Object, 0, len(spec)) node, i := pair, 0 for ; node != nil; i++ { if i >= len(spec) { return nil, ErrNoSpec } var val sx.Object var ok bool |
︙ | ︙ | |||
193 194 195 196 197 198 199 | // CheckSymbol ensures that the given object is a symbol with the given name. func CheckSymbol(obj sx.Object, name string) error { sym, isSymbol := sx.GetSymbol(obj) if !isSymbol { return fmt.Errorf("object %v/%T is not a symbol", obj, obj) } | | | 192 193 194 195 196 197 198 199 200 201 202 203 | // CheckSymbol ensures that the given object is a symbol with the given name. func CheckSymbol(obj sx.Object, name string) error { sym, isSymbol := sx.GetSymbol(obj) if !isSymbol { return fmt.Errorf("object %v/%T is not a symbol", obj, obj) } if got := sym.Name(); got != name { return fmt.Errorf("symbol %q expected, but got: %q", name, got) } return nil } |
Changes to sexp/sexp_test.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2023-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | | | | | | | | | 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 51 52 53 | //----------------------------------------------------------------------------- // Copyright (c) 2023-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- package sexp_test import ( "testing" "zettelstore.de/client.fossil/sexp" "zettelstore.de/sx.fossil" ) func TestParseObject(t *testing.T) { if elems, err := sexp.ParseList(sx.String("a"), "s"); err == nil { t.Error("expected an error, but got: ", elems) } if elems, err := sexp.ParseList(sx.Nil(), ""); err != nil { t.Error(err) } else if len(elems) != 0 { t.Error("Must be empty, but got:", elems) } if elems, err := sexp.ParseList(sx.Nil(), "b"); err == nil { t.Error("expected error, but got: ", elems) } if elems, err := sexp.ParseList(sx.MakeList(sx.String("a")), "ss"); err == nil { t.Error("expected error, but got: ", elems) } if elems, err := sexp.ParseList(sx.MakeList(sx.String("a")), ""); err == nil { t.Error("expected error, but got: ", elems) } if _, err := sexp.ParseList(sx.MakeList(sx.String("a")), "b"); err != nil { t.Error("expected [1], but got error: ", err) } if elems, err := sexp.ParseList(sx.Cons(sx.Nil(), sx.String("a")), "ps"); err == nil { t.Error("expected error, but got: ", elems) } if elems, err := sexp.ParseList(sx.MakeList(sx.String("a")), "s"); err != nil { t.Error(err) } else if len(elems) != 1 { t.Error("length == 1, but got: ", elems) } else { _ = elems[0].(sx.String) } |
︙ | ︙ |
Deleted shtml/const.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted shtml/lang.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Changes to shtml/shtml.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2023-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | | | | | | > > > > > > > > > > > > | > > > > > > > > > > > > > > > | > > > | > > > | | | | | | | > > > > > > > < < < < < < < < < < < < < | | > | | | | | | | | | | | | | < | | | | < | | | | > > | | | | | | | > | > | | | < < < < | | < | | | | | < | | | > > > > > | | | | | | | | | | | | | > | | | | | > | | | | | | | | < | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > | | | | | | | | | > | | | | | | > | | | | | | | | | | | | | | | | | | | | | | | > | | | | | | | | < < < < < < < | < | < | | | | | | | < | | > > | < | | < | | | | | | | | | > > > > > > | > | | | | | | | | | | | | | | | | | | | | | | | > > > > > > > > > > > > > > > | | | | | | | | | | | | | | | | | | | | | > > > > | | | | | | | | | | | | | | | | | | | | | | > | | > | | | > | | | | | | > | | | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | > | | | | | | | | | | | | | | | | | | | | | | | | | | > > > > > | | < | | | | | | | | > | | < < | < < | | | < < < < < < < | | < | < | | | | | | | | | < < < | | | 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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 | //----------------------------------------------------------------------------- // Copyright (c) 2023-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- // Package shtml transforms a s-expr encoded zettel AST into a s-expr representation of HTML. package shtml import ( "fmt" "net/url" "strconv" "strings" "zettelstore.de/client.fossil/api" "zettelstore.de/client.fossil/attrs" "zettelstore.de/client.fossil/sz" "zettelstore.de/client.fossil/text" "zettelstore.de/sx.fossil" "zettelstore.de/sx.fossil/sxhtml" ) // Evaluator will transform a s-expression that encodes the zettel AST into an s-expression // that represents HTML. type Evaluator struct { sf sx.SymbolFactory headingOffset int64 unique string noLinks bool // true iff output must not include links symAttr *sx.Symbol symList *sx.Symbol symNoEscape *sx.Symbol symClass *sx.Symbol symMeta *sx.Symbol symP *sx.Symbol symLI *sx.Symbol symA *sx.Symbol symHREF *sx.Symbol symSpan *sx.Symbol fns map[string]EvalFn minArgs map[string]int } // NewEvaluator creates a new Evaluator object. func NewEvaluator(headingOffset int, sf sx.SymbolFactory) *Evaluator { if sf == nil { sf = sx.MakeMappedFactory(128) } ev := &Evaluator{ sf: sf, headingOffset: int64(headingOffset), symAttr: sf.MustMake(sxhtml.NameSymAttr), symList: sf.MustMake(sxhtml.NameSymList), symNoEscape: sf.MustMake(sxhtml.NameSymNoEscape), symClass: sf.MustMake("class"), symMeta: sf.MustMake("meta"), symP: sf.MustMake("p"), symLI: sf.MustMake("li"), symA: sf.MustMake("a"), symHREF: sf.MustMake("href"), symSpan: sf.MustMake("span"), fns: make(map[string]EvalFn, 128), minArgs: make(map[string]int, 128), } ev.bindCommon() ev.bindMetadata() ev.bindBlocks() ev.bindInlines() return ev } // SetUnique sets a prefix to make several HTML ids unique. func (tr *Evaluator) SetUnique(s string) { tr.unique = s } // SymbolFactory returns the symbol factory of this evaluator. func (ev *Evaluator) SymbolFactory() sx.SymbolFactory { return ev.sf } // IsValidName returns true, if name is a valid symbol name. func (tr *Evaluator) IsValidName(s string) bool { return tr.sf.IsValidName(s) } // Make a new HTML symbol. func (tr *Evaluator) Make(s string) *sx.Symbol { return tr.sf.MustMake(s) } // EvaluateAttrbute transforms the given attributes into a HTML s-expression. func (tr *Evaluator) EvaluateAttrbute(a attrs.Attributes) *sx.Pair { if len(a) == 0 { return nil } plist := sx.Nil() keys := a.Keys() for i := len(keys) - 1; i >= 0; i-- { key := keys[i] if key != attrs.DefaultAttribute && tr.IsValidName(key) { plist = plist.Cons(sx.Cons(tr.Make(key), sx.String(a[key]))) } } if plist == nil { return nil } return plist.Cons(tr.symAttr) } // Evaluate a metadata s-expression into a list of HTML s-expressions. func (ev *Evaluator) Evaluate(lst *sx.Pair, env *Environment) (*sx.Pair, error) { result := ev.eval(lst, env) if err := env.err; err != nil { return nil, err } pair, isPair := sx.GetPair(result) if !isPair { return nil, fmt.Errorf("evaluation does not result in a pair, but %T/%v", result, result) } for i := 0; i < len(env.endnotes); i++ { // May extend tr.endnotes if env.endnotes[i].noteHx != nil { continue } objHx := ev.eval(env.endnotes[i].noteAST, env) if env.err != nil { break } noteHx, isHx := sx.GetPair(objHx) if !isHx { return nil, fmt.Errorf("endnote evaluation does not result in pair, but %T/%v", objHx, objHx) } env.endnotes[i].noteHx = noteHx } return pair, nil } // Endnotes returns a SHTML object with all collected endnotes. func (ev *Evaluator) Endnotes(env *Environment) *sx.Pair { if env.err != nil || len(env.endnotes) == 0 { return nil } result := sx.Nil().Cons(ev.Make("ol")) symValue, symId, symRole := ev.Make("value"), ev.Make("id"), ev.Make("role") currResult := result.AppendBang(sx.Nil().Cons(sx.Cons(ev.symClass, sx.String("zs-endnotes"))).Cons(ev.symAttr)) for i, fni := range env.endnotes { noteNum := strconv.Itoa(i + 1) attrs := fni.attrs.Cons(sx.Cons(ev.symClass, sx.String("zs-endnote"))). Cons(sx.Cons(symValue, sx.String(noteNum))). Cons(sx.Cons(symId, sx.String("fn:"+fni.noteID))). Cons(sx.Cons(symRole, sx.String("doc-endnote"))). Cons(ev.symAttr) backref := sx.Nil().Cons(sx.String("\u21a9\ufe0e")). Cons(sx.Nil(). Cons(sx.Cons(ev.symClass, sx.String("zs-endnote-backref"))). Cons(sx.Cons(ev.symHREF, sx.String("#fnref:"+fni.noteID))). Cons(sx.Cons(symRole, sx.String("doc-backlink"))). Cons(ev.symAttr)). Cons(ev.symA) li := sx.Nil().Cons(ev.symLI) li.AppendBang(attrs). ExtendBang(fni.noteHx). AppendBang(sx.String(" ")).AppendBang(backref) currResult = currResult.AppendBang(li) } return result } // Environment where sz objects are evaluated to shtml objects type Environment struct { err error langStack []string endnotes []endnoteInfo quoteNesting uint } type endnoteInfo struct { noteID string // link id noteAST sx.Object // Endnote as AST attrs *sx.Pair // attrs a-list noteHx *sx.Pair // Endnote as SxHTML } // MakeEnvironment builds a new evaluation environment. func MakeEnvironment(lang string) Environment { langStack := make([]string, 1, 16) langStack[0] = lang return Environment{ err: nil, langStack: langStack, endnotes: nil, quoteNesting: 0, } } // GetError returns the last error found. func (env *Environment) GetError() error { return env.err } // Reset the environment. func (env *Environment) Reset() { env.langStack = env.langStack[0:1] env.endnotes = nil env.quoteNesting = 0 } // PushAttribute adds the current attributes to the environment. func (env *Environment) pushAttributes(a attrs.Attributes) { if value, ok := a.Get("lang"); ok { env.langStack = append(env.langStack, value) } else { env.langStack = append(env.langStack, env.getLanguage()) } } // popAttributes removes the current attributes from the envrionment func (env *Environment) popAttributes() { env.langStack = env.langStack[0 : len(env.langStack)-1] } // getLanguage returns the current language func (env *Environment) getLanguage() string { return env.langStack[len(env.langStack)-1] } // EvalFn is a function to be called for evaluation. type EvalFn func([]sx.Object, *Environment) sx.Object func (ev *Evaluator) bind(name string, minArgs int, fn EvalFn) { ev.fns[name] = fn if minArgs > 0 { ev.minArgs[name] = minArgs } } // ResolveBinding returns the function bound to the given name. func (ev *Evaluator) ResolveBinding(name string) EvalFn { if fn, found := ev.fns[name]; found { return fn } return nil } // Rebind overwrites a binding, but leaves the minimum number of arguments intact. func (ev *Evaluator) Rebind(name string, fn EvalFn) { if _, found := ev.fns[name]; !found { panic(name) } ev.fns[name] = fn } func (ev *Evaluator) bindCommon() { ev.bind(sx.ListName, 0, ev.evalList) ev.bind("quote", 1, func(args []sx.Object, _ *Environment) sx.Object { return args[0] }) } func (ev *Evaluator) bindMetadata() { ev.bind(sz.NameSymMeta, 0, ev.evalList) evalMetaString := func(args []sx.Object, env *Environment) sx.Object { a := make(attrs.Attributes, 2). Set("name", ev.getSymbol(ev.eval(args[0], env), env).Name()). Set("content", getString(args[1], env).String()) return ev.EvaluateMeta(a) } ev.bind(sz.NameSymTypeCredential, 2, evalMetaString) ev.bind(sz.NameSymTypeEmpty, 2, evalMetaString) ev.bind(sz.NameSymTypeID, 2, evalMetaString) ev.bind(sz.NameSymTypeNumber, 2, evalMetaString) ev.bind(sz.NameSymTypeString, 2, evalMetaString) ev.bind(sz.NameSymTypeTimestamp, 2, evalMetaString) ev.bind(sz.NameSymTypeURL, 2, evalMetaString) ev.bind(sz.NameSymTypeWord, 2, evalMetaString) evalMetaSet := func(args []sx.Object, env *Environment) sx.Object { var sb strings.Builder lst := ev.eval(args[1], env) for elem := getList(lst, env); elem != nil; elem = elem.Tail() { sb.WriteByte(' ') sb.WriteString(getString(elem.Car(), env).String()) } s := sb.String() if len(s) > 0 { s = s[1:] } a := make(attrs.Attributes, 2). Set("name", ev.getSymbol(ev.eval(args[0], env), env).Name()). Set("content", s) return ev.EvaluateMeta(a) } ev.bind(sz.NameSymTypeIDSet, 2, evalMetaSet) ev.bind(sz.NameSymTypeTagSet, 2, evalMetaSet) ev.bind(sz.NameSymTypeWordSet, 2, evalMetaSet) ev.bind(sz.NameSymTypeZettelmarkup, 2, func(args []sx.Object, env *Environment) sx.Object { a := make(attrs.Attributes, 2). Set("name", ev.getSymbol(ev.eval(args[0], env), env).String()). Set("content", text.EvaluateInlineString(getList(args[1], env))) return ev.EvaluateMeta(a) }) } // EvaluateMeta returns HTML meta object for an attribute. func (ev *Evaluator) EvaluateMeta(a attrs.Attributes) *sx.Pair { return sx.Nil().Cons(ev.EvaluateAttrbute(a)).Cons(ev.symMeta) } func (ev *Evaluator) bindBlocks() { ev.bind(sz.NameSymBlock, 0, ev.evalList) ev.bind(sz.NameSymPara, 0, func(args []sx.Object, env *Environment) sx.Object { return ev.evalSlice(args, env).Cons(ev.symP) }) ev.bind(sz.NameSymHeading, 5, func(args []sx.Object, env *Environment) sx.Object { nLevel := getInt64(args[0], env) if nLevel <= 0 { env.err = fmt.Errorf("%v is a negative level", nLevel) return sx.Nil() } level := strconv.FormatInt(nLevel+ev.headingOffset, 10) a := ev.getAttributes(args[1], env) env.pushAttributes(a) defer env.popAttributes() if fragment := getString(args[3], env).String(); fragment != "" { a = a.Set("id", ev.unique+fragment) } if result, isPair := sx.GetPair(ev.eval(args[4], env)); isPair && result != nil { if len(a) > 0 { result = result.Cons(ev.EvaluateAttrbute(a)) } return result.Cons(ev.Make("h" + level)) } return sx.MakeList(ev.Make("h"+level), sx.String("<MISSING TEXT>")) }) ev.bind(sz.NameSymThematic, 0, func(args []sx.Object, env *Environment) sx.Object { result := sx.Nil() if len(args) > 0 { if attrList := getList(ev.eval(args[0], env), env); attrList != nil { result = result.Cons(ev.EvaluateAttrbute(sz.GetAttributes(attrList))) } } return result.Cons(ev.Make("hr")) }) ev.bind(sz.NameSymListOrdered, 0, ev.makeListFn("ol")) ev.bind(sz.NameSymListUnordered, 0, ev.makeListFn("ul")) ev.bind(sz.NameSymDescription, 0, func(args []sx.Object, env *Environment) sx.Object { if len(args) == 0 { return sx.Nil() } items := sx.Nil().Cons(ev.Make("dl")) curItem := items for pos := 0; pos < len(args); pos++ { term := getList(ev.eval(args[pos], env), env) curItem = curItem.AppendBang(term.Cons(ev.Make("dt"))) pos++ if pos >= len(args) { break } ddBlock := getList(ev.eval(args[pos], env), env) if ddBlock == nil { continue } for ddlst := ddBlock; ddlst != nil; ddlst = ddlst.Tail() { dditem := getList(ddlst.Car(), env) curItem = curItem.AppendBang(dditem.Cons(ev.Make("dd"))) } } return items }) ev.bind(sz.NameSymListQuote, 0, func(args []sx.Object, env *Environment) sx.Object { if args == nil { return sx.Nil() } result := sx.Nil().Cons(ev.Make("blockquote")) currResult := result for _, elem := range args { if quote, isPair := sx.GetPair(ev.eval(elem, env)); isPair { currResult = currResult.AppendBang(quote.Cons(ev.symP)) } } return result }) ev.bind(sz.NameSymTable, 1, func(args []sx.Object, env *Environment) sx.Object { thead := sx.Nil() if header := getList(ev.eval(args[0], env), env); !sx.IsNil(header) { thead = sx.Nil().Cons(ev.evalTableRow(header)).Cons(ev.Make("thead")) } tbody := sx.Nil() if len(args) > 1 { tbody = sx.Nil().Cons(ev.Make("tbody")) curBody := tbody for _, row := range args[1:] { curBody = curBody.AppendBang(ev.evalTableRow(getList(ev.eval(row, env), env))) } } table := sx.Nil() if tbody != nil { table = table.Cons(tbody) } if thead != nil { table = table.Cons(thead) } if table == nil { return sx.Nil() } return table.Cons(ev.Make("table")) }) ev.bind(sz.NameSymCell, 0, ev.makeCellFn("")) ev.bind(sz.NameSymCellCenter, 0, ev.makeCellFn("center")) ev.bind(sz.NameSymCellLeft, 0, ev.makeCellFn("left")) ev.bind(sz.NameSymCellRight, 0, ev.makeCellFn("right")) symDiv := ev.Make("div") ev.bind(sz.NameSymRegionBlock, 2, ev.makeRegionFn(symDiv, true)) ev.bind(sz.NameSymRegionQuote, 2, ev.makeRegionFn(ev.Make("blockquote"), false)) ev.bind(sz.NameSymRegionVerse, 2, ev.makeRegionFn(symDiv, false)) ev.bind(sz.NameSymVerbatimComment, 1, func(args []sx.Object, env *Environment) sx.Object { if ev.getAttributes(args[0], env).HasDefault() { if len(args) > 1 { if s := getString(args[1], env); s != "" { t := sx.String(s.String()) return sx.Nil().Cons(t).Cons(ev.Make(sxhtml.NameSymBlockComment)) } } } return nil }) ev.bind(sz.NameSymVerbatimEval, 2, func(args []sx.Object, env *Environment) sx.Object { return ev.evalVerbatim(ev.getAttributes(args[0], env).AddClass("zs-eval"), getString(args[1], env)) }) ev.bind(sz.NameSymVerbatimHTML, 2, ev.evalHTML) ev.bind(sz.NameSymVerbatimMath, 2, func(args []sx.Object, env *Environment) sx.Object { return ev.evalVerbatim(ev.getAttributes(args[0], env).AddClass("zs-math"), getString(args[1], env)) }) ev.bind(sz.NameSymVerbatimProg, 2, func(args []sx.Object, env *Environment) sx.Object { a := ev.getAttributes(args[0], env) content := getString(args[1], env) if a.HasDefault() { content = sx.String(visibleReplacer.Replace(content.String())) } return ev.evalVerbatim(a, content) }) ev.bind(sz.NameSymVerbatimZettel, 0, nilFn) ev.bind(sz.NameSymBLOB, 3, func(args []sx.Object, env *Environment) sx.Object { return ev.evalBLOB(getList(args[0], env), getString(args[1], env), getString(args[2], env)) }) ev.bind(sz.NameSymTransclude, 2, func(args []sx.Object, env *Environment) sx.Object { ref, isPair := sx.GetPair(ev.eval(args[1], env)) if !isPair { return sx.Nil() } refKind := ref.Car() if sx.IsNil(refKind) { return sx.Nil() } if refValue := getString(ref.Tail().Car(), env); refValue != "" { if refSym, isRefSym := sx.GetSymbol(refKind); isRefSym && refSym.Name() == sz.NameSymRefStateExternal { a := ev.getAttributes(args[0], env).Set("src", refValue.String()).AddClass("external") return sx.Nil().Cons(sx.Nil().Cons(ev.EvaluateAttrbute(a)).Cons(ev.Make("img"))).Cons(ev.symP) } return sx.MakeList( ev.Make(sxhtml.NameSymInlineComment), sx.String("transclude"), refKind, sx.String("->"), refValue, ) } return ev.evalSlice(args, env) }) } func (ev *Evaluator) makeListFn(tag string) EvalFn { sym := ev.Make(tag) return func(args []sx.Object, env *Environment) sx.Object { result := sx.Nil().Cons(sym) last := result for _, elem := range args { item := sx.Nil().Cons(ev.symLI) if res, isPair := sx.GetPair(ev.eval(elem, env)); isPair { item.ExtendBang(res) } last = last.AppendBang(item) } return result } } func (ev *Evaluator) evalTableRow(pairs *sx.Pair) *sx.Pair { row := sx.Nil().Cons(ev.Make("tr")) if pairs == nil { return nil } curRow := row for pair := pairs; pair != nil; pair = pair.Tail() { curRow = curRow.AppendBang(pair.Car()) } return row } func (ev *Evaluator) makeCellFn(align string) EvalFn { return func(args []sx.Object, env *Environment) sx.Object { tdata := ev.evalSlice(args, env) if align != "" { tdata = tdata.Cons(ev.EvaluateAttrbute(attrs.Attributes{"class": align})) } return tdata.Cons(ev.Make("td")) } } func (ev *Evaluator) makeRegionFn(sym *sx.Symbol, genericToClass bool) EvalFn { return func(args []sx.Object, env *Environment) sx.Object { a := ev.getAttributes(args[0], env) env.pushAttributes(a) defer env.popAttributes() if genericToClass { if val, found := a.Get(""); found { a = a.Remove("").AddClass(val) } } result := sx.Nil() if len(a) > 0 { result = result.Cons(ev.EvaluateAttrbute(a)) } result = result.Cons(sym) currResult := result.LastPair() if region, isPair := sx.GetPair(ev.eval(args[1], env)); isPair { currResult = currResult.ExtendBang(region) } if len(args) > 2 { if cite, isPair := sx.GetPair(ev.eval(args[2], env)); isPair && cite != nil { currResult.AppendBang(cite.Cons(ev.Make("cite"))) } } return result } } func (ev *Evaluator) evalVerbatim(a attrs.Attributes, s sx.String) sx.Object { a = setProgLang(a) code := sx.Nil().Cons(s) if al := ev.EvaluateAttrbute(a); al != nil { code = code.Cons(al) } code = code.Cons(ev.Make("code")) return sx.Nil().Cons(code).Cons(ev.Make("pre")) } func (ev *Evaluator) bindInlines() { ev.bind(sz.NameSymInline, 0, ev.evalList) ev.bind(sz.NameSymText, 1, func(args []sx.Object, env *Environment) sx.Object { return getString(args[0], env) }) ev.bind(sz.NameSymSpace, 0, func(args []sx.Object, env *Environment) sx.Object { if len(args) == 0 { return sx.String(" ") } return getString(args[0], env) }) ev.bind(sz.NameSymSoft, 0, func([]sx.Object, *Environment) sx.Object { return sx.String(" ") }) symBR := ev.Make("br") ev.bind(sz.NameSymHard, 0, func([]sx.Object, *Environment) sx.Object { return sx.Nil().Cons(symBR) }) ev.bind(sz.NameSymLinkInvalid, 2, func(args []sx.Object, env *Environment) sx.Object { a := ev.getAttributes(args[0], env) env.pushAttributes(a) defer env.popAttributes() var inline *sx.Pair if len(args) > 2 { inline = ev.evalSlice(args[2:], env) } if inline == nil { inline = sx.Nil().Cons(ev.eval(args[1], env)) } return inline.Cons(ev.symSpan) }) evalHREF := func(args []sx.Object, env *Environment) sx.Object { a := ev.getAttributes(args[0], env) env.pushAttributes(a) defer env.popAttributes() refValue := getString(args[1], env) return ev.evalLink(a.Set("href", refValue.String()), refValue, args[2:], env) } ev.bind(sz.NameSymLinkZettel, 2, evalHREF) ev.bind(sz.NameSymLinkSelf, 2, evalHREF) ev.bind(sz.NameSymLinkFound, 2, evalHREF) ev.bind(sz.NameSymLinkBroken, 2, func(args []sx.Object, env *Environment) sx.Object { a := ev.getAttributes(args[0], env) env.pushAttributes(a) defer env.popAttributes() refValue := getString(args[1], env) return ev.evalLink(a.AddClass("broken"), refValue, args[2:], env) }) ev.bind(sz.NameSymLinkHosted, 2, evalHREF) ev.bind(sz.NameSymLinkBased, 2, evalHREF) ev.bind(sz.NameSymLinkQuery, 2, func(args []sx.Object, env *Environment) sx.Object { a := ev.getAttributes(args[0], env) env.pushAttributes(a) defer env.popAttributes() refValue := getString(args[1], env) query := "?" + api.QueryKeyQuery + "=" + url.QueryEscape(refValue.String()) return ev.evalLink(a.Set("href", query), refValue, args[2:], env) }) ev.bind(sz.NameSymLinkExternal, 2, func(args []sx.Object, env *Environment) sx.Object { a := ev.getAttributes(args[0], env) env.pushAttributes(a) defer env.popAttributes() refValue := getString(args[1], env) return ev.evalLink(a.Set("href", refValue.String()).AddClass("external"), refValue, args[2:], env) }) ev.bind(sz.NameSymEmbed, 3, func(args []sx.Object, env *Environment) sx.Object { ref := getList(ev.eval(args[1], env), env) syntax := getString(args[2], env) if syntax == api.ValueSyntaxSVG { embedAttr := sx.MakeList( ev.symAttr, sx.Cons(ev.Make("type"), sx.String("image/svg+xml")), sx.Cons(ev.Make("src"), sx.String("/"+getString(ref.Tail(), env).String()+".svg")), ) return sx.MakeList( ev.Make("figure"), sx.MakeList( ev.Make("embed"), embedAttr, ), ) } a := ev.getAttributes(args[0], env) a = a.Set("src", getString(ref.Tail().Car(), env).String()) if len(args) > 3 { var sb strings.Builder flattenText(&sb, sx.MakeList(args[3:]...)) if d := sb.String(); d != "" { a = a.Set("alt", d) } } return sx.MakeList(ev.Make("img"), ev.EvaluateAttrbute(a)) }) ev.bind(sz.NameSymEmbedBLOB, 3, func(args []sx.Object, env *Environment) sx.Object { a, syntax, data := ev.getAttributes(args[0], env), getString(args[1], env), getString(args[2], env) summary, hasSummary := a.Get(api.KeySummary) if !hasSummary { summary = "" } return ev.evalBLOB( sx.MakeList(ev.Make(sx.ListName), sx.String(summary)), syntax, data, ) }) ev.bind(sz.NameSymCite, 2, func(args []sx.Object, env *Environment) sx.Object { a := ev.getAttributes(args[0], env) env.pushAttributes(a) defer env.popAttributes() result := sx.Nil() if key := getString(args[1], env); key != "" { if len(args) > 2 { result = ev.evalSlice(args[2:], env).Cons(sx.String(", ")) } result = result.Cons(key) } if len(a) > 0 { result = result.Cons(ev.EvaluateAttrbute(a)) } if result == nil { return nil } return result.Cons(ev.symSpan) }) ev.bind(sz.NameSymMark, 3, func(args []sx.Object, env *Environment) sx.Object { result := ev.evalSlice(args[3:], env) if !ev.noLinks { if fragment := getString(args[2], env); fragment != "" { a := attrs.Attributes{"id": fragment.String() + ev.unique} return result.Cons(ev.EvaluateAttrbute(a)).Cons(ev.symA) } } return result.Cons(ev.symSpan) }) ev.bind(sz.NameSymEndnote, 1, func(args []sx.Object, env *Environment) sx.Object { a := ev.getAttributes(args[0], env) env.pushAttributes(a) defer env.popAttributes() attrPlist := sx.Nil() if len(a) > 0 { if attrs := ev.EvaluateAttrbute(a); attrs != nil { attrPlist = attrs.Tail() } } text, isPair := sx.GetPair(args[1]) if !isPair { return sx.Nil() } noteNum := strconv.Itoa(len(env.endnotes) + 1) noteID := ev.unique + noteNum env.endnotes = append(env.endnotes, endnoteInfo{ noteID: noteID, noteAST: ev.eval(text, env), noteHx: nil, attrs: attrPlist}) hrefAttr := sx.Nil().Cons(sx.Cons(ev.Make("role"), sx.String("doc-noteref"))). Cons(sx.Cons(ev.symHREF, sx.String("#fn:"+noteID))). Cons(sx.Cons(ev.symClass, sx.String("zs-noteref"))). Cons(ev.symAttr) href := sx.Nil().Cons(sx.String(noteNum)).Cons(hrefAttr).Cons(ev.symA) supAttr := sx.Nil().Cons(sx.Cons(ev.Make("id"), sx.String("fnref:"+noteID))).Cons(ev.symAttr) return sx.Nil().Cons(href).Cons(supAttr).Cons(ev.Make("sup")) }) ev.bind(sz.NameSymFormatDelete, 1, ev.makeFormatFn("del")) ev.bind(sz.NameSymFormatEmph, 1, ev.makeFormatFn("em")) ev.bind(sz.NameSymFormatInsert, 1, ev.makeFormatFn("ins")) ev.bind(sz.NameSymFormatMark, 1, ev.makeFormatFn("mark")) ev.bind(sz.NameSymFormatQuote, 1, ev.evalQuote) ev.bind(sz.NameSymFormatSpan, 1, ev.makeFormatFn("span")) ev.bind(sz.NameSymFormatStrong, 1, ev.makeFormatFn("strong")) ev.bind(sz.NameSymFormatSub, 1, ev.makeFormatFn("sub")) ev.bind(sz.NameSymFormatSuper, 1, ev.makeFormatFn("sup")) ev.bind(sz.NameSymLiteralComment, 1, func(args []sx.Object, env *Environment) sx.Object { if ev.getAttributes(args[0], env).HasDefault() { if len(args) > 1 { if s := getString(ev.eval(args[1], env), env); s != "" { return sx.Nil().Cons(s).Cons(ev.Make(sxhtml.NameSymInlineComment)) } } } return sx.Nil() }) ev.bind(sz.NameSymLiteralHTML, 2, ev.evalHTML) kbdSym := ev.Make("kbd") ev.bind(sz.NameSymLiteralInput, 2, func(args []sx.Object, env *Environment) sx.Object { return ev.evalLiteral(args, nil, kbdSym, env) }) codeSym := ev.Make("code") ev.bind(sz.NameSymLiteralMath, 2, func(args []sx.Object, env *Environment) sx.Object { a := ev.getAttributes(args[0], env).AddClass("zs-math") return ev.evalLiteral(args, a, codeSym, env) }) sampSym := ev.Make("samp") ev.bind(sz.NameSymLiteralOutput, 2, func(args []sx.Object, env *Environment) sx.Object { return ev.evalLiteral(args, nil, sampSym, env) }) ev.bind(sz.NameSymLiteralProg, 2, func(args []sx.Object, env *Environment) sx.Object { return ev.evalLiteral(args, nil, codeSym, env) }) ev.bind(sz.NameSymLiteralZettel, 0, nilFn) } func (ev *Evaluator) makeFormatFn(tag string) EvalFn { sym := ev.Make(tag) return func(args []sx.Object, env *Environment) sx.Object { a := ev.getAttributes(args[0], env) env.pushAttributes(a) defer env.popAttributes() if val, hasClass := a.Get(""); hasClass { a = a.Remove("").AddClass(val) } res := ev.evalSlice(args[1:], env) if len(a) > 0 { res = res.Cons(ev.EvaluateAttrbute(a)) } return res.Cons(sym) } } type quoteData struct { primLeft, primRight string secLeft, secRight string nbsp bool } var langQuotes = map[string]quoteData{ "": {""", """, """, """, false}, api.ValueLangEN: {"“", "”", "‘", "’", false}, "de": {"„", "“", "‚", "‘", false}, "fr": {"«", "»", "‹", "›", true}, } func getQuoteData(lang string) quoteData { langFields := strings.FieldsFunc(lang, func(r rune) bool { return r == '-' || r == '_' }) for len(langFields) > 0 { langSup := strings.Join(langFields, "-") quotes, ok := langQuotes[langSup] if ok { return quotes } langFields = langFields[0 : len(langFields)-1] } return langQuotes[""] } func getQuotes(data *quoteData, env *Environment) (string, string) { if env.quoteNesting%2 == 0 { return data.primLeft, data.primRight } return data.secLeft, data.secRight } func (ev *Evaluator) evalQuote(args []sx.Object, env *Environment) sx.Object { a := ev.getAttributes(args[0], env) env.pushAttributes(a) defer env.popAttributes() if val, hasClass := a.Get(""); hasClass { a = a.Remove("").AddClass(val) } quotes := getQuoteData(env.getLanguage()) leftQ, rightQ := getQuotes("es, env) env.quoteNesting++ res := ev.evalSlice(args[1:], env) env.quoteNesting-- lastPair := res.LastPair() if lastPair.IsNil() { res = sx.Cons(sx.MakeList(ev.symNoEscape, sx.String(leftQ), sx.String(rightQ)), sx.Nil()) } else { if quotes.nbsp { lastPair.AppendBang(sx.MakeList(ev.symNoEscape, sx.String(" "), sx.String(rightQ))) res = res.Cons(sx.MakeList(ev.symNoEscape, sx.String(leftQ), sx.String(" "))) } else { lastPair.AppendBang(sx.MakeList(ev.symNoEscape, sx.String(rightQ))) res = res.Cons(sx.MakeList(ev.symNoEscape, sx.String(leftQ))) } } if len(a) > 0 { res = res.Cons(ev.EvaluateAttrbute(a)) return res.Cons(ev.symSpan) } return res.Cons(ev.symList) } var visibleReplacer = strings.NewReplacer(" ", "\u2423") func (ev *Evaluator) evalLiteral(args []sx.Object, a attrs.Attributes, sym *sx.Symbol, env *Environment) sx.Object { if a == nil { a = ev.getAttributes(args[0], env) } a = setProgLang(a) literal := getString(args[1], env).String() if a.HasDefault() { a = a.RemoveDefault() literal = visibleReplacer.Replace(literal) } res := sx.Nil().Cons(sx.String(literal)) if len(a) > 0 { res = res.Cons(ev.EvaluateAttrbute(a)) } return res.Cons(sym) } func setProgLang(a attrs.Attributes) attrs.Attributes { if val, found := a.Get(""); found { a = a.AddClass("language-" + val).Remove("") } return a } func (ev *Evaluator) evalHTML(args []sx.Object, env *Environment) sx.Object { if s := getString(ev.eval(args[1], env), env); s != "" && IsSafe(s.String()) { return sx.Nil().Cons(s).Cons(ev.symNoEscape) } return nil } func (ev *Evaluator) evalBLOB(description *sx.Pair, syntax, data sx.String) sx.Object { if data == "" { return sx.Nil() } switch syntax { case "": return sx.Nil() case api.ValueSyntaxSVG: return sx.Nil().Cons(sx.Nil().Cons(data).Cons(ev.symNoEscape)).Cons(ev.symP) default: imgAttr := sx.Nil().Cons(sx.Cons(ev.Make("src"), sx.String("data:image/"+syntax.String()+";base64,"+data.String()))) var sb strings.Builder flattenText(&sb, description) if d := sb.String(); d != "" { imgAttr = imgAttr.Cons(sx.Cons(ev.Make("alt"), sx.String(d))) } return sx.Nil().Cons(sx.Nil().Cons(imgAttr.Cons(ev.symAttr)).Cons(ev.Make("img"))).Cons(ev.symP) } } func flattenText(sb *strings.Builder, lst *sx.Pair) { for elem := lst; elem != nil; elem = elem.Tail() { switch obj := elem.Car().(type) { case sx.String: sb.WriteString(obj.String()) case *sx.Symbol: if obj.Name() == sz.NameSymSpace { sb.WriteByte(' ') break } case *sx.Pair: flattenText(sb, obj) } } } func (ev *Evaluator) evalList(args []sx.Object, env *Environment) sx.Object { return ev.evalSlice(args, env) } func nilFn([]sx.Object, *Environment) sx.Object { return sx.Nil() } func (ev *Evaluator) eval(obj sx.Object, env *Environment) sx.Object { if env.err != nil { return sx.Nil() } if sx.IsNil(obj) { return obj } lst, isLst := sx.GetPair(obj) if !isLst { return obj } sym, found := sx.GetSymbol(lst.Car()) if !found { env.err = fmt.Errorf("symbol expected, but got %T/%v", lst.Car(), lst.Car()) return sx.Nil() } name := sym.Name() fn, found := ev.fns[name] if !found { env.err = fmt.Errorf("symbol %q not bound", name) return sx.Nil() } var args []sx.Object for cdr := lst.Cdr(); !sx.IsNil(cdr); { pair, isPair := sx.GetPair(cdr) if !isPair { break } args = append(args, pair.Car()) cdr = pair.Cdr() } if minArgs, hasMinArgs := ev.minArgs[name]; hasMinArgs { if minArgs > len(args) { env.err = fmt.Errorf("%v needs at least %d arguments, but got only %d", name, minArgs, len(args)) return sx.Nil() } } result := fn(args, env) if env.err != nil { return sx.Nil() } return result } func (ev *Evaluator) evalSlice(args []sx.Object, env *Environment) *sx.Pair { result := sx.Cons(sx.Nil(), sx.Nil()) curr := result for _, arg := range args { elem := ev.eval(arg, env) if env.err != nil { return nil } curr = curr.AppendBang(elem) } return result.Tail() } func (ev *Evaluator) evalLink(a attrs.Attributes, refValue sx.String, inline []sx.Object, env *Environment) sx.Object { result := ev.evalSlice(inline, env) if len(inline) == 0 { result = sx.Nil().Cons(refValue) } if ev.noLinks { return result.Cons(ev.symSpan) } return result.Cons(ev.EvaluateAttrbute(a)).Cons(ev.symA) } func (ev *Evaluator) getSymbol(val sx.Object, env *Environment) *sx.Symbol { if env.err == nil { if sym, ok := sx.GetSymbol(val); ok { return sym } env.err = fmt.Errorf("%v/%T is not a symbol", val, val) } return ev.Make("???") } func getString(val sx.Object, env *Environment) sx.String { if env.err != nil { return "" } if s, ok := sx.GetString(val); ok { return s } env.err = fmt.Errorf("%v/%T is not a string", val, val) return "" } func getList(val sx.Object, env *Environment) *sx.Pair { if env.err == nil { if res, isPair := sx.GetPair(val); isPair { return res } env.err = fmt.Errorf("%v/%T is not a list", val, val) } return nil } func getInt64(val sx.Object, env *Environment) int64 { if env.err != nil { return -1017 } if num, ok := sx.GetNumber(val); ok { return int64(num.(sx.Int64)) } env.err = fmt.Errorf("%v/%T is not a number", val, val) return -1017 } func (ev *Evaluator) getAttributes(arg sx.Object, env *Environment) attrs.Attributes { return sz.GetAttributes(getList(ev.eval(arg, env), env)) } var unsafeSnippets = []string{ "<script", "</script", "<iframe", "</iframe", } |
︙ | ︙ |
Changes to sz/const.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | | | | | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | > | | | | | | | | | | > > | > > > | > > > > > > > > > > > > > > > > > > | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | | | > | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > | < > | 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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- package sz import "zettelstore.de/sx.fossil" // Various constants for Zettel data. Some of them are technically variables. const ( // Symbols for Metanodes NameSymBlock = "BLOCK" NameSymInline = "INLINE" NameSymMeta = "META" // Symbols for Zettel node types. NameSymBLOB = "BLOB" NameSymCell = "CELL" NameSymCellCenter = "CELL-CENTER" NameSymCellLeft = "CELL-LEFT" NameSymCellRight = "CELL-RIGHT" NameSymCite = "CITE" NameSymDescription = "DESCRIPTION" NameSymEmbed = "EMBED" NameSymEmbedBLOB = "EMBED-BLOB" NameSymEndnote = "ENDNOTE" NameSymFormatEmph = "FORMAT-EMPH" NameSymFormatDelete = "FORMAT-DELETE" NameSymFormatInsert = "FORMAT-INSERT" NameSymFormatMark = "FORMAT-MARK" NameSymFormatQuote = "FORMAT-QUOTE" NameSymFormatSpan = "FORMAT-SPAN" NameSymFormatSub = "FORMAT-SUB" NameSymFormatSuper = "FORMAT-SUPER" NameSymFormatStrong = "FORMAT-STRONG" NameSymHard = "HARD" NameSymHeading = "HEADING" NameSymLinkInvalid = "LINK-INVALID" NameSymLinkZettel = "LINK-ZETTEL" NameSymLinkSelf = "LINK-SELF" NameSymLinkFound = "LINK-FOUND" NameSymLinkBroken = "LINK-BROKEN" NameSymLinkHosted = "LINK-HOSTED" NameSymLinkBased = "LINK-BASED" NameSymLinkQuery = "LINK-QUERY" NameSymLinkExternal = "LINK-EXTERNAL" NameSymListOrdered = "ORDERED" NameSymListUnordered = "UNORDERED" NameSymListQuote = "QUOTATION" NameSymLiteralProg = "LITERAL-CODE" NameSymLiteralComment = "LITERAL-COMMENT" NameSymLiteralHTML = "LITERAL-HTML" NameSymLiteralInput = "LITERAL-INPUT" NameSymLiteralMath = "LITERAL-MATH" NameSymLiteralOutput = "LITERAL-OUTPUT" NameSymLiteralZettel = "LITERAL-ZETTEL" NameSymMark = "MARK" NameSymPara = "PARA" NameSymRegionBlock = "REGION-BLOCK" NameSymRegionQuote = "REGION-QUOTE" NameSymRegionVerse = "REGION-VERSE" NameSymSoft = "SOFT" NameSymSpace = "SPACE" NameSymTable = "TABLE" NameSymText = "TEXT" NameSymThematic = "THEMATIC" NameSymTransclude = "TRANSCLUDE" NameSymUnknown = "UNKNOWN-NODE" NameSymVerbatimComment = "VERBATIM-COMMENT" NameSymVerbatimEval = "VERBATIM-EVAL" NameSymVerbatimHTML = "VERBATIM-HTML" NameSymVerbatimMath = "VERBATIM-MATH" NameSymVerbatimProg = "VERBATIM-CODE" NameSymVerbatimZettel = "VERBATIM-ZETTEL" // Constant symbols for reference states. NameSymRefStateInvalid = "INVALID" NameSymRefStateZettel = "ZETTEL" NameSymRefStateSelf = "SELF" NameSymRefStateFound = "FOUND" NameSymRefStateBroken = "BROKEN" NameSymRefStateHosted = "HOSTED" NameSymRefStateBased = "BASED" NameSymRefStateQuery = "QUERY" NameSymRefStateExternal = "EXTERNAL" // Symbols for metadata types. NameSymTypeCredential = "CREDENTIAL" NameSymTypeEmpty = "EMPTY-STRING" NameSymTypeID = "ZID" NameSymTypeIDSet = "ZID-SET" NameSymTypeNumber = "NUMBER" NameSymTypeString = "STRING" NameSymTypeTagSet = "TAG-SET" NameSymTypeTimestamp = "TIMESTAMP" NameSymTypeURL = "URL" NameSymTypeWord = "WORD" NameSymTypeWordSet = "WORD-SET" NameSymTypeZettelmarkup = "ZETTELMARKUP" ) // ZettelSymbols collect all symbols needed to represent zettel data. type ZettelSymbols struct { // Symbols for Metanodes SymBlock *sx.Symbol SymInline *sx.Symbol SymList *sx.Symbol SymMeta *sx.Symbol SymQuote *sx.Symbol // Symbols for Zettel node types. SymBLOB *sx.Symbol SymCell *sx.Symbol SymCellCenter *sx.Symbol SymCellLeft *sx.Symbol SymCellRight *sx.Symbol SymCite *sx.Symbol SymDescription *sx.Symbol SymEmbed *sx.Symbol SymEmbedBLOB *sx.Symbol SymEndnote *sx.Symbol SymFormatEmph *sx.Symbol SymFormatDelete *sx.Symbol SymFormatInsert *sx.Symbol SymFormatMark *sx.Symbol SymFormatQuote *sx.Symbol SymFormatSpan *sx.Symbol SymFormatSub *sx.Symbol SymFormatSuper *sx.Symbol SymFormatStrong *sx.Symbol SymHard *sx.Symbol SymHeading *sx.Symbol SymLinkInvalid *sx.Symbol SymLinkZettel *sx.Symbol SymLinkSelf *sx.Symbol SymLinkFound *sx.Symbol SymLinkBroken *sx.Symbol SymLinkHosted *sx.Symbol SymLinkBased *sx.Symbol SymLinkQuery *sx.Symbol SymLinkExternal *sx.Symbol SymListOrdered *sx.Symbol SymListUnordered *sx.Symbol SymListQuote *sx.Symbol SymLiteralProg *sx.Symbol SymLiteralComment *sx.Symbol SymLiteralHTML *sx.Symbol SymLiteralInput *sx.Symbol SymLiteralMath *sx.Symbol SymLiteralOutput *sx.Symbol SymLiteralZettel *sx.Symbol SymMark *sx.Symbol SymPara *sx.Symbol SymRegionBlock *sx.Symbol SymRegionQuote *sx.Symbol SymRegionVerse *sx.Symbol SymSoft *sx.Symbol SymSpace *sx.Symbol SymTable *sx.Symbol SymText *sx.Symbol SymThematic *sx.Symbol SymTransclude *sx.Symbol SymUnknown *sx.Symbol SymVerbatimComment *sx.Symbol SymVerbatimEval *sx.Symbol SymVerbatimHTML *sx.Symbol SymVerbatimMath *sx.Symbol SymVerbatimProg *sx.Symbol SymVerbatimZettel *sx.Symbol // Constant symbols for reference states. SymRefStateInvalid *sx.Symbol SymRefStateZettel *sx.Symbol SymRefStateSelf *sx.Symbol SymRefStateFound *sx.Symbol SymRefStateBroken *sx.Symbol SymRefStateHosted *sx.Symbol SymRefStateBased *sx.Symbol SymRefStateQuery *sx.Symbol SymRefStateExternal *sx.Symbol // Symbols for metadata types SymTypeCredential *sx.Symbol SymTypeEmpty *sx.Symbol SymTypeID *sx.Symbol SymTypeIDSet *sx.Symbol SymTypeNumber *sx.Symbol SymTypeString *sx.Symbol SymTypeTagSet *sx.Symbol SymTypeTimestamp *sx.Symbol SymTypeURL *sx.Symbol SymTypeWord *sx.Symbol SymTypeWordSet *sx.Symbol SymTypeZettelmarkup *sx.Symbol } func (zs *ZettelSymbols) InitializeZettelSymbols(sf sx.SymbolFactory) { // Symbols for Metanodes zs.SymBlock = sf.MustMake(NameSymBlock) zs.SymInline = sf.MustMake(NameSymInline) zs.SymList = sf.MustMake(sx.ListName) zs.SymMeta = sf.MustMake(NameSymMeta) zs.SymQuote = sf.MustMake(sx.QuoteName) // Symbols for Zettel node types. zs.SymBLOB = sf.MustMake(NameSymBLOB) zs.SymCell = sf.MustMake(NameSymCell) zs.SymCellCenter = sf.MustMake(NameSymCellCenter) zs.SymCellLeft = sf.MustMake(NameSymCellLeft) zs.SymCellRight = sf.MustMake(NameSymCellRight) zs.SymCite = sf.MustMake(NameSymCite) zs.SymDescription = sf.MustMake(NameSymDescription) zs.SymEmbed = sf.MustMake(NameSymEmbed) zs.SymEmbedBLOB = sf.MustMake(NameSymEmbedBLOB) zs.SymEndnote = sf.MustMake(NameSymEndnote) zs.SymFormatEmph = sf.MustMake(NameSymFormatEmph) zs.SymFormatDelete = sf.MustMake(NameSymFormatDelete) zs.SymFormatInsert = sf.MustMake(NameSymFormatInsert) zs.SymFormatMark = sf.MustMake(NameSymFormatMark) zs.SymFormatQuote = sf.MustMake(NameSymFormatQuote) zs.SymFormatSpan = sf.MustMake(NameSymFormatSpan) zs.SymFormatSub = sf.MustMake(NameSymFormatSub) zs.SymFormatSuper = sf.MustMake(NameSymFormatSuper) zs.SymFormatStrong = sf.MustMake(NameSymFormatStrong) zs.SymHard = sf.MustMake(NameSymHard) zs.SymHeading = sf.MustMake(NameSymHeading) zs.SymLinkInvalid = sf.MustMake(NameSymLinkInvalid) zs.SymLinkZettel = sf.MustMake(NameSymLinkZettel) zs.SymLinkSelf = sf.MustMake(NameSymLinkSelf) zs.SymLinkFound = sf.MustMake(NameSymLinkFound) zs.SymLinkBroken = sf.MustMake(NameSymLinkBroken) zs.SymLinkHosted = sf.MustMake(NameSymLinkHosted) zs.SymLinkBased = sf.MustMake(NameSymLinkBased) zs.SymLinkQuery = sf.MustMake(NameSymLinkQuery) zs.SymLinkExternal = sf.MustMake(NameSymLinkExternal) zs.SymListOrdered = sf.MustMake(NameSymListOrdered) zs.SymListUnordered = sf.MustMake(NameSymListUnordered) zs.SymListQuote = sf.MustMake(NameSymListQuote) zs.SymLiteralProg = sf.MustMake(NameSymLiteralProg) zs.SymLiteralComment = sf.MustMake(NameSymLiteralComment) zs.SymLiteralHTML = sf.MustMake(NameSymLiteralHTML) zs.SymLiteralInput = sf.MustMake(NameSymLiteralInput) zs.SymLiteralMath = sf.MustMake(NameSymLiteralMath) zs.SymLiteralOutput = sf.MustMake(NameSymLiteralOutput) zs.SymLiteralZettel = sf.MustMake(NameSymLiteralZettel) zs.SymMark = sf.MustMake(NameSymMark) zs.SymPara = sf.MustMake(NameSymPara) zs.SymRegionBlock = sf.MustMake(NameSymRegionBlock) zs.SymRegionQuote = sf.MustMake(NameSymRegionQuote) zs.SymRegionVerse = sf.MustMake(NameSymRegionVerse) zs.SymSoft = sf.MustMake(NameSymSoft) zs.SymSpace = sf.MustMake(NameSymSpace) zs.SymTable = sf.MustMake(NameSymTable) zs.SymText = sf.MustMake(NameSymText) zs.SymThematic = sf.MustMake(NameSymThematic) zs.SymTransclude = sf.MustMake(NameSymTransclude) zs.SymUnknown = sf.MustMake(NameSymUnknown) zs.SymVerbatimComment = sf.MustMake(NameSymVerbatimComment) zs.SymVerbatimEval = sf.MustMake(NameSymVerbatimEval) zs.SymVerbatimHTML = sf.MustMake(NameSymVerbatimHTML) zs.SymVerbatimMath = sf.MustMake(NameSymVerbatimMath) zs.SymVerbatimProg = sf.MustMake(NameSymVerbatimProg) zs.SymVerbatimZettel = sf.MustMake(NameSymVerbatimZettel) // Constant symbols for reference states. zs.SymRefStateInvalid = sf.MustMake(NameSymRefStateInvalid) zs.SymRefStateZettel = sf.MustMake(NameSymRefStateZettel) zs.SymRefStateSelf = sf.MustMake(NameSymRefStateSelf) zs.SymRefStateFound = sf.MustMake(NameSymRefStateFound) zs.SymRefStateBroken = sf.MustMake(NameSymRefStateBroken) zs.SymRefStateHosted = sf.MustMake(NameSymRefStateHosted) zs.SymRefStateBased = sf.MustMake(NameSymRefStateBased) zs.SymRefStateQuery = sf.MustMake(NameSymRefStateQuery) zs.SymRefStateExternal = sf.MustMake(NameSymRefStateExternal) // Symbols for metadata types. zs.SymTypeCredential = sf.MustMake(NameSymTypeCredential) zs.SymTypeEmpty = sf.MustMake(NameSymTypeEmpty) zs.SymTypeID = sf.MustMake(NameSymTypeID) zs.SymTypeIDSet = sf.MustMake(NameSymTypeIDSet) zs.SymTypeNumber = sf.MustMake(NameSymTypeNumber) zs.SymTypeString = sf.MustMake(NameSymTypeString) zs.SymTypeTagSet = sf.MustMake(NameSymTypeTagSet) zs.SymTypeTimestamp = sf.MustMake(NameSymTypeTimestamp) zs.SymTypeURL = sf.MustMake(NameSymTypeURL) zs.SymTypeWord = sf.MustMake(NameSymTypeWord) zs.SymTypeWordSet = sf.MustMake(NameSymTypeWordSet) zs.SymTypeZettelmarkup = sf.MustMake(NameSymTypeZettelmarkup) } |
Added sz/const_test.go.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | //----------------------------------------------------------------------------- // Copyright (c) 2023-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- package sz_test import ( "strconv" "testing" "zettelstore.de/client.fossil/sz" "zettelstore.de/sx.fossil" ) func BenchmarkInitZttlSyms(b *testing.B) { for j := 0; j < 20; j++ { b.Run("hint-"+strconv.Itoa(j), func(b *testing.B) { sf := sx.MakeMappedFactory(1 << j) for i := 0; i < b.N; i++ { var zs sz.ZettelSymbols zs.InitializeZettelSymbols(sf) } }) } } |
Deleted sz/parser.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted sz/parser_test.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Changes to sz/sz.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < < | | | < < < < < < < < < < < | 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 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- package sz import ( "zettelstore.de/client.fossil/attrs" "zettelstore.de/sx.fossil" ) // GetAttributes traverses a s-expression list and returns an attribute structure. func GetAttributes(seq *sx.Pair) (result attrs.Attributes) { for elem := seq; elem != nil; elem = elem.Tail() { pair, isPair := sx.GetPair(elem.Car()) if !isPair || pair == nil { continue } key := pair.Car() if !key.IsAtom() { continue } val := pair.Cdr() if tail, isTailPair := sx.GetPair(val); isTailPair { val = tail.Car() } if !val.IsAtom() { continue } result = result.Set(key.String(), val.String()) } return result } // GetMetaContent returns the metadata and the content of a sz encoded zettel. func GetMetaContent(zettel sx.Object) (Meta, *sx.Pair) { if pair, isPair := sx.GetPair(zettel); isPair { m := pair.Car() if s := pair.Tail(); s != nil { if content, isContentPair := sx.GetPair(s.Car()); isContentPair { return MakeMeta(m), content |
︙ | ︙ | |||
77 78 79 80 81 82 83 | func MakeMeta(obj sx.Object) Meta { if result := doMakeMeta(obj); len(result) > 0 { return result } return nil } func doMakeMeta(obj sx.Object) Meta { | > > > > > | | | | < < | > < > > > > | | > > > > > > > > > > > | > | > > | | | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | func MakeMeta(obj sx.Object) Meta { if result := doMakeMeta(obj); len(result) > 0 { return result } return nil } func doMakeMeta(obj sx.Object) Meta { result := make(map[string]MetaValue) for { if sx.IsNil(obj) { return result } pair, isPair := sx.GetPair(obj) if !isPair { return result } if mv, ok2 := makeMetaValue(pair); ok2 { result[mv.Key] = mv } obj = pair.Cdr() } } func makeMetaValue(mnode *sx.Pair) (MetaValue, bool) { var result MetaValue mval, isPair := sx.GetPair(mnode.Car()) if !isPair { return result, false } typeSym, isSymbol := sx.GetSymbol(mval.Car()) if !isSymbol { return result, false } keyPair, isPair := sx.GetPair(mval.Cdr()) if !isPair { return result, false } keyList, isPair := sx.GetPair(keyPair.Car()) if !isPair { return result, false } quoteSym, isSymbol := sx.GetSymbol(keyList.Car()) if !isSymbol || quoteSym.Name() != "quote" { return result, false } keySym, isSymbol := sx.GetSymbol(keyList.Tail().Car()) if !isSymbol { return result, false } valPair, isPair := sx.GetPair(keyPair.Cdr()) if !isPair { return result, false } result.Type = typeSym.Name() result.Key = keySym.Name() result.Value = valPair.Car() return result, true } func (m Meta) GetString(key string) string { if v, found := m[key]; found { return v.Value.String() } return "" } func (m Meta) GetPair(key string) *sx.Pair { if mv, found := m[key]; found { if pair, isPair := sx.GetPair(mv.Value); isPair { return pair } } return nil } |
Deleted sz/walk.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted sz/zmk/block.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted sz/zmk/inline.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted sz/zmk/post-processor.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted sz/zmk/ref.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted sz/zmk/ref_test.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted sz/zmk/zmk.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted sz/zmk/zmk_fuzz_test.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted sz/zmk/zmk_test.go.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Changes to text/text.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | < | > | > > > > > | > | > > > > | > > > > > > | > > | < < < < | < | < < < < < < | | | | 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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- // Package text provides types, constants and function to work with text output. package text import ( "strings" "zettelstore.de/client.fossil/sz" "zettelstore.de/sx.fossil" ) // Encoder is the structure to hold relevant data to execute the encoding. type Encoder struct { sf sx.SymbolFactory sb strings.Builder symText *sx.Symbol symSpace *sx.Symbol symSoft *sx.Symbol symHard *sx.Symbol symQuote *sx.Symbol } func NewEncoder(sf sx.SymbolFactory) *Encoder { if sf == nil { return nil } enc := &Encoder{ sf: sf, sb: strings.Builder{}, symText: sf.MustMake(sz.NameSymText), symSpace: sf.MustMake(sz.NameSymSpace), symSoft: sf.MustMake(sz.NameSymSoft), symHard: sf.MustMake(sz.NameSymHard), symQuote: sf.MustMake(sx.QuoteName), } return enc } func (enc *Encoder) Encode(lst *sx.Pair) string { enc.executeList(lst) result := enc.sb.String() enc.sb.Reset() return result } // EvaluateInlineString returns the text content of the given inline list as a string. func EvaluateInlineString(lst *sx.Pair) string { if sf := sx.FindSymbolFactory(lst); sf != nil { return NewEncoder(sf).Encode(lst) } return "" } func (enc *Encoder) executeList(lst *sx.Pair) { for elem := lst; elem != nil; elem = elem.Tail() { enc.execute(elem.Car()) } } func (enc *Encoder) execute(obj sx.Object) { cmd, isPair := sx.GetPair(obj) if !isPair { return } sym := cmd.Car() if sx.IsNil(sym) { return } if sym.IsEqual(enc.symText) { args := cmd.Tail() if args == nil { return } if val, isString := sx.GetString(args.Car()); isString { enc.sb.WriteString(val.String()) } } else if sym.IsEqual(enc.symSpace) || sym.IsEqual(enc.symSoft) { enc.sb.WriteByte(' ') } else if sym.IsEqual(enc.symHard) { enc.sb.WriteByte('\n') } else if !sym.IsEqual(enc.symQuote) { enc.executeList(cmd.Tail()) } } |
Changes to text/text_test.go.
1 2 3 4 5 6 7 8 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. | < < < | | | | < | 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 | //----------------------------------------------------------------------------- // Copyright (c) 2022-present Detlef Stern // // This file is part of zettelstore-client. // // Zettelstore client is licensed under the latest version of the EUPL // (European Union Public License). Please see file LICENSE.txt for your rights // and obligations under this license. //----------------------------------------------------------------------------- package text_test import ( "strings" "testing" "zettelstore.de/client.fossil/text" "zettelstore.de/sx.fossil" "zettelstore.de/sx.fossil/sxreader" ) func TestSzText(t *testing.T) { testcases := []struct { src string exp string }{ {"()", ""}, {`(INLINE (TEXT "a"))`, "a"}, {`(INLINE (SPACE "a"))`, " "}, } for i, tc := range testcases { sval, err := sxreader.MakeReader(strings.NewReader(tc.src)).Read() if err != nil { t.Error(err) continue } |
︙ | ︙ |
Changes to www/changes.wiki.
1 2 | <title>Change Log</title> | < < < < < < < < < < < < < < < | < < < | 1 2 3 4 5 6 7 8 9 10 11 | <title>Change Log</title> <a name="0_17"></a> <h2>Changes for Version 0.17.0 (pending)</h2> <a name="0_16"></a> <h2>Changes for Version 0.16.0 (2023-11-30)</h2> * Refactor shtml transformator to support evaluating the language tree of a zettel AST. Its API has been changes, since evaluation is now top-down, where previous transformation was bottom.up. * Add API call to retrieve role zettel. |
︙ | ︙ |
Changes to www/index.wiki.
1 2 3 4 5 | <title>Home</title> This repository contains Go client software to access [https://zettelstore.de|Zettelstore] via its API. | | | | | | | | > | 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 | <title>Home</title> This repository contains Go client software to access [https://zettelstore.de|Zettelstore] via its API. <h3>Latest Release: 0.16.0 (2023-11-30)</h3> * [./changes.wiki#0_16|Change summary] * [/timeline?p=v0.16.0&bt=v0.15.0&y=ci|Check-ins for version 0.16.0], [/vdiff?to=v0.16.0&from=v0.15.0|content diff] * [/timeline?df=v0.16.0&y=ci|Check-ins derived from the 0.16.0 release], [/vdiff?from=v0.16.0&to=trunk|content diff] * [/timeline?t=release|Timeline of all past releases] <h3>Use instructions</h3> If you want to import this library into your own [https://go.dev/|Go] software, you must execute a <code>go get</code> command. Since Go treats non-standard software and non-standard platforms quite badly, you must use some non-standard commands. First, you must install the version control system [https://fossil-scm.org|Fossil], which is a superior solution compared to Git, in too many use cases. It is just a single executable, nothing more. Make sure, it is in your search path for commands. How you can execute the following Go command to retrieve a given version of this library: <code>GOVCS=zettelstore.de:fossil go get -x zettelstore.de/client.fossil@HASH</code> where <code>HASH</code> is the hash value of the commit you want to use. Go currently seems not to support software versions when the software is managed by Fossil. This explains the need for the hash value. However, this methods works and you can use the client software to access a Zettelstore. |