435c0d9fc8
This PR switches the Nomad repository from using govendor to Go modules for managing dependencies. Aspects of the Nomad workflow remain pretty much the same. The usual Makefile targets should continue to work as they always did. The API submodule simply defers to the parent Nomad version on the repository, keeping the semantics of API versioning that currently exists. |
||
---|---|---|
.. | ||
oleutil | ||
.travis.yml | ||
appveyor.yml | ||
ChangeLog.md | ||
com.go | ||
com_func.go | ||
connect.go | ||
constants.go | ||
error.go | ||
error_func.go | ||
error_windows.go | ||
guid.go | ||
iconnectionpoint.go | ||
iconnectionpoint_func.go | ||
iconnectionpoint_windows.go | ||
iconnectionpointcontainer.go | ||
iconnectionpointcontainer_func.go | ||
iconnectionpointcontainer_windows.go | ||
idispatch.go | ||
idispatch_func.go | ||
idispatch_windows.go | ||
ienumvariant.go | ||
ienumvariant_func.go | ||
ienumvariant_windows.go | ||
iinspectable.go | ||
iinspectable_func.go | ||
iinspectable_windows.go | ||
iprovideclassinfo.go | ||
iprovideclassinfo_func.go | ||
iprovideclassinfo_windows.go | ||
itypeinfo.go | ||
itypeinfo_func.go | ||
itypeinfo_windows.go | ||
iunknown.go | ||
iunknown_func.go | ||
iunknown_windows.go | ||
LICENSE | ||
ole.go | ||
README.md | ||
safearray.go | ||
safearray_func.go | ||
safearray_windows.go | ||
safearrayconversion.go | ||
safearrayslices.go | ||
utility.go | ||
variables.go | ||
variant.go | ||
variant_386.go | ||
variant_amd64.go | ||
variant_s390x.go | ||
vt_string.go | ||
winrt.go | ||
winrt_doc.go |
#Go OLE
Go bindings for Windows COM using shared libraries instead of cgo.
By Yasuhiro Matsumoto.
Install
To experiment with go-ole, you can just compile and run the example program:
go get github.com/go-ole/go-ole
cd /path/to/go-ole/
go test
cd /path/to/go-ole/example/excel
go run excel.go
Continuous Integration
Continuous integration configuration has been added for both Travis-CI and AppVeyor. You will have to add these to your own account for your fork in order for it to run.
Travis-CI
Travis-CI was added to check builds on Linux to ensure that go get
works when cross building. Currently, Travis-CI is not used to test cross-building, but this may be changed in the future. It is also not currently possible to test the library on Linux, since COM API is specific to Windows and it is not currently possible to run a COM server on Linux or even connect to a remote COM server.
AppVeyor
AppVeyor is used to build on Windows using the (in-development) test COM server. It is currently only used to test the build and ensure that the code works on Windows. It will be used to register a COM server and then run the test cases based on the test COM server.
The tests currently do run and do pass and this should be maintained with commits.
##Versioning
Go OLE uses semantic versioning for version numbers, which is similar to the version contract of the Go language. Which means that the major version will always maintain backwards compatibility with minor versions. Minor versions will only add new additions and changes. Fixes will always be in patch.
This contract should allow you to upgrade to new minor and patch versions without breakage or modifications to your existing code. Leave a ticket, if there is breakage, so that it could be fixed.
##LICENSE
Under the MIT License: http://mattn.mit-license.org/2013