/*************************************************************************** * byname.c - search object by its name, ^D to exit * * History * * 23-Jul-2001: * Changed gets() to fgets() for compiler warnings about security. * Joe Mazzarella * * 1996: * Original. Xiuqin Wu * ***************************************************************************/ #include #include "ned_client.h" extern int ned_errno; main(argc, argv) int argc; char *argv[]; { int st; int no_obj; int i, j; char objname[101]; CrossID *cp, *tmpcp; ObjInfo *op, *tmpop; MoreData *mdatap; st = ned_connect(); if (st < 0) { fprintf(stderr, "connection failed \n"); exit(1); } fprintf(stdout, "input the objname:"); while(fgets(objname, 101, stdin) != (char*)NULL) { st = ned_obj_byname(objname, &no_obj, &op, &cp); if (st < 0) { /* for simple error message */ fprintf(stderr, "%s\n", ned_get_errmsg()); switch (ned_errno) { case NE_NAME: fprintf(stderr, "name %s can't be recognized by NED name interpreter\n", objname); break; case NE_AMBN: fprintf(stderr, "%d ambiguous name: \n", no_obj); for (i=0, tmpcp = cp; iobjname); break; case NE_NOBJ: fprintf(stderr, "object %s is not in NED database\n", cp->objname); break; case NE_NOSPACE: fprintf(stderr, "memory allocation error happened \n"); break; case NE_QUERY: fprintf(stderr, "Can't send query to the NED server\n"); break; case NE_BROKENC: fprintf(stderr, "The connection to server is broken\n"); break; } } /* -1 return code */ else { fprintf(stdout, "%d object(s) found in NED: \n", no_obj); for (i=0, tmpop = op; ino_crossid, i+1); for (j=0, tmpcp = tmpop->cp; jno_crossid; j++, tmpcp++) fprintf(stdout, "%s, %s \n", tmpcp->objname, tmpcp->objtype); fprintf(stdout, "distance : %lf\n", tmpop->dist); fprintf(stdout, "no_ref : %d\n", tmpop->no_ref); fprintf(stdout, "no_note : %d\n", tmpop->no_note); fprintf(stdout, "no_photom: %d\n", tmpop->no_photom); fprintf(stdout, "obj type : %s\n", tmpop->objtype); fprintf(stdout, "ra : %lf\n", tmpop->ra); fprintf(stdout, "dec : %lf\n", tmpop->dec); fprintf(stdout, "unc_maj : %lf\n", tmpop->unc_maj); fprintf(stdout, "unc_min : %lf\n", tmpop->unc_min); fprintf(stdout, "unc_ang : %lf\n", tmpop->unc_ang); fprintf(stdout, "refcode : %s\n", tmpop->refcode); mdatap = tmpop->mdp; while (mdatap) { fprintf(stdout, "%-10s: %s\n", mdatap->data_typec, mdatap->data); mdatap = mdatap->next; } } } if (cp) ned_free_cp(cp); if (op) ned_free_objp(op, no_obj); fprintf(stdout, "input objname:"); } ned_disconnect(); }