aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/cmd_seek.c
blob: 75168111eff26e49cda98d72426908a9564452e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include "buf.h"
#include "core.h"

#include "libcmd/cmd.h"
#include "libcmd/cmd_parse.h"

extern file_t *g_file;
extern buf_t *g_buf;
extern int g_flags;

int c_seek(  cmd_arg_t *arg  )
{
	int fret;
	int argc = arg->argc;
	char **argv = arg->argv;
	off_t offset;
	int off_type = 0; //-1 seek down, 0 set pos, +1 seek up

	if (argc != 1)
	{
		printf("One argument needed\n");
		return -1;
	}

	if (g_file->fd == 0)
	{
		printf("File descriptor not set\n");
		return -1;
	}

	//set seek type
	switch( argv[0][0] )
	{
	case '+':
		off_type = 1;
		break;
	case '-':
		off_type = -1;
		break;
	default:
		off_type = 0;
	}

	offset = atoi( argv[0] ); //!fix that to strtol at least

	if (off_type == 0)
	{
		//g_file offset maybe wrong
		fret = file_seekp( g_file, offset );
	} else
	{
		fret = file_seek( g_file, offset );
	}
	if ( fret < 0 )
	{
		printf("Cannot seek postion to %zd\n", offset);
		return -1;
	}

	return 0;
}

int h_seek( cmd_arg_t *arg )
{
	printf("[POS] - move to differnt file offset");
	return 0;
}