source: mainline/uspace/app/bdsh/cmds/modules/cmp/cmp.c@ b10a434

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since b10a434 was 582a0b8, checked in by Jakub Jermar <jakub@…>, 9 years ago

Remove unistd.h

  • Rename usleep() and sleep() to thread_usleep() and thread_sleep() and move to thread.[hc].
  • Include stddef.h in order to provide NULL.
  • Move getpagesize() to libposix.
  • Sync uspace/dist/src/c/demos with originals.
  • Property mode set to 100644
File size: 4.0 KB
Line 
1/*
2 * Copyright (c) 2012 Sean Bartell
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <errno.h>
30#include <getopt.h>
31#include <mem.h>
32#include <stdio.h>
33#include <stdlib.h>
34#include <vfs/vfs.h>
35
36#include "cmds.h"
37#include "cmp.h"
38#include "config.h"
39#include "entry.h"
40#include "errors.h"
41#include "util.h"
42
43static const char *cmdname = "cmp";
44#define CMP_VERSION "0.0.1"
45#define CMP_BUFLEN 1024
46
47static struct option const long_options[] = {
48 { "help", no_argument, 0, 'h' },
49 { "version", no_argument, 0, 'v' },
50 { 0, 0, 0, 0 }
51};
52
53/* Dispays help for cat in various levels */
54void help_cmd_cmp(unsigned int level)
55{
56 if (level == HELP_SHORT) {
57 printf("`%s' compares the contents of two files\n", cmdname);
58 } else {
59 help_cmd_cmp(HELP_SHORT);
60 printf(
61 "Usage: %s [options] <file1> <file2>\n"
62 "Options:\n"
63 " -h, --help A short option summary\n"
64 " -v, --version Print version information and exit\n"
65 "No output is printed; the return code is 1 if the files differ.\n",
66 cmdname);
67 }
68
69 return;
70}
71
72static int cmp_files(const char *fn0, const char *fn1)
73{
74 int rc = 0;
75 const char *fn[2] = {fn0, fn1};
76 int fd[2] = {-1, -1};
77 char buffer[2][CMP_BUFLEN];
78 ssize_t offset[2];
79 aoff64_t pos[2] = {};
80
81 for (int i = 0; i < 2; i++) {
82 fd[i] = vfs_lookup_open(fn[i], WALK_REGULAR, MODE_READ);
83 if (fd[i] < 0) {
84 rc = fd[i];
85 printf("Unable to open %s\n", fn[i]);
86 goto end;
87 }
88 }
89
90 do {
91 for (int i = 0; i < 2; i++) {
92 offset[i] = 0;
93 ssize_t size;
94 do {
95 size = vfs_read(fd[i], &pos[i],
96 buffer[i] + offset[i],
97 CMP_BUFLEN - offset[i]);
98 if (size < 0) {
99 rc = size;
100 printf("Error reading from %s\n",
101 fn[i]);
102 goto end;
103 }
104 offset[i] += size;
105 } while (size && offset[i] < CMP_BUFLEN);
106 }
107
108 if (offset[0] != offset[1] ||
109 memcmp(buffer[0], buffer[1], offset[0]) != 0) {
110 rc = 1;
111 goto end;
112 }
113 } while (offset[0] == CMP_BUFLEN);
114
115end:
116 if (fd[0] >= 0)
117 vfs_put(fd[0]);
118 if (fd[1] >= 0)
119 vfs_put(fd[1]);
120 return rc;
121}
122
123/* Main entry point for cmd, accepts an array of arguments */
124int cmd_cmp(char **argv)
125{
126 int rc;
127 unsigned int argc;
128 int c, opt_ind;
129
130 argc = cli_count_args(argv);
131
132 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) {
133 c = getopt_long(argc, argv, "hv", long_options, &opt_ind);
134 switch (c) {
135 case 'h':
136 help_cmd_cmp(HELP_LONG);
137 return CMD_SUCCESS;
138 case 'v':
139 printf("%s\n", CMP_VERSION);
140 return CMD_SUCCESS;
141 }
142 }
143
144 if (argc - optind != 2) {
145 printf("%s - incorrect number of arguments. Try `%s --help'\n",
146 cmdname, cmdname);
147 return CMD_FAILURE;
148 }
149
150 rc = cmp_files(argv[optind], argv[optind + 1]);
151 if (rc)
152 return CMD_FAILURE;
153 else
154 return CMD_SUCCESS;
155}
Note: See TracBrowser for help on using the repository browser.