Merge branch 'master' of github.com:FreeRDP/FreeRDP-1.0

This commit is contained in:
Marc-André Moreau 2011-07-08 00:37:38 -04:00
commit da06a26f23
10 changed files with 1238 additions and 24 deletions

View File

@ -39,6 +39,8 @@ add_executable(test_freerdp
test_list.h
test_stream.c
test_stream.h
test_utils.c
test_utils.h
test_transport.c
test_transport.h
test_freerdp.c

View File

@ -27,6 +27,7 @@
#include "test_libgdi.h"
#include "test_list.h"
#include "test_stream.h"
#include "test_utils.h"
#include "test_transport.h"
#include "test_freerdp.h"
@ -116,6 +117,7 @@ int main(int argc, char* argv[])
add_libgdi_suite();
add_list_suite();
add_stream_suite();
add_utils_suite();
add_transport_suite();
}
else
@ -138,6 +140,10 @@ int main(int argc, char* argv[])
{
add_stream_suite();
}
else if (strcmp("utils", argv[*pindex]) == 0)
{
add_utils_suite();
}
else if (strcmp("transport", argv[*pindex]) == 0)
{
add_transport_suite();

67
cunit/test_utils.c Normal file
View File

@ -0,0 +1,67 @@
/**
* FreeRDP: A Remote Desktop Protocol Client
* Utils Unit Tests
*
* Copyright 2011 Vic Lee
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <freerdp/freerdp.h>
#include <freerdp/utils/mutex.h>
#include <freerdp/utils/semaphore.h>
#include "test_utils.h"
int init_utils_suite(void)
{
return 0;
}
int clean_utils_suite(void)
{
return 0;
}
int add_utils_suite(void)
{
add_test_suite(utils);
add_test_function(mutex);
add_test_function(semaphore);
return 0;
}
void test_mutex(void)
{
freerdp_mutex mutex;
mutex = freerdp_mutex_new();
freerdp_mutex_lock(mutex);
freerdp_mutex_unlock(mutex);
freerdp_mutex_free(mutex);
}
void test_semaphore(void)
{
freerdp_sem sem;
sem = freerdp_sem_new(1);
freerdp_sem_wait(sem);
freerdp_sem_signal(sem);
freerdp_sem_free(sem);
}

27
cunit/test_utils.h Normal file
View File

@ -0,0 +1,27 @@
/**
* FreeRDP: A Remote Desktop Protocol Client
* Utils Unit Tests
*
* Copyright 2011 Vic Lee
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "test_freerdp.h"
int init_list_suite(void);
int clean_list_suite(void);
int add_list_suite(void);
void test_mutex(void);
void test_semaphore(void);

View File

@ -0,0 +1,30 @@
/**
* FreeRDP: A Remote Desktop Protocol Client
* Mutex Utils
*
* Copyright 2011 Vic Lee
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __MUTEX_UTILS_H
#define __MUTEX_UTILS_H
typedef void* freerdp_mutex;
freerdp_mutex freerdp_mutex_new(void);
void freerdp_mutex_free(freerdp_mutex mutex);
void freerdp_mutex_lock(freerdp_mutex mutex);
void freerdp_mutex_unlock(freerdp_mutex mutex);
#endif /* __MUTEX_UTILS_H */

View File

@ -20,8 +20,11 @@
#ifndef __SEMAPHORE_UTILS_H
#define __SEMAPHORE_UTILS_H
void freerdp_sem_create(void * sem_struct, int iv);
void freerdp_sem_signal(void * sem_struct);
void freerdp_sem_wait(void * sem_struct);
typedef void* freerdp_sem;
freerdp_sem freerdp_sem_new(int iv);
void freerdp_sem_free(freerdp_sem sem);
void freerdp_sem_signal(freerdp_sem sem);
void freerdp_sem_wait(freerdp_sem sem);
#endif /* __SEMAPHORE_UTILS_H */

View File

@ -0,0 +1,962 @@
/**
* FreeRDP: A Remote Desktop Protocol Client
* RLE Compressed Bitmap Stream
*
* Copyright 2011 Jay Sorg <jay.sorg@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
RLE Compressed Bitmap Stream (RLE_BITMAP_STREAM)
http://msdn.microsoft.com/en-us/library/cc240895%28v=prot.10%29.aspx
*/
#include <freerdp/utils/stream.h>
#include <freerdp/utils/memory.h>
#define REGULAR_BG_RUN 0x0
#define MEGA_MEGA_BG_RUN 0xF0
#define REGULAR_FG_RUN 0x1
#define MEGA_MEGA_FG_RUN 0xF1
#define LITE_SET_FG_FG_RUN 0xC
#define MEGA_MEGA_SET_FG_RUN 0xF6
#define LITE_DITHERED_RUN 0xE
#define MEGA_MEGA_DITHERED_RUN 0xF8
#define REGULAR_COLOR_RUN 0x3
#define MEGA_MEGA_COLOR_RUN 0xF3
#define REGULAR_FGBG_IMAGE 0x2
#define MEGA_MEGA_FGBG_IMAGE 0xF2
#define LITE_SET_FG_FGBG_IMAGE 0xD
#define MEGA_MEGA_SET_FGBG_IMAGE 0xF7
#define REGULAR_COLOR_IMAGE 0x4
#define MEGA_MEGA_COLOR_IMAGE 0xF4
#define SPECIAL_FGBG_1 0xF9
#define SPECIAL_FGBG_2 0xFA
#define SPECIAL_WHITE 0xFD
#define SPECIAL_BLACK 0xFE
/*
Bitmasks
*/
static uint8 g_MaskBit0 = 0x01; /* Least significant bit */
static uint8 g_MaskBit1 = 0x02;
static uint8 g_MaskBit2 = 0x04;
static uint8 g_MaskBit3 = 0x08;
static uint8 g_MaskBit4 = 0x10;
static uint8 g_MaskBit5 = 0x20;
static uint8 g_MaskBit6 = 0x40;
static uint8 g_MaskBit7 = 0x80; /* Most significant bit */
static uint8 g_MaskRegularRunLength = 0x1F;
static uint8 g_MaskLiteRunLength = 0x0F;
static uint8 g_MaskSpecialFgBg1 = 0x03;
static uint8 g_MaskSpecialFgBg2 = 0x05;
typedef uint32 PIXEL;
/*
Returns the color depth (in bytes per pixel) that was selected
for the RDP connection.
*/
static uint32
GetColorDepth(void)
{
return 8;
}
/*
PIXEL is a dynamic type that is sized based on the current color
depth being used for the RDP connection.
if (GetColorDepth() == 8) then PIXEL is an 8-bit unsigned integer
if (GetColorDepth() == 15) then PIXEL is a 16-bit unsigned integer
if (GetColorDepth() == 16) then PIXEL is a 16-bit unsigned integer
if (GetColorDepth() == 24) then PIXEL is a 24-bit unsigned integer
*/
/*
Writes a pixel to the specified buffer.
*/
static void
WritePixel(uint8 * pbBuffer, PIXEL pixel)
{
pbBuffer[0] = pixel;
}
/*
Reads a pixel from the specified buffer.
*/
static PIXEL
ReadPixel(uint8 * pbBuffer)
{
return pbBuffer[0];
}
/*
Returns the size of a pixel in bytes.
*/
static uint32
GetPixelSize(void)
{
uint32 colorDepth = GetColorDepth();
if (colorDepth == 8)
{
return 1;
}
else if (colorDepth == 15 || colorDepth == 16)
{
return 2;
}
else if (colorDepth == 24)
{
return 3;
}
}
/*
Returns a pointer to the next pixel in the specified buffer.
*/
static uint8 *
NextPixel(uint8 * pbBuffer)
{
return pbBuffer + GetPixelSize();
}
/*
Reads the supplied order header and extracts the compression
order code ID.
*/
static uint32
ExtractCodeId(uint8 bOrderHdr)
{
/* TODO */
return 0;
}
/*
Returns a pointer to the data that follows the compression
order header and optional run length.
*/
static uint8 *
AdvanceOverOrderHeader(uint32 codeId, uint8 * pbOrderHdr)
{
/* TODO */
return pbOrderHdr;
}
/*
Returns TRUE if the supplied code identifier is for a regular-form
standard compression order. For example IsRegularCode(0x01) returns
TRUE as 0x01 is the code ID for a Regular Foreground Run Order.
*/
static boolean
IsRegularCode(uint32 codeId)
{
switch (codeId)
{
case REGULAR_BG_RUN:
case REGULAR_FG_RUN:
case REGULAR_COLOR_RUN:
case REGULAR_FGBG_IMAGE:
case REGULAR_COLOR_IMAGE:
return True;
}
return False;
}
/*
Returns TRUE if the supplied code identifier is for a lite-form
standard compression order. For example IsLiteCode(0x0E) returns
TRUE as 0x0E is the code ID for a Lite Dithered Run Order.
*/
static boolean
IsLiteCode(uint32 codeId)
{
switch (codeId)
{
case LITE_SET_FG_FG_RUN:
case LITE_DITHERED_RUN:
case LITE_SET_FG_FGBG_IMAGE:
return True;
}
return False;
}
/*
Returns TRUE if the supplied code identifier is for a MEGA_MEGA
type extended compression order. For example IsMegaMegaCode(0xF0)
returns TRUE as 0xF0 is the code ID for a MEGA_MEGA Background
Run Order.
*/
static boolean
IsMegaMegaCode(uint32 codeId)
{
switch (codeId)
{
case MEGA_MEGA_BG_RUN:
case MEGA_MEGA_FG_RUN:
case MEGA_MEGA_SET_FG_RUN:
case MEGA_MEGA_DITHERED_RUN:
case MEGA_MEGA_COLOR_RUN:
case MEGA_MEGA_FGBG_IMAGE:
case MEGA_MEGA_SET_FGBG_IMAGE:
case MEGA_MEGA_COLOR_IMAGE:
return True;
}
return False;
}
/*
Returns a black pixel.
*/
static PIXEL
GetColorBlack(void)
{
uint32 colorDepth = GetColorDepth();
if (colorDepth == 8)
{
return (PIXEL) 0x00;
}
else if (colorDepth == 15)
{
return (PIXEL) 0x0000;
}
else if (colorDepth == 16)
{
return (PIXEL) 0x0000;
}
else if (colorDepth == 24)
{
return (PIXEL) 0x000000;
}
}
/*
Returns a white pixel.
*/
static PIXEL
GetColorWhite(void)
{
uint32 colorDepth = GetColorDepth();
if (colorDepth == 8)
{
/*
Palette entry #255 holds black.
*/
return (PIXEL) 0xFF;
}
else if (colorDepth == 15)
{
/*
5 bits per RGB component:
0111 1111 1111 1111 (binary)
*/
return (PIXEL) 0x7FFF;
}
else if (colorDepth == 16)
{
/*
5 bits for red, 6 bits for green, 5 bits for green:
1111 1111 1111 1111 (binary)
*/
return (PIXEL) 0xFFFF;
}
else if (colorDepth == 24)
{
/*
8 bits per RGB component:
1111 1111 1111 1111 1111 1111 (binary)
*/
return (PIXEL) 0xFFFFFF;
}
}
/*
Extract the run length of a Regular-Form Foreground/Background
Image Order.
*/
static uint32
ExtractRunLengthRegularFgBg(uint8 * pbOrderHdr)
{
uint32 runLength;
runLength = (*pbOrderHdr) & g_MaskRegularRunLength;
if (runLength == 0)
{
runLength = (*(pbOrderHdr + 1)) + 1;
}
else
{
runLength = runLength * 8;
}
return runLength;
}
/*
Extract the run length of a Lite-Form Foreground/Background
Image Order.
*/
static uint32
ExtractRunLengthLiteFgBg(uint8 * pbOrderHdr)
{
uint32 runLength;
runLength = (*pbOrderHdr) & g_MaskLiteRunLength;
if (runLength == 0)
{
runLength = (*(pbOrderHdr + 1)) + 1;
}
else
{
runLength = runLength * 8;
}
return runLength;
}
/*
Extract the run length of a regular-form compression order.
*/
static uint32
ExtractRunLengthRegular(uint8 * pbOrderHdr)
{
uint32 runLength;
runLength = (*pbOrderHdr) & g_MaskRegularRunLength;
if (runLength == 0)
{
/*
An extended (MEGA) run.
*/
runLength = (*(pbOrderHdr + 1)) + 32;
}
return runLength;
}
/*
Extract the run length of a lite-form compression order.
*/
static uint32
ExtractRunLengthLite(uint8 * pbOrderHdr)
{
uint32 runLength;
runLength = (*pbOrderHdr) & g_MaskLiteRunLength;
if (runLength == 0)
{
/*
An extended (MEGA) run.
*/
runLength = (*(pbOrderHdr + 1)) + 16;
}
return runLength;
}
/*
Extract the run length of a MEGA_MEGA-type compression order.
*/
static uint32
ExtractRunLengthMegaMega(uint8 * pbOrderHdr)
{
uint32 runLength;
pbOrderHdr = pbOrderHdr + 1;
runLength = ((uint16) pbOrderHdr[0]) | ((uint16) (pbOrderHdr[1] << 8));
return runLength;
}
/*
Extract the run length of a compression order.
*/
static uint32
ExtractRunLength(uint32 code, uint8 * pbOrderHdr)
{
uint32 runLength;
if (code == REGULAR_FGBG_IMAGE)
{
runLength = ExtractRunLengthRegularFgBg(pbOrderHdr);
}
else if (code == LITE_SET_FG_FGBG_IMAGE)
{
runLength = ExtractRunLengthLiteFgBg(pbOrderHdr);
}
else if (IsRegularCode(code))
{
runLength = ExtractRunLengthRegular(pbOrderHdr);
}
else if (IsLiteCode(code))
{
runLength = ExtractRunLengthLite(pbOrderHdr);
}
else if (IsMegaMegaCode(code))
{
runLength = ExtractRunLengthMegaMega(pbOrderHdr);
}
else
{
runLength = 0;
}
return runLength;
}
/*
Write a foreground/background image to a destination buffer.
*/
static uint8 *
WriteFgBgImage(uint8 * pbDest, uint32 rowDelta, uint8 bitmask,
PIXEL fgPel, uint32 cBits)
{
PIXEL xorPixel;
xorPixel = ReadPixel(pbDest - rowDelta);
if (bitmask & g_MaskBit0)
{
WritePixel(pbDest, xorPixel ^ fgPel);
}
else
{
WritePixel(pbDest, xorPixel);
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
xorPixel = ReadPixel(pbDest - rowDelta);
if (bitmask & g_MaskBit1)
{
WritePixel(pbDest, xorPixel ^ fgPel);
}
else
{
WritePixel(pbDest, xorPixel);
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
xorPixel = ReadPixel(pbDest - rowDelta);
if (bitmask & g_MaskBit2)
{
WritePixel(pbDest, xorPixel ^ fgPel);
}
else
{
WritePixel(pbDest, xorPixel);
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
xorPixel = ReadPixel(pbDest - rowDelta);
if (bitmask & g_MaskBit3)
{
WritePixel(pbDest, xorPixel ^ fgPel);
}
else
{
WritePixel(pbDest, xorPixel);
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
xorPixel = ReadPixel(pbDest - rowDelta);
if (bitmask & g_MaskBit4)
{
WritePixel(pbDest, xorPixel ^ fgPel);
}
else
{
WritePixel(pbDest, xorPixel);
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
xorPixel = ReadPixel(pbDest - rowDelta);
if (bitmask & g_MaskBit5)
{
WritePixel(pbDest, xorPixel ^ fgPel);
}
else
{
WritePixel(pbDest, xorPixel);
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
xorPixel = ReadPixel(pbDest - rowDelta);
if (bitmask & g_MaskBit6)
{
WritePixel(pbDest, xorPixel ^ fgPel);
}
else
{
WritePixel(pbDest, xorPixel);
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
xorPixel = ReadPixel(pbDest - rowDelta);
if (bitmask & g_MaskBit7)
{
WritePixel(pbDest, xorPixel ^ fgPel);
}
else
{
WritePixel(pbDest, xorPixel);
}
pbDest = NextPixel(pbDest);
}
}
}
}
}
}
}
return pbDest;
}
/*
Write a foreground/background image to a destination buffer
for the first line of compressed data.
*/
static uint8 *
WriteFirstLineFgBgImage(uint8 * pbDest, uint8 bitmask,
PIXEL fgPel, uint32 cBits)
{
if (bitmask & g_MaskBit0)
{
WritePixel(pbDest, fgPel);
}
else
{
WritePixel(pbDest, GetColorBlack());
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
if (bitmask & g_MaskBit1)
{
WritePixel(pbDest, fgPel);
}
else
{
WritePixel(pbDest, GetColorBlack());
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
if (bitmask & g_MaskBit2)
{
WritePixel(pbDest, fgPel);
}
else
{
WritePixel(pbDest, GetColorBlack());
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
if (bitmask & g_MaskBit3)
{
WritePixel(pbDest, fgPel);
}
else
{
WritePixel(pbDest, GetColorBlack());
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
if (bitmask & g_MaskBit4)
{
WritePixel(pbDest, fgPel);
}
else
{
WritePixel(pbDest, GetColorBlack());
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
if (bitmask & g_MaskBit5)
{
WritePixel(pbDest, fgPel);
}
else
{
WritePixel(pbDest, GetColorBlack());
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
if (bitmask & g_MaskBit6)
{
WritePixel(pbDest, fgPel);
}
else
{
WritePixel(pbDest, GetColorBlack());
}
pbDest = NextPixel(pbDest);
cBits = cBits - 1;
if (cBits > 0)
{
if (bitmask & g_MaskBit7)
{
WritePixel(pbDest, fgPel);
}
else
{
WritePixel(pbDest, GetColorBlack());
}
pbDest = NextPixel(pbDest);
}
}
}
}
}
}
}
return pbDest;
}
/*
Decompress an RLE compressed bitmap.
*/
void
RleDecompress(uint8 * pbSrcBuffer, uint32 cbSrcBuffer,
uint8 * pbDestBuffer, uint32 rowDelta)
{
uint8 * pbSrc = pbSrcBuffer;
uint8 * pbEnd = pbSrcBuffer + cbSrcBuffer;
uint8 * pbDest = pbDestBuffer;
PIXEL fgPel = GetColorWhite();
boolean fInsertFgPel = False;
boolean fFirstLine = True;
uint8 bitmask;
PIXEL pixelA, pixelB;
uint32 runLength;
uint32 code;
while (pbSrc < pbEnd)
{
/*
Watch out for the end of the first scanline.
*/
if (fFirstLine)
{
if (pbDest - pbDestBuffer >= rowDelta)
{
fFirstLine = False;
fInsertFgPel = False;
}
}
/*
Extract the compression order code ID from the compression
order header.
*/
code = ExtractCodeId(*pbSrc);
/*
Handle Background Run Orders.
*/
if (code == REGULAR_BG_RUN || code == MEGA_MEGA_BG_RUN)
{
runLength = ExtractRunLength(code, pbSrc);
pbSrc = AdvanceOverOrderHeader(code, pbSrc);
if (fFirstLine)
{
if (fInsertFgPel)
{
WritePixel(pbDest, fgPel);
pbDest = NextPixel(pbDest);
runLength = runLength - 1;
}
while (runLength > 0)
{
WritePixel(pbDest, GetColorBlack());
pbDest = NextPixel(pbDest);
runLength = runLength - 1;
}
}
else
{
if (fInsertFgPel)
{
WritePixel(pbDest, ReadPixel(pbDest - rowDelta) ^ fgPel);
pbDest = NextPixel(pbDest);
runLength = runLength - 1;
}
while (runLength > 0)
{
WritePixel(pbDest, ReadPixel(pbDest - rowDelta));
pbDest = NextPixel(pbDest);
runLength = runLength - 1;
}
}
/*
A follow-on background run order will need a
foreground pel inserted.
*/
fInsertFgPel = True;
continue;
}
/*
For any of the other run-types a follow-on background run
order does not need a foreground pel inserted.
*/
fInsertFgPel = False;
/*
Handle Foreground Run Orders.
*/
if (code == REGULAR_FG_RUN || code == MEGA_MEGA_FG_RUN ||
code == LITE_SET_FG_FG_RUN || code == MEGA_MEGA_SET_FG_RUN)
{
runLength = ExtractRunLength(code, pbSrc);
pbSrc = AdvanceOverOrderHeader(code, pbSrc);
if (code == LITE_SET_FG_FG_RUN || code == MEGA_MEGA_SET_FG_RUN)
{
fgPel = ReadPixel(pbSrc);
pbSrc = NextPixel(pbSrc);
}
while (runLength > 0)
{
if (fFirstLine)
{
WritePixel(pbDest, fgPel);
pbDest = NextPixel(pbDest);
}
else
{
WritePixel(pbDest, ReadPixel(pbDest - rowDelta) ^ fgPel);
pbDest = NextPixel(pbDest);
}
runLength = runLength - 1;
}
continue;
}
/*
Handle Dithered Run Orders.
*/
if (code == LITE_DITHERED_RUN || code == MEGA_MEGA_DITHERED_RUN)
{
runLength = ExtractRunLength(code, pbSrc);
pbSrc = AdvanceOverOrderHeader(code, pbSrc);
pixelA = ReadPixel(pbSrc);
pbSrc = NextPixel(pbSrc);
pixelB = ReadPixel(pbSrc);
pbSrc = NextPixel(pbSrc);
while (runLength > 0)
{
WritePixel(pbDest, pixelA);
pbDest = NextPixel(pbDest);
WritePixel(pbDest, pixelB);
pbDest = NextPixel(pbDest);
runLength = runLength - 1;
}
continue;
}
/*
Handle Color Run Orders.
*/
if (code == REGULAR_COLOR_RUN || code == MEGA_MEGA_COLOR_RUN)
{
runLength = ExtractRunLength(code, pbSrc);
pbSrc = AdvanceOverOrderHeader(code, pbSrc);
pixelA = ReadPixel(pbSrc);
pbSrc = NextPixel(pbSrc);
while (runLength > 0)
{
WritePixel(pbDest, pixelA);
pbDest = NextPixel(pbDest);
runLength = runLength - 1;
}
continue;
}
/*
Handle Foreground/Background Image Orders.
*/
if (code == REGULAR_FGBG_IMAGE || code == MEGA_MEGA_FGBG_IMAGE ||
code == LITE_SET_FG_FGBG_IMAGE || code == MEGA_MEGA_SET_FGBG_IMAGE)
{
runLength = ExtractRunLength(code, pbSrc);
pbSrc = AdvanceOverOrderHeader(code, pbSrc);
if (code == LITE_SET_FG_FGBG_IMAGE || code == MEGA_MEGA_SET_FGBG_IMAGE)
{
fgPel = ReadPixel(pbSrc);
pbSrc = NextPixel(pbSrc);
}
while (runLength > 8)
{
bitmask = *pbSrc;
pbSrc = pbSrc + 1;
if (fFirstLine)
{
pbDest = WriteFirstLineFgBgImage(pbDest, bitmask, fgPel, 8 );
}
else
{
pbDest = WriteFgBgImage(pbDest, rowDelta, bitmask, fgPel, 8 );
}
runLength = runLength - 8;
}
if (runLength > 0)
{
bitmask = *pbSrc;
pbSrc = pbSrc + 1;
if (fFirstLine)
{
pbDest = WriteFirstLineFgBgImage(pbDest, bitmask, fgPel, runLength);
}
else
{
pbDest = WriteFgBgImage(pbDest, rowDelta, bitmask, fgPel, runLength);
}
}
continue;
}
/*
Handle Color Image Orders.
*/
if (code == REGULAR_COLOR_IMAGE || code == MEGA_MEGA_COLOR_IMAGE)
{
uint32 byteCount;
runLength = ExtractRunLength(code, pbSrc);
pbSrc = AdvanceOverOrderHeader(code, pbSrc);
byteCount = runLength * GetColorDepth();
while (byteCount > 0)
{
*pbDest = *pbSrc;
pbDest = pbDest + 1;
pbSrc = pbSrc + 1;
byteCount = byteCount - 1;
}
continue;
}
/*
Handle Special Order 1.
*/
if (code == SPECIAL_FGBG_1)
{
if (fFirstLine)
{
pbDest = WriteFirstLineFgBgImage(pbDest, g_MaskSpecialFgBg1, fgPel, 8);
}
else
{
pbDest = WriteFgBgImage(pbDest, rowDelta, g_MaskSpecialFgBg1, fgPel, 8 );
}
continue;
}
/*
Handle Special Order 2.
*/
if (code == SPECIAL_FGBG_2)
{
if (fFirstLine)
{
pbDest = WriteFirstLineFgBgImage(pbDest, g_MaskSpecialFgBg2, fgPel, 8);
}
else
{
pbDest = WriteFgBgImage(pbDest, rowDelta, g_MaskSpecialFgBg2, fgPel, 8);
}
continue;
}
/*
Handle White Order.
*/
if (code == SPECIAL_WHITE)
{
WritePixel(pbDest, GetColorWhite());
pbDest = NextPixel(pbDest);
continue;
}
/*
Handle Black Order.
*/
if (code == SPECIAL_BLACK)
{
WritePixel(pbDest, GetColorBlack());
pbDest = NextPixel(pbDest);
continue;
}
}
}

View File

@ -21,6 +21,7 @@ set(FREERDP_UTILS_SRCS
blob.c
hexdump.c
memory.c
mutex.c
semaphore.c
stream.c
unicode.c)

77
libfreerdp-utils/mutex.c Normal file
View File

@ -0,0 +1,77 @@
/**
* FreeRDP: A Remote Desktop Protocol Client
* Mutex Utils
*
* Copyright 2011 Vic Lee
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <freerdp/utils/memory.h>
#include <freerdp/utils/mutex.h>
#if defined _WIN32
#include <windows.h>
#define freerdp_mutex_t HANDLE
#else
#include <pthread.h>
#define freerdp_mutex_t pthread_mutex_t
#endif
freerdp_mutex freerdp_mutex_new(void)
{
freerdp_mutex_t* mutex;
mutex = (freerdp_mutex_t*)xmalloc(sizeof(freerdp_mutex_t));
#if defined _WIN32
*mutex = CreateMutex(NULL, FALSE, NULL);
#else
pthread_mutex_init(mutex, 0);
#endif
return mutex;
}
void freerdp_mutex_free(freerdp_mutex mutex)
{
#if defined _WIN32
CloseHandle(*((freerdp_mutex_t*)mutex));
#else
pthread_mutex_destroy((freerdp_mutex_t*)mutex);
#endif
xfree(mutex);
}
void freerdp_mutex_lock(freerdp_mutex mutex)
{
#if defined _WIN32
WaitForSingleObject(*((freerdp_mutex_t*)mutex), INFINITE);
#else
pthread_mutex_lock(mutex);
#endif
}
void freerdp_mutex_unlock(freerdp_mutex mutex)
{
#if defined _WIN32
ReleaseMutex(*((freerdp_mutex_t*)mutex));
#else
pthread_mutex_unlock(mutex);
#endif
}

View File

@ -17,41 +17,80 @@
* limitations under the License.
*/
#include <pthread.h>
#include <semaphore.h>
#include <freerdp/utils/memory.h>
#include <freerdp/utils/semaphore.h>
#ifdef __APPLE__
#if defined __APPLE__
#include <pthread.h>
#include <semaphore.h>
#include <mach/mach.h>
#include <mach/semaphore.h>
#include <mach/task.h>
#define freerdp_sem_t semaphore_t
#elif defined _WIN32
#include <windows.h>
#define freerdp_sem_t HANDLE
#else
#include <pthread.h>
#include <semaphore.h>
#define freerdp_sem_t sem_t
#endif
void freerdp_sem_create(void * sem_struct, int iv)
freerdp_sem freerdp_sem_new(int iv)
{
#ifdef __APPLE__
semaphore_create(mach_task_self(), (semaphore_t *)sem_struct, SYNC_POLICY_FIFO, iv);
freerdp_sem_t* sem;
sem = (freerdp_sem_t*)xmalloc(sizeof(freerdp_sem_t));
#if defined __APPLE__
semaphore_create(mach_task_self(), sem, SYNC_POLICY_FIFO, iv);
#elif defined _WIN32
*sem = CreateSemaphore(NULL, 0, iv, NULL);
#else
int pshared = 0;
sem_init((sem_t *)sem_struct, pshared, iv);
sem_init(sem, 0, iv);
#endif
return sem;
}
void freerdp_sem_free(freerdp_sem sem)
{
#if defined __APPLE__
semaphore_destroy(mach_task_self(), *((freerdp_sem_t*)sem));
#elif defined _WIN32
CloseHandle(*((freerdp_sem_t*)sem));
#else
sem_destroy((freerdp_sem_t*)sem);
#endif
xfree(sem);
}
void freerdp_sem_signal(freerdp_sem sem)
{
#if defined __APPLE__
semaphore_signal(*((freerdp_sem_t*)sem));
#elif defined _WIN32
ReleaseSemaphore(*((freerdp_sem_t*)sem), 1, NULL);
#else
sem_post((freerdp_sem_t*)sem);
#endif
}
void freerdp_sem_signal(void * sem_struct)
void freerdp_sem_wait(freerdp_sem sem)
{
#ifdef __APPLE__
semaphore_signal(*((semaphore_t *)sem_struct));
#if defined __APPLE__
semaphore_wait(*((freerdp_sem_t*)sem));
#elif defined _WIN32
WaitForSingleObject(*((freerdp_sem_t*)sem), INFINITE);
#else
sem_post((sem_t *)sem_struct);
#endif
}
void freerdp_sem_wait(void * sem_struct)
{
#ifdef __APPLE__
semaphore_wait(*((semaphore_t *)sem_struct));
#else
sem_wait((sem_t *)sem_struct);
sem_wait((freerdp_sem_t*)sem);
#endif
}