summaryrefslogtreecommitdiff
path: root/src/logic
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-12-29 04:48:00 -0500
committermidipix <writeonce@midipix.org>2016-01-01 22:50:23 -0500
commit383aa6559ee06236b7600df8df17d7f3ab254ca3 (patch)
tree1745e2888f440a7f56d54e29ce4a37a486d9d272 /src/logic
parentd764f2cab0ed73a95f3574f7974ec53a516f3c0d (diff)
downloadapimagic-383aa6559ee06236b7600df8df17d7f3ab254ca3.tar.bz2
apimagic-383aa6559ee06236b7600df8df17d7f3ab254ca3.tar.xz
created skeleton.
Diffstat (limited to 'src/logic')
-rw-r--r--src/logic/amgc_map_input.c51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/logic/amgc_map_input.c b/src/logic/amgc_map_input.c
new file mode 100644
index 0000000..0499c35
--- /dev/null
+++ b/src/logic/amgc_map_input.c
@@ -0,0 +1,51 @@
+/**********************************************************/
+/* apimagic: cparser-based API normalization utility */
+/* Copyright (C) 2015--2016 Z. Gilboa */
+/* Released under GPLv2 and GPLv3; see COPYING.APIMAGIC. */
+/**********************************************************/
+
+#include <stdint.h>
+#include <stdbool.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <sys/mman.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+
+#include <apimagic/apimagic.h>
+
+int amgc_map_input(
+ int fd,
+ const char * path,
+ int prot,
+ struct amgc_input * map)
+{
+ struct stat stat;
+ bool fnew;
+ int ret;
+
+ if ((fnew = (fd < 0)))
+ fd = open(path,O_RDONLY | O_CLOEXEC);
+
+ if (fd < 0)
+ return -1;
+
+ if ((ret = fstat(fd,&stat) < 0) && fnew)
+ close(fd);
+
+ if (ret < 0)
+ return -1;
+
+ map->size = stat.st_size;
+ map->addr = mmap(0,map->size,prot,MAP_PRIVATE,fd,0);
+
+ if (fnew)
+ close(fd);
+
+ return (map->addr == MAP_FAILED) ? -1 : 0;
+}
+
+int amgc_unmap_input(struct amgc_input * map)
+{
+ return munmap(map->addr,map->size);
+}