⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 blockingconfigstorageimplp.nc

📁 tinyos-2.x.rar
💻 NC
字号:
/*
 * Copyright (c) 2009 Johns Hopkins University.
 * All rights reserved.
 *
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for any purpose, without fee, and without written
 * agreement is hereby granted, provided that the above copyright
 * notice, the (updated) modification history and the author appear in
 * all copies of this source code.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, LOSS OF USE, DATA,
 * OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 * THE POSSIBILITY OF SUCH DAMAGE.
*/

/**
 * @author Chieh-Jan Mike Liang <cliang4@cs.jhu.edu>
 */
 
module BlockingConfigStorageImplP {
  provides {
    interface Init;
    interface BlockingConfig[uint8_t volume_id];
    interface BlockingMount[uint8_t volume_id];
  }
  
  uses {
    interface ConfigStorage[uint8_t volume_id];
    interface Mount as ConfigMount[uint8_t volume_id];
    interface SystemCall;
    interface SystemCallQueue;
  }
}

implementation {
  typedef struct read_write_params {
    storage_addr_t addr;
    void*          buf;
    storage_len_t* len;
    error_t        error;
  } read_write_params_t;
    
  typedef struct commit_mount_params {
    error_t error;
  } commit_mount_params_t;

  syscall_queue_t vol_queue;

  command error_t Init.init()
  {
    call SystemCallQueue.init(&vol_queue);
    return SUCCESS;
  }

  command storage_len_t BlockingConfig.getSize[uint8_t volume_id]() {
    return call ConfigStorage.getSize[volume_id]();
  }
  
  command bool BlockingConfig.valid[uint8_t volume_id]() {
    return call ConfigStorage.valid[volume_id]();
  }
  
  /**************************** Reading ********************************/
  void readTask(syscall_t* s)
  {
    read_write_params_t* p = s->params;
    p->error = call ConfigStorage.read[s->id](p->addr, p->buf, *(p->len));
    if(p->error != SUCCESS) {
      call SystemCall.finish(s);
    }
  }
  
  command error_t BlockingConfig.read[uint8_t volume_id](storage_addr_t addr, void *buf, storage_len_t* len)
  {
    syscall_t s;
    read_write_params_t p;
    atomic {
      if(call SystemCallQueue.find(&vol_queue, volume_id) != NULL) {
        return EBUSY;
      }
      call SystemCallQueue.enqueue(&vol_queue, &s);
    }
    
    p.addr = addr;
    p.buf = buf;
    p.len = len;
    call SystemCall.start(&readTask, &s, volume_id, &p);
    
    atomic {
      call SystemCallQueue.remove(&vol_queue, &s);
      return p.error;
    }
  }

  event void ConfigStorage.readDone[uint8_t volume_id](storage_addr_t addr, void *buf, storage_len_t len, error_t error)
  {
    syscall_t* s = call SystemCallQueue.find(&vol_queue, volume_id);
    read_write_params_t* p = s->params;
    p->error = error;
    *(p->len) = len;
    call SystemCall.finish(s);
  }

  
  /**************************** Writing ********************************/
  void writeTask(syscall_t* s)
  {
    read_write_params_t* p = s->params;
    p->error = call ConfigStorage.write[s->id](p->addr, p->buf, *(p->len));
    if(p->error != SUCCESS) {
      call SystemCall.finish(s);
    }
  }
  
  command error_t BlockingConfig.write[uint8_t volume_id](storage_addr_t addr, void* buf, storage_len_t* len)
  {
    syscall_t s;
    read_write_params_t p;
    atomic {
      if(call SystemCallQueue.find(&vol_queue, volume_id) != NULL) {
        return EBUSY;
      }
      call SystemCallQueue.enqueue(&vol_queue, &s);
    }
    
    p.addr = addr;
    p.buf = buf;
    p.len = len;
    call SystemCall.start(&writeTask, &s, volume_id, &p);

    atomic {
      call SystemCallQueue.remove(&vol_queue, &s);
      return p.error;
    }
  }
  
  event void ConfigStorage.writeDone[uint8_t volume_id](storage_addr_t addr, void* buf, storage_len_t len, error_t error)
  {
    syscall_t* s = call SystemCallQueue.find(&vol_queue, volume_id);
    read_write_params_t* p = s->params;
    *(p->len) = len;
    p->error = error;
    call SystemCall.finish(s);
  }

  /**************************** Committing ********************************/
  void commitTask(syscall_t* s)
  {
    commit_mount_params_t* p = s->params;
    p->error = call ConfigStorage.commit[s->id]();
    if(p->error != SUCCESS) {
      call SystemCall.finish(s);
    }
  }
  
  command error_t BlockingConfig.commit[uint8_t volume_id]()
  {
    syscall_t s;
    commit_mount_params_t p;
    atomic {
      if(call SystemCallQueue.find(&vol_queue, volume_id) != NULL) {
        return EBUSY;
      }
      call SystemCallQueue.enqueue(&vol_queue, &s);
    }
    
    call SystemCall.start(&commitTask, &s, volume_id, &p);
    
    atomic {
      call SystemCallQueue.remove(&vol_queue, &s);
      return p.error;
    }
  }

  event void ConfigStorage.commitDone[uint8_t volume_id](error_t error)
  {
    syscall_t* s = call SystemCallQueue.find(&vol_queue, volume_id);
    commit_mount_params_t* p = s->params;
    p->error = error;
    call SystemCall.finish(s);
  }
  
  /**************************** Mounting ********************************/
  void mountTask(syscall_t* s)
  {
    commit_mount_params_t* p = s->params;
    p->error = call ConfigMount.mount[s->id]();
    if(p->error != SUCCESS) {
      call SystemCall.finish(s);
    }
  }
  
  command error_t BlockingMount.mount[uint8_t volume_id]()
  {
    syscall_t s;
    commit_mount_params_t p;
    atomic {
      if(call SystemCallQueue.find(&vol_queue, volume_id) != NULL) {
        return EBUSY;
      }
      call SystemCallQueue.enqueue(&vol_queue, &s);
    }
    
    call SystemCall.start(&mountTask, &s, volume_id, &p);
    
    atomic {
      call SystemCallQueue.remove(&vol_queue, &s);
      return p.error;
    }
  }

  event void ConfigMount.mountDone[uint8_t volume_id](error_t error)
  {
    syscall_t* s = call SystemCallQueue.find(&vol_queue, volume_id);
    commit_mount_params_t* p = s->params;
    p->error = error;
    call SystemCall.finish(s);
  }  
  
  default command error_t ConfigStorage.read[uint8_t volume_id](storage_addr_t addr, void* buf, storage_len_t len) { return FAIL; }
  default command error_t ConfigStorage.write[uint8_t volume_id](storage_addr_t addr, void* buf, storage_len_t len) { return FAIL; }
  default command error_t ConfigStorage.commit[uint8_t volume_id]() { return FAIL; }
  default command storage_len_t ConfigStorage.getSize[uint8_t volume_id]() { return 0; }
  default command bool ConfigStorage.valid[uint8_t volume_id]() { return FALSE; }
  default command error_t ConfigMount.mount[uint8_t volume_id]() { return FAIL; }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -