summaryrefslogtreecommitdiff
path: root/src/oid.nobj.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/oid.nobj.lua')
-rw-r--r--src/oid.nobj.lua56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/oid.nobj.lua b/src/oid.nobj.lua
new file mode 100644
index 0000000..10f1b07
--- /dev/null
+++ b/src/oid.nobj.lua
@@ -0,0 +1,56 @@
+-- Copyright (c) 2010 by Robert G. Jakabosky <bobby@sharedrealm.com>
+--
+-- Permission is hereby granted, free of charge, to any person obtaining a copy
+-- of this software and associated documentation files (the "Software"), to deal
+-- in the Software without restriction, including without limitation the rights
+-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+-- copies of the Software, and to permit persons to whom the Software is
+-- furnished to do so, subject to the following conditions:
+--
+-- The above copyright notice and this permission notice shall be included in
+-- all copies or substantial portions of the Software.
+--
+-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+-- THE SOFTWARE.
+
+object "OID" {
+ c_source [[
+typedef git_oid OID;
+]],
+ userdata_type = 'simple',
+ constructor "str" {
+ var_in{"const char *", "hex"},
+ var_out{"GitError", "err"},
+ c_source [[
+ ${err} = git_oid_mkstr(&(${this}), ${hex});
+]],
+ },
+ constructor "raw" {
+ var_in{"const unsigned char *", "raw"},
+ c_source [[
+ git_oid_mkraw(&(${this}), ${raw});
+]],
+ },
+ method "__str__" {
+ var_out{"const char *", "ret"},
+ c_source [[
+ char buf[GIT_OID_HEXSZ+1];
+ git_oid_fmt(buf, &(${this}));
+ buf[GIT_OID_HEXSZ] = 0;
+ ${ret} = buf;
+]],
+ },
+ method "__eq__" {
+ var_in{"OID", "id"},
+ var_out{"int", "ret"},
+ c_source [[
+ ${ret} = git_oid_cmp(&(${this}), &(${id}));
+]],
+ },
+}
+