Git Product home page Git Product logo

echo's Introduction

SMem

A small library that unifies Shared-Memory IPC & Synchronized access across multiple platforms with a standard C++ interface similar to std::fstream.

Usage:

Program #1 (Creates a memory map, locks the shared mutex and writes to the memory-map):

int main(int argc, const char * argv[]) {
    
    //Map a chunk of memory..
    MemoryMap<char> map("/users/brandonanthony/Desktop/map.memory", 1024, std::ios::in | std::ios::out);
    if (map.open_file())
    {
        std::cout<<"Opened Memory File..\n";
        if (map.map())
        {
            std::cout<<"Mapped Memory File..\n";
        }
    }
    
    
    unsigned char* ptr = static_cast<unsigned char*>(map.data());
    
    //Create a shared mutex..
    Mutex *mutex = new Mutex{ptr};
    std::cout<<"LOCKED: "<<mutex->lock()<<"\n";
    
    //Write to the memory..
    ptr += 100;
    strcpy(reinterpret_cast<char*>(ptr), "Hello Friend");
    
    mutex->unlock();
    delete mutex;
    
    return 0;
}

Program #2 (Maps the same memory, locks the shared mutex and reads from the memory-map):

int main(int argc, const char * argv[]) {
    
    //Map the chunk of memory opened by another program..
    MemoryMap<char> map("/users/brandonanthony/Desktop/map.memory", std::ios::in | std::ios::out);
    if (map.open_file())
    {
        std::cout<<"Opened Memory File..\n";
        if (map.map())
        {
            std::cout<<"Mapped Memory File..\n";
        }
    }
    
    
    unsigned char* ptr = static_cast<unsigned char*>(map.data());
    
    //Create a shared mutex..
    Mutex *mutex = new Mutex{ptr};
    std::cout<<"LOCKED: "<<mutex->lock()<<"\n";
    ptr += 100;
    
    //Read what was written in the memory..
    printf("READ: %s\n", ptr);

    mutex->unlock();
    delete mutex;
    
    return 0;
}

echo's People

Contributors

brandon-t avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.