Welcome to mirror list, hosted at ThFree Co, Russian Federation.

logmemfile.c « cineon « intern « imbuf « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91351d309de53ba573976a782f5f4ffceafab95e (plain)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 * Copyright 2006 Joseph Eagar (joeedh@gmail.com)
 */

/** \file
 * \ingroup imbcineon
 *
 * Cineon image file format library routines.
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "logImageCore.h"
#include "logmemfile.h"

int logimage_fseek(LogImageFile *logFile, intptr_t offset, int origin)
{
  if (logFile->file) {
    fseek(logFile->file, offset, origin);
  }
  else { /* we're seeking in memory */
    if (origin == SEEK_SET) {
      if (offset > logFile->memBufferSize) {
        return 1;
      }
      logFile->memCursor = logFile->memBuffer + offset;
    }
    else if (origin == SEEK_END) {
      if (offset > logFile->memBufferSize) {
        return 1;
      }
      logFile->memCursor = (logFile->memBuffer + logFile->memBufferSize) - offset;
    }
    else if (origin == SEEK_CUR) {
      uintptr_t pos = (uintptr_t)logFile->memCursor - (uintptr_t)logFile->memBuffer;
      if (pos + offset > logFile->memBufferSize) {
        return 1;
      }

      logFile->memCursor += offset;
    }
  }
  return 0;
}

int logimage_fwrite(void *buffer, size_t size, unsigned int count, LogImageFile *logFile)
{
  if (logFile->file) {
    return fwrite(buffer, size, count, logFile->file);
  }
  else { /* we're writing to memory */
    /* do nothing as this isn't supported yet */
    return count;
  }
}

int logimage_fread(void *buffer, size_t size, unsigned int count, LogImageFile *logFile)
{
  if (logFile->file) {
    return fread(buffer, size, count, logFile->file);
  }
  else { /* we're reading from memory */
    unsigned char *buf = (unsigned char *)buffer;
    uintptr_t pos = (uintptr_t)logFile->memCursor - (uintptr_t)logFile->memBuffer;
    size_t total_size = size * count;
    if (pos + total_size > logFile->memBufferSize) {
      /* how many elements can we read without overflow ? */
      count = (logFile->memBufferSize - pos) / size;
      /* recompute the size */
      total_size = size * count;
    }

    if (total_size != 0) {
      memcpy(buf, logFile->memCursor, total_size);
    }

    return count;
  }
}

int logimage_read_uchar(unsigned char *x, LogImageFile *logFile)
{
  uintptr_t pos = (uintptr_t)logFile->memCursor - (uintptr_t)logFile->memBuffer;
  if (pos + sizeof(unsigned char) > logFile->memBufferSize) {
    return 1;
  }

  *x = *(unsigned char *)logFile->memCursor;
  logFile->memCursor += sizeof(unsigned char);
  return 0;
}

int logimage_read_ushort(unsigned short *x, LogImageFile *logFile)
{
  uintptr_t pos = (uintptr_t)logFile->memCursor - (uintptr_t)logFile->memBuffer;
  if (pos + sizeof(unsigned short) > logFile->memBufferSize) {
    return 1;
  }

  *x = *(unsigned short *)logFile->memCursor;
  logFile->memCursor += sizeof(unsigned short);
  return 0;
}

int logimage_read_uint(unsigned int *x, LogImageFile *logFile)
{
  uintptr_t pos = (uintptr_t)logFile->memCursor - (uintptr_t)logFile->memBuffer;
  if (pos + sizeof(unsigned int) > logFile->memBufferSize) {
    return 1;
  }

  *x = *(unsigned int *)logFile->memCursor;
  logFile->memCursor += sizeof(unsigned int);
  return 0;
}