How do you make an object in C? Used in RTOS.

來源:互聯網
上載者:User

標籤:style   blog   http   color   os   width   

I went through the EE445M and found it’s interesting since the goal of this class is to build a working RTOS. The first lec note mentioned how to make an object in C. The example he used is the “FIFO”.

http://stackoverflow.com/questions/2750270/c-c-struct-vs-class

There are 2 things to learn:

1. “##”: this is called token paste operator, “\”is like “…”in MATLAB, just means next line is connected to current line.

2. C doesn’t support OOP (encapsulation, inheritance, polymorphism). In here, we are trying to mimic encapsulation in C.

// macro to create a pointer FIFO// Comment: NAME is the param to rename the var, functions inside the "class"#define AddPointerFifo(NAME,SIZE,TYPE,SUCCESS,FAIL) \TYPE volatile *NAME ## PutPt;    TYPE volatile *NAME ## GetPt;    TYPE static NAME ## Fifo [SIZE];        void NAME ## Fifo_Init(void){ long sr;    sr = StartCritical();                   NAME ## PutPt = NAME ## GetPt = &NAME ## Fifo[0];   EndCritical(sr);                      }                                       int NAME ## Fifo_Put (TYPE data){         TYPE volatile *nextPutPt;               nextPutPt = NAME ## PutPt + 1;          if(nextPutPt == &NAME ## Fifo[SIZE]){     nextPutPt = &NAME ## Fifo[0];         }                                       if(nextPutPt == NAME ## GetPt ){          return(FAIL);                         }                                       else{                                     *( NAME ## PutPt ) = data;              NAME ## PutPt = nextPutPt;              return(SUCCESS);                      }                                     }                                       int NAME ## Fifo_Get (TYPE *datapt){      if( NAME ## PutPt == NAME ## GetPt ){     return(FAIL);                         }                                       *datapt = *( NAME ## GetPt ## ++);      if( NAME ## GetPt == &NAME ## Fifo[SIZE]){     NAME ## GetPt = &NAME ## Fifo[0];     }                                       return(SUCCESS);                      }                                       unsigned short NAME ## Fifo_Size (void){  if( NAME ## PutPt < NAME ## GetPt ){      return ((unsigned short)( NAME ## PutPt - NAME ## GetPt + (SIZE*sizeof(TYPE)))/sizeof(TYPE));   }                                       return ((unsigned short)( NAME ## PutPt - NAME ## GetPt )/sizeof(TYPE)); }// e.g.,// AddPointerFifo(Rx,32,unsigned char, 1,0)// SIZE can be any size// creates RxFifo_Init() RxFifo_Get() and RxFifo_Put()

Ref:

1. lec note of EE 445M

2. http://www.cprogramming.com/reference/preprocessor/token-pasting-operator.html

3. http://complete-concrete-concise.com/programming/c/preprocessor-the-token-pasting-operator

4. http://c.learncodethehardway.org/book/ex19.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.