source: rtems/c/src/exec/score/src/objectnametoid.c @ 9b05600

4.104.114.84.95
Last change on this file since 9b05600 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 2.6 KB
Line 
1/*
2 *  Object Handler
3 *
4 *
5 *  COPYRIGHT (c) 1989-1999.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.OARcorp.com/rtems/license.html.
11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
16#include <rtems/score/address.h>
17#include <rtems/score/chain.h>
18#include <rtems/score/object.h>
19#if defined(RTEMS_MULTIPROCESSING)
20#include <rtems/score/objectmp.h>
21#endif
22#include <rtems/score/thread.h>
23#include <rtems/score/wkspace.h>
24#include <rtems/score/sysstate.h>
25#include <rtems/score/isr.h>
26
27/*PAGE
28 *
29 *  _Objects_Name_to_id
30 *
31 *  These kernel routines search the object table(s) for the given
32 *  object name and returns the associated object id.
33 *
34 *  Input parameters:
35 *    information - object information
36 *    name        - user defined object name
37 *    node        - node indentifier (0 indicates any node)
38 *    id          - address of return ID
39 *
40 *  Output parameters:
41 *    id                 - object id
42 *    OBJECTS_SUCCESSFUL - if successful
43 *    error code         - if unsuccessful
44 */
45
46Objects_Name_to_id_errors _Objects_Name_to_id(
47  Objects_Information *information,
48  Objects_Name         name,
49  unsigned32           node,
50  Objects_Id          *id
51)
52{
53  boolean                    search_local_node;
54  Objects_Control           *the_object;
55  unsigned32                 index;
56  unsigned32                 name_length;
57  Objects_Name_comparators   compare_them;
58
59  if ( name == 0 )
60    return OBJECTS_INVALID_NAME;
61
62  search_local_node = FALSE;
63
64  if ( information->maximum != 0 &&
65      (node == OBJECTS_SEARCH_ALL_NODES || node == OBJECTS_SEARCH_LOCAL_NODE ||
66      _Objects_Is_local_node( node ) ) )
67   search_local_node = TRUE;
68
69  if ( search_local_node ) {
70    name_length = information->name_length;
71
72    if ( information->is_string ) compare_them = _Objects_Compare_name_string;
73    else                          compare_them = _Objects_Compare_name_raw;
74
75    for ( index = 1; index <= information->maximum; index++ ) {
76
77      the_object = information->local_table[ index ];
78
79      if ( !the_object || !the_object->name )
80        continue;
81
82      if ( (*compare_them)( name, the_object->name, name_length ) ) {
83        *id = the_object->id;
84        return OBJECTS_SUCCESSFUL;
85      }
86    }
87  }
88
89  if ( _Objects_Is_local_node( node ) || node == OBJECTS_SEARCH_LOCAL_NODE )
90    return OBJECTS_INVALID_NAME;
91
92#if defined(RTEMS_MULTIPROCESSING)
93  return ( _Objects_MP_Global_name_search( information, name, node, id ) );
94#else
95  return OBJECTS_INVALID_NAME;
96#endif
97}
Note: See TracBrowser for help on using the repository browser.