2018年2月12日月曜日

PSoC CreatorのUSBMIDIのデモについての考察

今日は建国記念の日が日曜日に入ったためか
振替休日ということで月曜日なのにおやすみというわけですが、
なんといいますか...
振替休日ってなんか都合がいいですね(何が言いたい)

というわけで、今回も短めにさっくり行きたいと思います。

PSoC5LPではUSBホスト機能が内蔵されていて、
その中でも少数ですがAPI(詳細はデータシートをご覧ください)
が存在するものがあります。

USBMIDIはその中の一つに当たるわけです。

ここで当方のPSoC周りの環境を記載しておきますと、
  • PSoC Creator 4.1 Update 1 (4.1.0.3210)
  • PSoC 5LP Development kit
    (CY8C5868AXI-LP035)
という環境です。

ではまずPSoCCreatorを開いて、Fileタブをクリックして、
そこの3行目あたりにあるCode Example...を開いてください。


USBあたりでフィルターかけてあげると出てくると思われます。

このコンテンツはどうやらダウンロードしないといけないらしいので
初回に開くときのみ左側に地球マークがあると思われるので
そこをクリックしてダウンロードしてください。


当方の環境の場合はその後にProjectタブのなかの
Device Selector...でPSoCを変更しています。

PSoCを変更したあとはピンアサインの確認を忘れずに(;´∀`)

今回は回路エディターの方はいじらないです。

あくまでソースコードの考察ということで悪しからず...

  1. /*******************************************************************************
  2. * Copyright 2012-2015, Cypress Semiconductor Corporation. All rights reserved.
  3. * This software is owned by Cypress Semiconductor Corporation and is protected
  4. * by and subject to worldwide patent and copyright laws and treaties.
  5. * Therefore, you may use this software only as provided in the license agreement
  6. * accompanying the software package from which you obtained this software.
  7. * CYPRESS AND ITS SUPPLIERS MAKE NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
  8. * WITH REGARD TO THIS SOFTWARE, INCLUDING, BUT NOT LIMITED TO, NONINFRINGEMENT,
  9. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  10. *******************************************************************************/
  11.  
  12. #include <project.h>
  13.  
  14. #define BUTT1 (0x01u)
  15. #define BUTT2 (0x02u)
  16.  
  17. #define DEVICE (0u)
  18. #define MIDI_MSG_SIZE (4u)
  19.  
  20. /*MIDI Message Fields */
  21. #define MIDI_MSG_TYPE (0u)
  22. #define MIDI_NOTE_NUMBER (1u)
  23. #define MIDI_NOTE_VELOCITY (2u)
  24.  
  25. /* MIDI Notes*/
  26. #define NOTE_72 (72u)
  27. #define NOTE_76 (76u)
  28.  
  29. /* MIDI Notes Velocity*/
  30. #define VOLUME_OFF (0u)
  31. #define VOLUME_ON (100u)
  32.  
  33. #define USB_SUSPEND_TIMEOUT (2u)
  34.  
  35. /* Identity Reply message */
  36. const uint8 CYCODE MIDI_IDENTITY_REPLY[] = {
  37. 0xF0u, /* SysEx */
  38. 0x7Eu, /* Non-real time */
  39. 0x7Fu, /* ID of target device (7F - "All Call") */
  40. 0x06u, /* Sub-ID#1 - General Information */
  41. 0x02u, /* Sub-ID#2 - Identity Reply */
  42. 0x7Du, /* Manufacturer's ID: 7D - Educational Use */
  43. 0xB4u, 0x04u, /* Family code */
  44. 0x32u, 0xD2u, /* Model number */
  45. 0x01u, 0x00u, 0x00u, 0x00u, /* Version number */
  46. /*0xF7 End of SysEx automatically appended */
  47. };
  48.  
  49. /* Need for Identity Reply message */
  50. extern volatile uint8 USB_MIDI1_InqFlags;
  51. extern volatile uint8 USB_MIDI2_InqFlags;
  52.  
  53. volatile uint8 usbActivityCounter = 0u;
  54.  
  55. uint8 csButtStates = 0u;
  56. uint8 csButtStatesOld = 0u;
  57. uint8 csButtChange = 0u;
  58. uint8 inqFlagsOld = 0u;
  59.  
  60.  
  61. /*******************************************************************************
  62. * Function Name: SleepIsr
  63. ********************************************************************************
  64. * Summary:
  65. * The sleep interrupt-service-routine used to determine a sleep condition.
  66. * The device goes into the Suspend state when there is a constant Idle
  67. * state on its upstream-facing bus-lines for more than 3.0 ms.
  68. * The device must be suspended drawing only suspend current from the
  69. * bus after no more than 10 ms of the bus inactivity on all its ports.
  70. * This ISR is run each 4 ms, so after a second turn without the USB activity,
  71. * the device should be suspended.
  72. *
  73. *******************************************************************************/
  74. CY_ISR(SleepIsr)
  75. {
  76. /* Check USB activity */
  77. if(0u != USB_CheckActivity())
  78. {
  79. usbActivityCounter = 0u;
  80. }
  81. else
  82. {
  83. usbActivityCounter++;
  84. }
  85. /* Clear Pending Interrupt */
  86. SleepTimer_GetStatus();
  87. }
  88.  
  89.  
  90. /*******************************************************************************
  91. * Function Name: main
  92. ********************************************************************************
  93. * Summary:
  94. * 1. Starts the USBFS device and waits for enumaration.
  95. *
  96. *******************************************************************************/
  97. int main()
  98. {
  99. uint8 midiMsg[MIDI_MSG_SIZE];
  100.  
  101. /* Enable Global Interrupts */
  102. CyGlobalIntEnable;
  103.  
  104. /* Start USBFS device 0 with VDDD operation */
  105. USB_Start(DEVICE, USB_DWR_VDDD_OPERATION);
  106.  
  107. while(1u)
  108. {
  109. /* Host can send double SET_INTERFACE request */
  110. if(0u != USB_IsConfigurationChanged())
  111. {
  112. /* Initialize IN endpoints when device configured */
  113. if(0u != USB_GetConfiguration())
  114. {
  115. /* Power ON CY8CKIT-044 board */
  116. MIDI_PWR_Write(0u);
  117. /* Start ISR to determine sleep condition */
  118. Sleep_isr_StartEx(SleepIsr);
  119. /* Start SleepTimer's operation */
  120. SleepTimer_Start();
  121. /* Enable output endpoint */
  122. USB_MIDI_Init();
  123. }
  124. else
  125. {
  126. SleepTimer_Stop();
  127. }
  128. }
  129. /* Service USB MIDI when device is configured */
  130. if(0u != USB_GetConfiguration())
  131. {
  132. /* Call this API from UART RX ISR for Auto DMA mode */
  133. #if(!USB_EP_MANAGEMENT_DMA_AUTO)
  134. USB_MIDI_IN_Service();
  135. #endif
  136. /* In Manual EP Memory Management mode OUT_EP_Service()
  137. * may have to be called from main foreground or from OUT EP ISR
  138. */
  139. #if(!USB_EP_MANAGEMENT_DMA_AUTO)
  140. USB_MIDI_OUT_Service();
  141. #endif
  142.  
  143. /* Sending Identity Reply Universal System Exclusive message
  144. * back to computer */
  145. if(0u != (USB_MIDI1_InqFlags & USB_INQ_IDENTITY_REQ_FLAG))
  146. {
  147. USB_PutUsbMidiIn(sizeof(MIDI_IDENTITY_REPLY), \
  148. (uint8 *)MIDI_IDENTITY_REPLY, USB_MIDI_CABLE_00);
  149. USB_MIDI1_InqFlags &= ~USB_INQ_IDENTITY_REQ_FLAG;
  150. }
  151. #if (USB_MIDI_EXT_MODE >= USB_TWO_EXT_INTRF)
  152. if(0u != (USB_MIDI2_InqFlags & USB_INQ_IDENTITY_REQ_FLAG))
  153. {
  154. USB_PutUsbMidiIn(sizeof(MIDI_IDENTITY_REPLY), \
  155. (uint8 *)MIDI_IDENTITY_REPLY, USB_MIDI_CABLE_01);
  156. USB_MIDI2_InqFlags &= ~USB_INQ_IDENTITY_REQ_FLAG;
  157. }
  158. #endif /* End USB_MIDI_EXT_MODE >= USB_TWO_EXT_INTRF */
  159. //ここから
  160. /* Service Keys */
  161. if (0u == SW1_Read())
  162. {
  163. csButtStates |= BUTT1;
  164. }
  165. else
  166. {
  167. csButtStates &= ~BUTT1;
  168. }
  169. if (0u == SW2_Read())
  170. {
  171. csButtStates |= BUTT2;
  172. }
  173. else
  174. {
  175. csButtStates &= ~BUTT2;
  176. }
  177. /* Process any button change
  178. ボタンのステータスが変更されたとき*/
  179. if (0u != (csButtChange = csButtStates ^ csButtStatesOld))
  180. {
  181. csButtStatesOld = csButtStates;
  182.  
  183. /* All buttons are mapped to Note-On/Off messages */
  184. midiMsg[MIDI_MSG_TYPE] = USB_MIDI_NOTE_ON;
  185. /* Button 1 */
  186. /*
  187. midiMsg[MIDI_NOTE_NUMBER] = NOTE;
  188. midiのノートナンバー。
  189. 60がc3(ド)
  190. 69が440Hz(時報の音)
  191.  
  192. midiMsg[MIDI_NOTE_VELOCITY]
  193. midiのvelocity、つまり音の強弱(鍵盤を押す強弱なイメージ)
  194. midiMsg[MIDI_MSG_TYPE]
  195. midiのデータ・タイプを格納する
  196. */
  197. if (0u != (csButtChange & BUTT1))
  198. {
  199. /* Button determines note number */
  200. midiMsg[MIDI_NOTE_NUMBER] = 60u;
  201. if (0u != (csButtStates & BUTT1))
  202. {
  203. /* Note On */
  204. midiMsg[MIDI_NOTE_VELOCITY] = VOLUME_ON;
  205. }
  206. else
  207. {
  208. /* Note Off */
  209. midiMsg[MIDI_NOTE_VELOCITY] = VOLUME_OFF;
  210. }
  211. /* Put MIDI Note-On/Off message into input endpoint */
  212. USB_PutUsbMidiIn(USB_3BYTE_COMMON, midiMsg, USB_MIDI_CABLE_00);
  213. }
  214.  
  215. /* Button 2 */
  216. if (0u != (csButtChange & BUTT2))
  217. {
  218. /* Button determines note number */
  219. midiMsg[MIDI_NOTE_NUMBER] = 72;//c4
  220. if (0u != (csButtStates & BUTT2))
  221. {
  222. /* Note On */
  223. midiMsg[MIDI_NOTE_VELOCITY] = VOLUME_ON;
  224. //midimsgはuint8
  225. }
  226. else
  227. {
  228. /* Note Off */
  229. midiMsg[MIDI_NOTE_VELOCITY] = VOLUME_OFF;
  230. }
  231. /* Put MIDI Note-On/Off message into input endpoint
  232. 多分、送信処理*/
  233. USB_PutUsbMidiIn(USB_3BYTE_COMMON, midiMsg, USB_MIDI_CABLE_00);
  234. /* Second Note message */
  235. midiMsg[MIDI_MSG_TYPE] = USB_MIDI_NOTE_ON;
  236. midiMsg[MIDI_NOTE_NUMBER] = NOTE_72;
  237. if (0u != (csButtStates & BUTT2))
  238. {
  239. /* Note On */
  240. midiMsg[MIDI_NOTE_VELOCITY] = VOLUME_ON;
  241. }
  242. else
  243. {
  244. /* Note Off */
  245. midiMsg[MIDI_NOTE_VELOCITY] = VOLUME_OFF;
  246. }
  247. /* Put MIDI Note-On/Off message into input endpoint */
  248. USB_PutUsbMidiIn(USB_3BYTE_COMMON, midiMsg, USB_MIDI_CABLE_00);
  249. }
  250. #if(USB_EP_MANAGEMENT_DMA_AUTO)
  251. #if (USB_MIDI_EXT_MODE >= USB_ONE_EXT_INTRF)
  252. MIDI1_UART_DisableRxInt();
  253. #if (USB_MIDI_EXT_MODE >= USB_TWO_EXT_INTRF)
  254. MIDI2_UART_DisableRxInt();
  255. #endif /* End USB_MIDI_EXT_MODE >= USB_TWO_EXT_INTRF */
  256. #endif /* End USB_MIDI_EXT_MODE >= USB_ONE_EXT_INTRF */
  257. USB_MIDI_IN_Service();
  258. #if (USB_MIDI_EXT_MODE >= USB_ONE_EXT_INTRF)
  259. MIDI1_UART_EnableRxInt();
  260. #if (USB_MIDI_EXT_MODE >= USB_TWO_EXT_INTRF)
  261. MIDI2_UART_EnableRxInt();
  262. #endif /* End USB_MIDI_EXT_MODE >= USB_TWO_EXT_INTRF */
  263. #endif /* End USB_MIDI_EXT_MODE >= USB_ONE_EXT_INTRF */
  264. #endif
  265. }
  266. //ここまでがあやしい
  267. /* Check if host requested USB Suspend */
  268. if( usbActivityCounter >= USB_SUSPEND_TIMEOUT )
  269. {
  270. MIDI1_UART_Sleep();
  271. MIDI2_UART_Sleep();
  272. /* Power OFF CY8CKIT-044 board */
  273. MIDI_PWR_Write(1u);
  274. /***************************************************************
  275. * Disable USBFS block and set DP Interrupt for wake-up
  276. * from sleep mode.
  277. ***************************************************************/
  278. USB_Suspend();
  279. /* Prepares system clocks for sleep mode */
  280. CyPmSaveClocks();
  281. /***************************************************************
  282. * Switch to the Sleep Mode for the PSoC 3 or PSoC 5LP devices:
  283. * - PM_SLEEP_TIME_NONE: wakeup time is defined by PICU source
  284. * - PM_SLEEP_SRC_PICU: PICU wakeup source
  285. ***************************************************************/
  286. CyPmSleep(PM_SLEEP_TIME_NONE, PM_SLEEP_SRC_PICU);
  287. /* Restore clock configuration */
  288. CyPmRestoreClocks();
  289. /* Enable USBFS block after power-down mode */
  290. USB_Resume();
  291. /* Enable output endpoint */
  292. USB_MIDI_Init();
  293. /* Power ON CY8CKIT-044 board */
  294. MIDI_PWR_Write(0u);
  295. MIDI1_UART_Wakeup();
  296. MIDI2_UART_Wakeup();
  297. usbActivityCounter = 0u; /* Re-init USB Activity Counter*/
  298. }
  299. }
  300. }
  301. }
  302.  
  303.  
  304. /*******************************************************************************
  305. * Function Name: USB_callbackLocalMidiEvent
  306. ********************************************************************************
  307. * Summary: Local processing of the USB MIDI out-events.
  308. *
  309. *******************************************************************************/
  310. void USB_callbackLocalMidiEvent(uint8 cable, uint8 *midiMsg) CYREENTRANT
  311. {
  312. /* Support General System On/Off Message. */
  313. if((0u == (USB_MIDI1_InqFlags & USB_INQ_SYSEX_FLAG)) \
  314. && (0u != (inqFlagsOld & USB_INQ_SYSEX_FLAG)))
  315. {
  316. if(midiMsg[USB_EVENT_BYTE0] == USB_MIDI_SYSEX_GEN_MESSAGE)
  317. {
  318. if(midiMsg[USB_EVENT_BYTE1] == USB_MIDI_SYSEX_SYSTEM_ON)
  319. {
  320. MIDI_PWR_Write(0u); /* Power ON */
  321. }
  322. else if(midiMsg[USB_EVENT_BYTE1] == USB_MIDI_SYSEX_SYSTEM_OFF)
  323. {
  324. MIDI_PWR_Write(1u); /* Power OFF */
  325. }
  326. }
  327. }
  328. inqFlagsOld = USB_MIDI1_InqFlags;
  329. cable = cable;
  330. }
  331.  
  332.  
  333. /*******************************************************************************
  334. * Function Name: USB_MIDI1_ProcessUsbOut_EntryCallback
  335. ********************************************************************************
  336. * Summary: Turn the LED_OutA on at the beginning of the function
  337. * USB_MIDI1_ProcessUsbOut() when data comes to be put in the UART1 out
  338. * buffer.
  339. *
  340. *******************************************************************************/
  341. void USB_MIDI1_ProcessUsbOut_EntryCallback(void)
  342. {
  343. LED_OutA_Write(1);
  344. }
  345.  
  346.  
  347. /*******************************************************************************
  348. * Function Name: USB_MIDI1_ProcessUsbOut_ExitCallback
  349. ********************************************************************************
  350. * Summary: Turn the LED_OutA off at the end of the function
  351. * USB_MIDI1_ProcessUsbOut() when data is put in the UART1 out-buffer.
  352. *
  353. *******************************************************************************/
  354. void USB_MIDI1_ProcessUsbOut_ExitCallback(void)
  355. {
  356. LED_OutA_Write(0);
  357. }
  358.  
  359.  
  360. /*******************************************************************************
  361. * Function Name: USB_MIDI2_ProcessUsbOut_EntryCallback
  362. ********************************************************************************
  363. * Summary: Turn the LED_OutB on at the beginning of the function
  364. * USB_MIDI2_ProcessUsbOut() when data comes to be put in the UART2 out-
  365. * buffer
  366. *
  367. *******************************************************************************/
  368. void USB_MIDI2_ProcessUsbOut_EntryCallback(void)
  369. {
  370. LED_OutB_Write(1);
  371. }
  372.  
  373.  
  374. /*******************************************************************************
  375. * Function Name: USB_MIDI2_ProcessUsbOut_ExitCallback
  376. ********************************************************************************
  377. * Summary: Turn the LED_OutB off at the end of the function
  378. * USB_MIDI2_ProcessUsbOut() when data is put in the UART2 out-buffer.
  379. *
  380. *******************************************************************************/
  381. void USB_MIDI2_ProcessUsbOut_ExitCallback(void)
  382. {
  383. LED_OutB_Write(0);
  384. }
  385.  
  386.  
  387. /*******************************************************************************
  388. * Function Name: MIDI1_UART_RXISR_EntryCallback
  389. ********************************************************************************
  390. * Summary: Turn the LED_InA on at the beginning of the MIDI1_UART_RXISR ISR
  391. * when data comes to UART1 to be put in the USBFS_MIDI IN endpoint
  392. * buffer.
  393. *
  394. *******************************************************************************/
  395. void MIDI1_UART_RXISR_EntryCallback(void)
  396. {
  397. /* These LEDs indicate MIDI input activity */
  398. LED_InA_Write(1);
  399. }
  400.  
  401.  
  402. /*******************************************************************************
  403. * Function Name: MIDI1_UART_RXISR_ExitCallback
  404. ********************************************************************************
  405. * Summary: Turn the LED_InA off at the end of the MIDI1_UART_RXISR ISR
  406. * when data is put in the USBFS_MIDI IN endpoint buffer.
  407. *
  408. *******************************************************************************/
  409. void MIDI1_UART_RXISR_ExitCallback(void)
  410. {
  411. #if (USB_EP_MANAGEMENT_DMA_AUTO)
  412. USB_MIDI_IN_Service();
  413. #endif /* (USB_EP_MANAGEMENT_DMA_AUTO) */
  414. LED_InA_Write(0);
  415. }
  416.  
  417.  
  418. /*******************************************************************************
  419. * Function Name: MIDI2_UART_RXISR_EntryCallback
  420. ********************************************************************************
  421. * Summary: Turn the LED_InB on at the beginning of the MIDI2_UART_RXISR ISR
  422. * when data comes to UART2 to be put in the USBFS_MIDI IN endpoint
  423. * buffer.
  424. *
  425. *******************************************************************************/
  426. void MIDI2_UART_RXISR_EntryCallback(void)
  427. {
  428. /* These LEDs indicate MIDI input activity */
  429. LED_InB_Write(1);
  430. }
  431.  
  432.  
  433. /*******************************************************************************
  434. * Function Name: MIDI2_UART_RXISR_ExitCallback
  435. ********************************************************************************
  436. * Summary: Turn the LED_InB off at the end of the MIDI2_UART_RXISR ISR
  437. * when data is put in the USBFS_MIDI IN endpoint buffer
  438. *
  439. *******************************************************************************/
  440. void MIDI2_UART_RXISR_ExitCallback(void)
  441. {
  442. #if (USB_EP_MANAGEMENT_DMA_AUTO)
  443. USB_MIDI_IN_Service();
  444. #endif /* (USB_EP_MANAGEMENT_DMA_AUTO) */
  445. LED_InB_Write(0);
  446. }
  447.  
  448.  
  449. /* [] END OF FILE */
  450.  

コメントで
//ここから(167行目)
//ここまでがあやしい(278行目)
と記述されているところ(露骨過ぎますかね??)以外は基本ノータッチです。

ここでざっくりとMIDIについておさらいしましょう。
MIDIの詳細についてはggrばたくさん出てくるので割愛しますが、
  • ノートオン・オフ
    ここにはチャンネルの番号が格納されている)
  • ノートナンバー
    (音程のデータが入っている)
  • ベロシティー
    (音の強弱データが入っている)
という解釈で大体合ってますかね。

ノートナンバーの方はこちらのサイトを参考にさせていただきました。


このやっつけ感満載のおさらい通りにやっていけばなんとなくは
コメントでくくったあたりを弄くれば、
オリジナルMIDIデバイスが作れそうな気がしますねぇ




PSoCCreatorでバージョン管理系統が搭載されてないのは少しめんどくさいと感じるわけです。
その他にも今回のを見る限りボタンが多そうなデバイスを制作するにあたって
オブジェクト指向プログラムができないのも少しやりづらいかなと。

もっとコードエディターの補完機能とか充実していただけませんかね??
あと正式にC++対応お願いしますm(_ _)m

2018年2月10日土曜日

node.jsのURL追加をクラスで実装してみる。

ブログには大きい記事しか載せるべきではないかと思ってはいたのですが、
備忘録などに使えるしどうせ見る人もそんなにいないであろう(笑)と思ったので、
これからは小さいネタも載せて更新頻度の向上も目指したいと思ってます(^_^;)

さて、今回はひょんなことからWebアプリを作らないといけなくなったわけなのですが、
その際にnode.jsを使わせて頂いているわけです。

そこでまぁnpmを使って他のパッケージを利用するのもいいのですが、
今回はJsのクラスで勉強がてら(というか興味)に実装しようと考えたわけです。

まぁこのwebアプリ自体公にするものではなさそうなので大丈夫かなと(おい)

  1. var http = require('http');
  2. var fs = require('fs');
  3.  
  4. var server = http.createServer();
  5. server.on('request', getJs);
  6. console.log('Server running ...');
  7.  
  8. var Link_creator = function(source,linkname,type){
  9. this.source = source;
  10. this.linkname = linkname;
  11. this.type = type;
  12. }
  13.  
  14. Link_creator.prototype.add = function(url,Res){
  15. console.log("function in");
  16. console.log(url);
  17. console.log("type is "+this.type);
  18. if(this.type == 'html'){
  19.  
  20. if (this.linkname == url) {
  21. fs.readFile(this.source, 'UTF-8', function (err, data) {
  22. Res.writeHead(200, {'Content-Type': 'text/html'});
  23. Res.write(data);
  24. Res.end();
  25. });
  26. }
  27. return Res;
  28. }else if(this.type == 'js'){
  29. if (this.linkname == url) {
  30. fs.readFile(this.source, 'UTF-8', function (err, data) {
  31. Res.writeHead(200, {'Content-Type': 'application/javascript'});
  32. Res.write(data);
  33. Res.end();
  34. });
  35. }
  36. return Res;
  37. }else if(this.type == 'jpg'){
  38. if (this.linkname == url) {
  39. Res.writeHead(200, {'Content-Type': 'image/jpeg'});
  40. Res.end(fs.readFileSync(this.source, 'binary' ),'binary');
  41. }
  42. return Res;
  43. }else if(this.type == 'gif'){
  44. if (this.linkname == url) {
  45. Res.writeHead(200, {'Content-Type': 'image/gif'});
  46. Res.end(fs.readFileSync(this.source, 'binary' ),'binary');
  47. }
  48. return Res;
  49. }else if(this.type == 'css'){
  50. if (this.linkname == url) {
  51. fs.readFile(this.source, 'UTF-8', function (err, data) {
  52. Res.writeHead(200, {'Content-Type': 'text/css'});
  53. Res.write(data);
  54. Res.end();
  55. });
  56. }
  57. return Res;
  58. }
  59. }
  60. // new Link_creator('ローカルファイルの指定','URIの指定','タイプの指定')
  61. var sites = [new Link_creator('./main.html','/index.html','html')
  62. ,new Link_creator('./home.html','/','html')];
  63.  
  64.  
  65.  
  66. function getJs(req, res) {
  67. var url = req.url;
  68. console.log(url);
  69. sites.forEach(function(site){
  70. if(site.linkname == url){
  71. console.log(site.source);
  72. res = site.add(url,res);
  73. }
  74. });
  75. }
  76.  
  77.  
  78. server.listen(8080);
  79.  

とまぁこんな感じになります。
ミソは
new Link_creator('ローカルファイルの指定','URIの指定','タイプの指定')
ですね。
タイプの指定はクラス内のadd関数をゴニョゴニョしてオリジナルのものを
追加すればいいです。

やっぱりオブジェクト指向便利だなぁ…(しみじみ)