Skip to content

Try to give a comprehensive list of utilities during Go development. Keep small and elegant.

License

Notifications You must be signed in to change notification settings

csimplestring/dev-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dev-utils

Try to give a comprehensive list of utilities during Go development. Keep small and elegant.

GitHub licensemade-with-Gogopherbadger-tag-do-not-editPRs WelcomeMaintenance

install

go get github.com/csimplestring/dev-utils

features

  • file watcher
  • stop watch
  • ring buffer matcher

examples

  • file watcher: The file watch will detects if the file is changed or not, and execute a callback if it is changed.
    // In this example, the last-modified-time determines if a file is modified or not.
    // if you want to use the md5 sum of a file content as the *state*, you can create your own Monitor to detect if the file state is changed by implementing the UpdateModifer interface.

    w, err := NewWatcher(tmpfile.Name(), &LastModifiedMonitor{})
	assert.NoError(t, err)

	cnt := 0
	cb := func(path string) {
		cnt++
	}

    // file is not changed, cnt == 0
	err = w.Check(cb)
	assert.NoError(t, err)
	assert.Equal(t, 0, cnt)

	_, err = tmpfile.WriteString("add")
	assert.NoError(t, err)

    // file is changed, last modified time is updated, cnt == 1
	err = w.Check(cb)
	assert.NoError(t, err)
	assert.Equal(t, 1, cnt)

  • stop watch: the stop watch sometimes can help developers to log the running time of functions, code blocks etc. See Example.

  • ring buffer matcher: A RingBuffer that can be used to scan byte sequences for subsequences. This class implements an efficient naive search algorithm, which allows the user of the library to identify byte sequences in a stream on-the-fly so that the stream can be segmented without having to buffer the data.

About

Try to give a comprehensive list of utilities during Go development. Keep small and elegant.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages