root/VMPI/SymbianPortUtils.cpp

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. DebugTrace
  2. DebugTraceString
  3. VMPI_getLocalTimeOffset
  4. VMPI_getDate
  5. VMPI_getDaylightSavingsTA
  6. VMPI_getTime
  7. VMPI_alloc
  8. VMPI_free
  9. VMPI_size
  10. RedirectLogOutput
  11. VMPI_log
  12. VMPI_isMemoryProfilingEnabled
  13. VMPI_setPageProtection
  14. VMPI_getenv

/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (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.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is [Open Source Virtual Machine.].
*
* The Initial Developer of the Original Code is
* Adobe System Incorporated.
* Portions created by the Initial Developer are Copyright (C) 2004-2006
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*   Adobe AS3 Team
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */

#include "avmplus.h"

#include <sys/time.h>
#include <math.h> 

#ifdef AVMPLUS_UNIX
        #include <time.h>
#endif // AVMPLUS_UNIX

#include <sys/mman.h>

#define kMsecPerDay     86400000
#define kMsecPerHour    3600000
#define kMsecPerSecond  1000
#define kMsecPerMinute  60000

#define DIVCLOCK ( CLOCKS_PER_SEC / 1000 )

#define kMicroPerSec 1000000.0

/**
* Logging code
*/
#include <e32std.h>
#include <f32file.h>

void DebugTrace(const TDesC8& aBuffer)
{
        RFile file;
        RFs fs;

        if (fs.Connect() != KErrNone)
        {
                return;
        }

        TInt err = file.Open(fs, _L("c:\\debug.txt"), EFileWrite);
        if (err == KErrNotFound)
        {
                err = file.Create(fs, _L("c:\\debug.txt"), EFileWrite);
        }
        if (err == KErrNone)
        {
                TInt pos = 0;
                file.Seek(ESeekEnd, pos);
                file.Write(aBuffer);
                file.Close();
        }

        fs.Close();
}

_LIT8(kNewline, "\n");
_LIT8(kNullString, "NULL STRING");
        
void DebugTraceString(const char* aString)
{
        if (aString == NULL)
        {
                DebugTrace(kNullString);
        }
        else
        {
                TPtrC8 tstr((const TUint8*)aString);
                DebugTrace(tstr);
                DebugTrace(kNewline);
        }
}
/**
* Logging code ends
*/


double VMPI_getLocalTimeOffset()
{
        struct tm* t;
        time_t current, localSec, globalSec;

        // The win32 implementation ignores the passed in time
        // and uses current time instead, so to keep similar
        // behaviour we will do the same
        time( &current );

        t = localtime( &current );
        localSec = mktime( t );

        t = gmtime( &current );
        globalSec = mktime( t );

        return double( localSec - globalSec ) * 1000.0;
}

double VMPI_getDate()
{
        struct timeval tv;
        struct timezone tz; // Unused

        gettimeofday(&tv, &tz);
        double v = (tv.tv_sec + (tv.tv_usec/kMicroPerSec)) * kMsecPerSecond;
        double ip;
        ::modf(v, &ip); // strip fractional part
        return ip;
}

//time is passed in as milliseconds from UTC.
double VMPI_getDaylightSavingsTA(double newtime)
{
        struct tm *broken_down_time;

        //convert time from milliseconds
        newtime=newtime/kMsecPerSecond;

        time_t time_t_time=(time_t)newtime;

        //pull out a struct tm
        broken_down_time = localtime( &time_t_time );

        if (!broken_down_time)
        {
                return 0;
        }

        if (broken_down_time->tm_isdst > 0)
        {
                //daylight saving is definitely in effect.
                return kMsecPerHour;
        }

        //either daylight saving is not in effect, or we don't know (if tm_isdst is negative).
        return 0;
}


uint64_t VMPI_getTime()
{
        struct timeval tv;
        ::gettimeofday(&tv, NULL);
        uint64_t result = (tv.tv_sec * 1000) + (tv.tv_usec / 1000);
        return result;
}


void* VMPI_alloc(size_t size)
{
        return malloc(size);

}

void VMPI_free(void* ptr)
{
        free(ptr);
}

size_t VMPI_size(void *ptr)
{
        return 0;
}

typedef int (*LoggingFunction)(const char*);

LoggingFunction logFunc = NULL;

void RedirectLogOutput(LoggingFunction func)
{
        logFunc = func;
}

void VMPI_log(const char* message)
{
        DebugTraceString(message);
}

bool VMPI_isMemoryProfilingEnabled()
{
        //read the mmgc profiling option switch
        const char *env = getenv("MMGC_PROFILE");
        return (env && (VMPI_strncmp(env, "1", 1) == 0));
}

/**
 * SetPageProtection changes the page access protections on a block of pages,
 * to make JIT-ted code executable or not.
 *
 * If executableFlag is true, the memory is made executable and read-only.
 *
 * If executableFlag is false, the memory is made non-executable and
 * read-write.
 */
void VMPI_setPageProtection(void *address,
                                                        size_t size,
                                                        bool executableFlag,
                                                        bool writeableFlag)
{
        (void)address;
        (void)size;
        (void)executableFlag;
        (void)writeableFlag;
/*
  // mprotect requires that the addresses be aligned on page boundaries
  void *endAddress = (void*) ((char*)address + size);
  void *beginPage = (void*) ((size_t)address & ~0xFFF);
  void *endPage   = (void*) (((size_t)endAddress + 0xFFF) & ~0xFFF);
  size_t sizePaged = (size_t)endPage - (size_t)beginPage;
  
  int flags = PROT_READ;
  if (executableFlag) {
        flags |= PROT_EXEC;
  }
  if (writeableFlag) {
        flags |= PROT_WRITE;
  }
  int retval = mprotect((maddr_ptr)beginPage, (unsigned int)sizePaged, flags);
  AvmAssert(retval == 0);
  (void)retval;
*/
}

const char *VMPI_getenv(const char *name)
{
        return getenv(name);
}

/* [<][>][^][v][top][bottom][index][help] */